source("https://bioconductor.org/biocLite.R")
biocLite(DESeq2)
BiocManager::install("DESeq2")
library("DESeq2")
## Loading required package: S4Vectors
## Loading required package: stats4
## Loading required package: BiocGenerics
## Loading required package: parallel
##
## Attaching package: 'BiocGenerics'
## The following objects are masked from 'package:parallel':
##
## clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
## clusterExport, clusterMap, parApply, parCapply, parLapply,
## parLapplyLB, parRapply, parSapply, parSapplyLB
## The following objects are masked from 'package:stats':
##
## IQR, mad, sd, var, xtabs
## The following objects are masked from 'package:base':
##
## anyDuplicated, append, as.data.frame, basename, cbind,
## colnames, dirname, do.call, duplicated, eval, evalq, Filter,
## Find, get, grep, grepl, intersect, is.unsorted, lapply, Map,
## mapply, match, mget, order, paste, pmax, pmax.int, pmin,
## pmin.int, Position, rank, rbind, Reduce, rownames, sapply,
## setdiff, sort, table, tapply, union, unique, unsplit, which,
## which.max, which.min
##
## Attaching package: 'S4Vectors'
## The following object is masked from 'package:base':
##
## expand.grid
## Loading required package: IRanges
##
## Attaching package: 'IRanges'
## The following object is masked from 'package:grDevices':
##
## windows
## Loading required package: GenomicRanges
## Loading required package: GenomeInfoDb
## Loading required package: SummarizedExperiment
## Loading required package: Biobase
## Welcome to Bioconductor
##
## Vignettes contain introductory material; view with
## 'browseVignettes()'. To cite Bioconductor, see
## 'citation("Biobase")', and for packages 'citation("pkgname")'.
## Loading required package: DelayedArray
## Loading required package: matrixStats
##
## Attaching package: 'matrixStats'
## The following objects are masked from 'package:Biobase':
##
## anyMissing, rowMedians
## Loading required package: BiocParallel
##
## Attaching package: 'DelayedArray'
## The following objects are masked from 'package:matrixStats':
##
## colMaxs, colMins, colRanges, rowMaxs, rowMins, rowRanges
## The following objects are masked from 'package:base':
##
## aperm, apply, rowsum
read_count <- read.table("TCGA1_trim.txt", header = TRUE, row.names = 1)
head(read_count)
## TCGA.55.8513.01A.11R.2403.07 TCGA.67.3772.01A.01R.0946.07
## ENSG00000000003 1436 9772
## ENSG00000000005 0 22
## ENSG00000000419 630 2172
## ENSG00000000457 581 1162
## ENSG00000000460 129 380
## ENSG00000000938 3751 856
## TCGA.69.7973.01A.11R.2187.07 TCGA.91.6849.11A.01R.1949.07
## ENSG00000000003 4175 1313
## ENSG00000000005 0 1
## ENSG00000000419 2496 800
## ENSG00000000457 1462 477
## ENSG00000000460 1248 78
## ENSG00000000938 551 1855
## TCGA.78.7161.01A.11R.2039.07 TCGA.97.8177.01A.11R.2287.07
## ENSG00000000003 7114 5032
## ENSG00000000005 1 13
## ENSG00000000419 1910 2743
## ENSG00000000457 1179 1086
## ENSG00000000460 310 378
## ENSG00000000938 293 2321
metadata <- read.table("metadata3.txt", header = TRUE, row.names = 1)
head(metadata)
## condition
## TCGA.55.8513.01A.11R.2403.07 control
## TCGA.67.3772.01A.01R.0946.07 control
## TCGA.69.7973.01A.11R.2187.07 control
## TCGA.91.6849.11A.01R.1949.07 treated
## TCGA.78.7161.01A.11R.2039.07 treated
## TCGA.97.8177.01A.11R.2287.07 treated
all(rownames(metadata) == colnames(read_count))
## [1] TRUE
dds <- DESeqDataSetFromMatrix(countData = read_count,
colData = metadata,
design = ~ condition)
dds
## class: DESeqDataSet
## dim: 56537 6
## metadata(1): version
## assays(1): counts
## rownames(56537): ENSG00000000003 ENSG00000000005 ...
## ENSG00000281912 ENSG00000281920
## rowData names(0):
## colnames(6): TCGA.55.8513.01A.11R.2403.07
## TCGA.67.3772.01A.01R.0946.07 ... TCGA.78.7161.01A.11R.2039.07
## TCGA.97.8177.01A.11R.2287.07
## colData names(1): condition
keep <- rowSums(counts(dds)) >= 10
dds <- dds[keep,]
dds
## class: DESeqDataSet
## dim: 30307 6
## metadata(1): version
## assays(1): counts
## rownames(30307): ENSG00000000003 ENSG00000000005 ...
## ENSG00000281912 ENSG00000281920
## rowData names(0):
## colnames(6): TCGA.55.8513.01A.11R.2403.07
## TCGA.67.3772.01A.01R.0946.07 ... TCGA.78.7161.01A.11R.2039.07
## TCGA.97.8177.01A.11R.2287.07
## colData names(1): condition
dds <- DESeq(dds)
## estimating size factors
## estimating dispersions
## gene-wise dispersion estimates
## mean-dispersion relationship
## final dispersion estimates
## fitting model and testing
dds
## class: DESeqDataSet
## dim: 30307 6
## metadata(1): version
## assays(4): counts mu H cooks
## rownames(30307): ENSG00000000003 ENSG00000000005 ...
## ENSG00000281912 ENSG00000281920
## rowData names(22): baseMean baseVar ... deviance maxCooks
## colnames(6): TCGA.55.8513.01A.11R.2403.07
## TCGA.67.3772.01A.01R.0946.07 ... TCGA.78.7161.01A.11R.2039.07
## TCGA.97.8177.01A.11R.2287.07
## colData names(2): condition sizeFactor
res <- results(dds)
summary(res)
##
## out of 30307 with nonzero total read count
## adjusted p-value < 0.1
## LFC > 0 (up) : 21, 0.069%
## LFC < 0 (down) : 56, 0.18%
## outliers [1] : 874, 2.9%
## low counts [2] : 8799, 29%
## (mean count < 12)
## [1] see 'cooksCutoff' argument of ?results
## [2] see 'independentFiltering' argument of ?results
library(dplyr)
## Warning: package 'dplyr' was built under R version 3.6.1
##
## Attaching package: 'dplyr'
## The following object is masked from 'package:matrixStats':
##
## count
## The following object is masked from 'package:Biobase':
##
## combine
## The following objects are masked from 'package:GenomicRanges':
##
## intersect, setdiff, union
## The following object is masked from 'package:GenomeInfoDb':
##
## intersect
## The following objects are masked from 'package:IRanges':
##
## collapse, desc, intersect, setdiff, slice, union
## The following objects are masked from 'package:S4Vectors':
##
## first, intersect, rename, setdiff, setequal, union
## The following objects are masked from 'package:BiocGenerics':
##
## combine, intersect, setdiff, union
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(tibble)
res_df <- as.data.frame(res)
res_filt <- res_df %>%
rownames_to_column('genes') %>%
filter(pvalue < 0.05) %>%
filter(log2FoldChange > 2)
print("Before filtering:")
## [1] "Before filtering:"
dim(res_df)
## [1] 30307 6
print("After Filtering;")
## [1] "After Filtering;"
dim(res_filt)
## [1] 419 7
write.csv(res, "Diffrential_Expression_Results.csv")
library(EnhancedVolcano)
## Loading required package: ggplot2
## Loading required package: ggrepel
EnhancedVolcano(res,
lab = rownames(res),
x = 'log2FoldChange',
y = 'pvalue',
xlim = c(-5, 8))
library("pheatmap")
ntd <- normTransform(dds)
select <- order(rowMeans(counts(dds,normalized=TRUE)),
decreasing=TRUE)[1:20]
df <- as.data.frame(colData(dds))
pheatmap(assay(ntd)[select,], cluster_rows=FALSE, show_rownames=FALSE,
cluster_cols=FALSE, annotation_col=df)
print("Before Normalization:")
## [1] "Before Normalization:"
head(assay(dds))
## TCGA.55.8513.01A.11R.2403.07 TCGA.67.3772.01A.01R.0946.07
## ENSG00000000003 1436 9772
## ENSG00000000005 0 22
## ENSG00000000419 630 2172
## ENSG00000000457 581 1162
## ENSG00000000460 129 380
## ENSG00000000938 3751 856
## TCGA.69.7973.01A.11R.2187.07 TCGA.91.6849.11A.01R.1949.07
## ENSG00000000003 4175 1313
## ENSG00000000005 0 1
## ENSG00000000419 2496 800
## ENSG00000000457 1462 477
## ENSG00000000460 1248 78
## ENSG00000000938 551 1855
## TCGA.78.7161.01A.11R.2039.07 TCGA.97.8177.01A.11R.2287.07
## ENSG00000000003 7114 5032
## ENSG00000000005 1 13
## ENSG00000000419 1910 2743
## ENSG00000000457 1179 1086
## ENSG00000000460 310 378
## ENSG00000000938 293 2321
norm_count_data <- rlog(dds)
print("After Normalization:")
## [1] "After Normalization:"
head(assay(norm_count_data))
## TCGA.55.8513.01A.11R.2403.07 TCGA.67.3772.01A.01R.0946.07
## ENSG00000000003 11.3561078 12.998345
## ENSG00000000005 0.9098922 3.280732
## ENSG00000000419 10.1338370 11.073959
## ENSG00000000457 9.7942900 10.211570
## ENSG00000000460 7.8043214 8.584040
## ENSG00000000938 11.8520196 10.041101
## TCGA.69.7973.01A.11R.2187.07 TCGA.91.6849.11A.01R.1949.07
## ENSG00000000003 11.6044871 11.356976
## ENSG00000000005 0.7478019 1.350004
## ENSG00000000419 10.6844554 10.443654
## ENSG00000000457 9.9144767 9.691311
## ENSG00000000460 9.2684000 7.439981
## ENSG00000000938 9.1746139 11.189100
## TCGA.78.7161.01A.11R.2039.07 TCGA.97.8177.01A.11R.2287.07
## ENSG00000000003 12.280562 11.829302
## ENSG00000000005 1.068154 2.395098
## ENSG00000000419 10.573920 10.825306
## ENSG00000000457 9.855303 9.671960
## ENSG00000000460 8.020032 8.106870
## ENSG00000000938 8.798676 10.549651
plotPCA(norm_count_data)
library(org.Hs.eg.db)
## Loading required package: AnnotationDbi
##
## Attaching package: 'AnnotationDbi'
## The following object is masked from 'package:dplyr':
##
## select
##
library(AnnotationDbi)
test_gene_set <- rownames(res)
geneSymbols <- mapIds(keys = res_filt$genes, org.Hs.eg.db, column="SYMBOL", keytype="ENSEMBL")
## 'select()' returned 1:many mapping between keys and columns
geneENTREZ <- mapIds(keys = test_gene_set, org.Hs.eg.db, column="ENTREZID", keytype="ENSEMBL")
## 'select()' returned 1:many mapping between keys and columns
library(clusterProfiler)
##
## Registered S3 method overwritten by 'enrichplot':
## method from
## fortify.enrichResult DOSE
## clusterProfiler v3.12.0 For help: https://guangchuangyu.github.io/software/clusterProfiler
##
## If you use clusterProfiler in published research, please cite:
## Guangchuang Yu, Li-Gen Wang, Yanyan Han, Qing-Yu He. clusterProfiler: an R package for comparing biological themes among gene clusters. OMICS: A Journal of Integrative Biology. 2012, 16(5):284-287.
##
## Attaching package: 'clusterProfiler'
## The following object is masked from 'package:DelayedArray':
##
## simplify
data(geneList, package = "DOSE")
de <- names(geneList)
go_bio_process <- enrichGO(de,
OrgDb = org.Hs.eg.db,
keyType = "ENTREZID",
ont = "BP")
go_BP_res <- go_bio_process@result
print(go_BP_res)
## ID
## GO:0009991 GO:0009991
## GO:0048732 GO:0048732
## GO:1901652 GO:1901652
## GO:0031667 GO:0031667
## GO:0043062 GO:0043062
## GO:0050878 GO:0050878
## GO:0002446 GO:0002446
## GO:0009636 GO:0009636
## GO:0010038 GO:0010038
## GO:0048545 GO:0048545
## GO:0048511 GO:0048511
## GO:0002283 GO:0002283
## GO:0042119 GO:0042119
## GO:0043312 GO:0043312
## GO:0001101 GO:0001101
## GO:0070482 GO:0070482
## GO:0023061 GO:0023061
## GO:0043434 GO:0043434
## GO:0030198 GO:0030198
## GO:0061458 GO:0061458
## GO:0048667 GO:0048667
## GO:1904951 GO:1904951
## GO:0006875 GO:0006875
## GO:0048608 GO:0048608
## GO:0051047 GO:0051047
## GO:0036293 GO:0036293
## GO:0055074 GO:0055074
## GO:0001666 GO:0001666
## GO:0045785 GO:0045785
## GO:0072507 GO:0072507
## GO:0006874 GO:0006874
## GO:0071900 GO:0071900
## GO:1903532 GO:1903532
## GO:0001655 GO:0001655
## GO:0042110 GO:0042110
## GO:0046677 GO:0046677
## GO:0002521 GO:0002521
## GO:0031589 GO:0031589
## GO:0001501 GO:0001501
## GO:0072503 GO:0072503
## GO:0051222 GO:0051222
## GO:0099177 GO:0099177
## GO:0050804 GO:0050804
## GO:0061564 GO:0061564
## GO:0043410 GO:0043410
## GO:0019058 GO:0019058
## GO:0072594 GO:0072594
## GO:0050769 GO:0050769
## GO:1901615 GO:1901615
## GO:0048871 GO:0048871
## GO:0007409 GO:0007409
## GO:0007599 GO:0007599
## GO:1901653 GO:1901653
## GO:0051098 GO:0051098
## GO:0007596 GO:0007596
## GO:0010975 GO:0010975
## GO:0070997 GO:0070997
## GO:0043405 GO:0043405
## GO:0090066 GO:0090066
## GO:0051493 GO:0051493
## GO:0051656 GO:0051656
## GO:0032147 GO:0032147
## GO:0071214 GO:0071214
## GO:0104004 GO:0104004
## GO:0006936 GO:0006936
## GO:0071902 GO:0071902
## GO:0007584 GO:0007584
## GO:0050817 GO:0050817
## GO:0062012 GO:0062012
## GO:0060627 GO:0060627
## GO:0009914 GO:0009914
## GO:0002791 GO:0002791
## GO:0016569 GO:0016569
## GO:1903829 GO:1903829
## GO:0018108 GO:0018108
## GO:0007623 GO:0007623
## GO:0009314 GO:0009314
## GO:0018212 GO:0018212
## GO:0071496 GO:0071496
## GO:0022604 GO:0022604
## GO:0097305 GO:0097305
## GO:0030522 GO:0030522
## GO:0051480 GO:0051480
## GO:0002694 GO:0002694
## GO:0046879 GO:0046879
## GO:0022407 GO:0022407
## GO:0032386 GO:0032386
## GO:0019932 GO:0019932
## GO:0003012 GO:0003012
## GO:0016049 GO:0016049
## GO:0016570 GO:0016570
## GO:0031346 GO:0031346
## GO:0001503 GO:0001503
## GO:0050708 GO:0050708
## GO:0072001 GO:0072001
## GO:0044706 GO:0044706
## GO:0001819 GO:0001819
## GO:0035690 GO:0035690
## GO:0010769 GO:0010769
## GO:0006979 GO:0006979
## GO:0007568 GO:0007568
## GO:0001822 GO:0001822
## GO:1901214 GO:1901214
## GO:0043406 GO:0043406
## GO:0046883 GO:0046883
## GO:0048568 GO:0048568
## GO:0009410 GO:0009410
## GO:0051249 GO:0051249
## GO:0071383 GO:0071383
## GO:0006367 GO:0006367
## GO:0001505 GO:0001505
## GO:0019882 GO:0019882
## GO:0007204 GO:0007204
## GO:0007159 GO:0007159
## GO:0043900 GO:0043900
## GO:0060326 GO:0060326
## GO:0030098 GO:0030098
## GO:0007565 GO:0007565
## GO:2001233 GO:2001233
## GO:0022411 GO:0022411
## GO:0044282 GO:0044282
## GO:0072522 GO:0072522
## GO:0006836 GO:0006836
## GO:0007160 GO:0007160
## GO:0001659 GO:0001659
## GO:0051091 GO:0051091
## GO:0009612 GO:0009612
## GO:0034330 GO:0034330
## GO:0016053 GO:0016053
## GO:0051169 GO:0051169
## GO:0071375 GO:0071375
## GO:0045666 GO:0045666
## GO:0046394 GO:0046394
## GO:0006164 GO:0006164
## GO:0006520 GO:0006520
## GO:0018205 GO:0018205
## GO:0070661 GO:0070661
## GO:0006913 GO:0006913
## GO:0008202 GO:0008202
## GO:0002237 GO:0002237
## GO:0042391 GO:0042391
## GO:0048880 GO:0048880
## GO:0001558 GO:0001558
## GO:0045088 GO:0045088
## GO:0002440 GO:0002440
## GO:0097191 GO:0097191
## GO:0003015 GO:0003015
## GO:0046390 GO:0046390
## GO:0042176 GO:0042176
## GO:0007611 GO:0007611
## GO:0001701 GO:0001701
## GO:0032496 GO:0032496
## GO:0043010 GO:0043010
## GO:0032388 GO:0032388
## GO:0072330 GO:0072330
## GO:0009152 GO:0009152
## GO:0007264 GO:0007264
## GO:0044839 GO:0044839
## GO:0043903 GO:0043903
## GO:0009266 GO:0009266
## GO:0006732 GO:0006732
## GO:0048002 GO:0048002
## GO:0009150 GO:0009150
## GO:0034329 GO:0034329
## GO:1903522 GO:1903522
## GO:0150063 GO:0150063
## GO:0001654 GO:0001654
## GO:0022409 GO:0022409
## GO:0009260 GO:0009260
## GO:0030900 GO:0030900
## GO:0006816 GO:0006816
## GO:0051402 GO:0051402
## GO:0051188 GO:0051188
## GO:0072511 GO:0072511
## GO:0032943 GO:0032943
## GO:0051090 GO:0051090
## GO:0009755 GO:0009755
## GO:0071241 GO:0071241
## GO:0097193 GO:0097193
## GO:0010976 GO:0010976
## GO:0016055 GO:0016055
## GO:0046651 GO:0046651
## GO:0009615 GO:0009615
## GO:0031647 GO:0031647
## GO:0018105 GO:0018105
## GO:0198738 GO:0198738
## GO:0070838 GO:0070838
## GO:0002793 GO:0002793
## GO:0060047 GO:0060047
## GO:0051235 GO:0051235
## GO:0007265 GO:0007265
## GO:0071229 GO:0071229
## GO:0042063 GO:0042063
## GO:0032355 GO:0032355
## GO:0043401 GO:0043401
## GO:0106106 GO:0106106
## GO:0120161 GO:0120161
## GO:0035270 GO:0035270
## GO:0050863 GO:0050863
## GO:1990845 GO:1990845
## GO:1903037 GO:1903037
## GO:0045862 GO:0045862
## GO:0006352 GO:0006352
## GO:0010810 GO:0010810
## GO:0050890 GO:0050890
## GO:0001763 GO:0001763
## GO:0000086 GO:0000086
## GO:0061138 GO:0061138
## GO:0019080 GO:0019080
## GO:0007548 GO:0007548
## GO:0050867 GO:0050867
## GO:0014074 GO:0014074
## GO:0048872 GO:0048872
## GO:1901617 GO:1901617
## GO:0009108 GO:0009108
## GO:0009896 GO:0009896
## GO:0072331 GO:0072331
## GO:0050714 GO:0050714
## GO:0032868 GO:0032868
## GO:0019216 GO:0019216
## GO:0043254 GO:0043254
## GO:0019884 GO:0019884
## GO:1901293 GO:1901293
## GO:0006066 GO:0006066
## GO:0031098 GO:0031098
## GO:2000116 GO:2000116
## GO:2000027 GO:2000027
## GO:0030595 GO:0030595
## GO:0030168 GO:0030168
## GO:0009165 GO:0009165
## GO:0048193 GO:0048193
## GO:0006090 GO:0006090
## GO:0045471 GO:0045471
## GO:0002478 GO:0002478
## GO:0018209 GO:0018209
## GO:0045926 GO:0045926
## GO:0030323 GO:0030323
## GO:0050920 GO:0050920
## GO:0060562 GO:0060562
## GO:0051403 GO:0051403
## GO:0002696 GO:0002696
## GO:0006605 GO:0006605
## GO:0031668 GO:0031668
## GO:0061448 GO:0061448
## GO:0007163 GO:0007163
## GO:0016052 GO:0016052
## GO:0032970 GO:0032970
## GO:0071248 GO:0071248
## GO:0060541 GO:0060541
## GO:0000302 GO:0000302
## GO:0045089 GO:0045089
## GO:0030072 GO:0030072
## GO:0048863 GO:0048863
## GO:0071453 GO:0071453
## GO:0043281 GO:0043281
## GO:0050792 GO:0050792
## GO:0016358 GO:0016358
## GO:0033157 GO:0033157
## GO:0009743 GO:0009743
## GO:0006402 GO:0006402
## GO:0002064 GO:0002064
## GO:0030324 GO:0030324
## GO:0051701 GO:0051701
## GO:0002685 GO:0002685
## GO:0002683 GO:0002683
## GO:0034504 GO:0034504
## GO:0032535 GO:0032535
## GO:0019083 GO:0019083
## GO:0070646 GO:0070646
## GO:0043523 GO:0043523
## GO:1903039 GO:1903039
## GO:0050900 GO:0050900
## GO:0006401 GO:0006401
## GO:0043161 GO:0043161
## GO:0010498 GO:0010498
## GO:0140014 GO:0140014
## GO:0043393 GO:0043393
## GO:0046683 GO:0046683
## GO:0050921 GO:0050921
## GO:0060249 GO:0060249
## GO:0009124 GO:0009124
## GO:0010639 GO:0010639
## GO:0070555 GO:0070555
## GO:0045787 GO:0045787
## GO:0032103 GO:0032103
## GO:1901654 GO:1901654
## GO:0003018 GO:0003018
## GO:0009127 GO:0009127
## GO:0009168 GO:0009168
## GO:0034599 GO:0034599
## GO:0007050 GO:0007050
## GO:0042113 GO:0042113
## GO:0051251 GO:0051251
## GO:0071347 GO:0071347
## GO:0008217 GO:0008217
## GO:0048015 GO:0048015
## GO:1902749 GO:1902749
## GO:0060537 GO:0060537
## GO:0008016 GO:0008016
## GO:0002703 GO:0002703
## GO:0050730 GO:0050730
## GO:0048017 GO:0048017
## GO:0050852 GO:0050852
## GO:0045930 GO:0045930
## GO:0050806 GO:0050806
## GO:0009156 GO:0009156
## GO:0006733 GO:0006733
## GO:0002367 GO:0002367
## GO:0036294 GO:0036294
## GO:0051648 GO:0051648
## GO:0043270 GO:0043270
## GO:0051052 GO:0051052
## GO:0002698 GO:0002698
## GO:0019318 GO:0019318
## GO:0002474 GO:0002474
## GO:0033273 GO:0033273
## GO:0017157 GO:0017157
## GO:0045137 GO:0045137
## GO:0097529 GO:0097529
## GO:0034404 GO:0034404
## GO:0015711 GO:0015711
## GO:0006914 GO:0006914
## GO:0061919 GO:0061919
## GO:0050770 GO:0050770
## GO:1990778 GO:1990778
## GO:2001235 GO:2001235
## GO:0030217 GO:0030217
## GO:0002758 GO:0002758
## GO:0030260 GO:0030260
## GO:0044409 GO:0044409
## GO:0051806 GO:0051806
## GO:0051828 GO:0051828
## GO:0003007 GO:0003007
## GO:0002699 GO:0002699
## GO:0006109 GO:0006109
## GO:0050870 GO:0050870
## GO:0071456 GO:0071456
## GO:0016579 GO:0016579
## GO:0002218 GO:0002218
## GO:0014706 GO:0014706
## GO:0010770 GO:0010770
## GO:0032956 GO:0032956
## GO:0046661 GO:0046661
## GO:0051099 GO:0051099
## GO:0008406 GO:0008406
## GO:0050880 GO:0050880
## GO:0000075 GO:0000075
## GO:0033044 GO:0033044
## GO:0051591 GO:0051591
## GO:0031960 GO:0031960
## GO:0009416 GO:0009416
## GO:0048638 GO:0048638
## GO:0010506 GO:0010506
## GO:0046434 GO:0046434
## GO:0031669 GO:0031669
## GO:0010001 GO:0010001
## GO:0009167 GO:0009167
## GO:0030308 GO:0030308
## GO:0009161 GO:0009161
## GO:0050821 GO:0050821
## GO:1901292 GO:1901292
## GO:0050808 GO:0050808
## GO:0009408 GO:0009408
## GO:0090276 GO:0090276
## GO:0051650 GO:0051650
## GO:0042770 GO:0042770
## GO:0048813 GO:0048813
## GO:0010948 GO:0010948
## GO:0010959 GO:0010959
## GO:0051054 GO:0051054
## GO:0007187 GO:0007187
## GO:0051216 GO:0051216
## GO:0044262 GO:0044262
## GO:0007626 GO:0007626
## GO:0046718 GO:0046718
## GO:0009126 GO:0009126
## GO:0022612 GO:0022612
## GO:0009166 GO:0009166
## GO:0009144 GO:0009144
## GO:1902107 GO:1902107
## GO:0010389 GO:0010389
## GO:0010721 GO:0010721
## GO:0009123 GO:0009123
## GO:0035150 GO:0035150
## GO:0021700 GO:0021700
## GO:0034612 GO:0034612
## GO:1902903 GO:1902903
## GO:0050851 GO:0050851
## GO:0014065 GO:0014065
## GO:0043620 GO:0043620
## GO:0001890 GO:0001890
## GO:0034976 GO:0034976
## GO:0031331 GO:0031331
## GO:0006096 GO:0006096
## GO:0007254 GO:0007254
## GO:0072524 GO:0072524
## GO:0007612 GO:0007612
## GO:0061008 GO:0061008
## GO:0048754 GO:0048754
## GO:0031032 GO:0031032
## GO:0051961 GO:0051961
## GO:0042445 GO:0042445
## GO:0002576 GO:0002576
## GO:0006754 GO:0006754
## GO:0030902 GO:0030902
## GO:0090316 GO:0090316
## GO:0042866 GO:0042866
## GO:0019362 GO:0019362
## GO:0046496 GO:0046496
## GO:0000226 GO:0000226
## GO:0006260 GO:0006260
## GO:0008361 GO:0008361
## GO:0042180 GO:0042180
## GO:0030048 GO:0030048
## GO:0009205 GO:0009205
## GO:0002262 GO:0002262
## GO:0007411 GO:0007411
## GO:0003205 GO:0003205
## GO:0070507 GO:0070507
## GO:0051092 GO:0051092
## GO:1903708 GO:1903708
## GO:0042326 GO:0042326
## GO:0071356 GO:0071356
## GO:1901216 GO:1901216
## GO:0007178 GO:0007178
## GO:0009141 GO:0009141
## GO:0071559 GO:0071559
## GO:0009199 GO:0009199
## GO:0097485 GO:0097485
## GO:0002687 GO:0002687
## GO:0001889 GO:0001889
## GO:0009145 GO:0009145
## GO:0120162 GO:0120162
## GO:0030073 GO:0030073
## GO:0060070 GO:0060070
## GO:0050731 GO:0050731
## GO:0043902 GO:0043902
## GO:0000187 GO:0000187
## GO:0034332 GO:0034332
## GO:0007015 GO:0007015
## GO:0006790 GO:0006790
## GO:0035296 GO:0035296
## GO:0051170 GO:0051170
## GO:0097746 GO:0097746
## GO:0007162 GO:0007162
## GO:1903362 GO:1903362
## GO:0006757 GO:0006757
## GO:0048013 GO:0048013
## GO:0002700 GO:0002700
## GO:0030879 GO:0030879
## GO:0046546 GO:0046546
## GO:0009206 GO:0009206
## GO:0003206 GO:0003206
## GO:0060337 GO:0060337
## GO:0071357 GO:0071357
## GO:0070302 GO:0070302
## GO:0007044 GO:0007044
## GO:0010821 GO:0010821
## GO:0035966 GO:0035966
## GO:0060560 GO:0060560
## GO:0070663 GO:0070663
## GO:0009895 GO:0009895
## GO:0051924 GO:0051924
## GO:0046777 GO:0046777
## GO:0008584 GO:0008584
## GO:0034660 GO:0034660
## GO:0002688 GO:0002688
## GO:0006941 GO:0006941
## GO:0046034 GO:0046034
## GO:0046822 GO:0046822
## GO:0034340 GO:0034340
## GO:0035264 GO:0035264
## GO:0016054 GO:0016054
## GO:0046395 GO:0046395
## GO:0090596 GO:0090596
## GO:0032872 GO:0032872
## GO:0043618 GO:0043618
## GO:0048167 GO:0048167
## GO:0017038 GO:0017038
## GO:0042098 GO:0042098
## GO:0071478 GO:0071478
## GO:0050768 GO:0050768
## GO:0006006 GO:0006006
## GO:1990823 GO:1990823
## GO:1990830 GO:1990830
## GO:0032944 GO:0032944
## GO:0034284 GO:0034284
## GO:1902105 GO:1902105
## GO:0009201 GO:0009201
## GO:0006457 GO:0006457
## GO:0007272 GO:0007272
## GO:0008366 GO:0008366
## GO:0051592 GO:0051592
## GO:1901215 GO:1901215
## GO:0014066 GO:0014066
## GO:0006606 GO:0006606
## GO:0050670 GO:0050670
## GO:0071560 GO:0071560
## GO:0045927 GO:0045927
## GO:0007093 GO:0007093
## GO:0031330 GO:0031330
## GO:0046031 GO:0046031
## GO:0071695 GO:0071695
## GO:1901796 GO:1901796
## GO:0072593 GO:0072593
## GO:0048562 GO:0048562
## GO:1903706 GO:1903706
## GO:0046887 GO:0046887
## GO:0030099 GO:0030099
## GO:1902850 GO:1902850
## GO:0006289 GO:0006289
## GO:0030518 GO:0030518
## GO:0006694 GO:0006694
## GO:0019079 GO:0019079
## GO:0021543 GO:0021543
## GO:0070371 GO:0070371
## GO:0032869 GO:0032869
## GO:0030330 GO:0030330
## GO:0043279 GO:0043279
## GO:0035637 GO:0035637
## GO:0060348 GO:0060348
## GO:1900542 GO:1900542
## GO:0070498 GO:0070498
## GO:1905475 GO:1905475
## GO:0048705 GO:0048705
## GO:0060401 GO:0060401
## GO:0046328 GO:0046328
## GO:0050796 GO:0050796
## GO:0006475 GO:0006475
## GO:0006140 GO:0006140
## GO:0010811 GO:0010811
## GO:0005996 GO:0005996
## GO:0072659 GO:0072659
## GO:0001508 GO:0001508
## GO:0042752 GO:0042752
## GO:0006110 GO:0006110
## GO:1900046 GO:1900046
## GO:0009746 GO:0009746
## GO:1900371 GO:1900371
## GO:0035967 GO:0035967
## GO:0051196 GO:0051196
## GO:0007517 GO:0007517
## GO:0071216 GO:0071216
## GO:0042552 GO:0042552
## GO:0051258 GO:0051258
## GO:0051384 GO:0051384
## GO:0007005 GO:0007005
## GO:0098781 GO:0098781
## GO:0043491 GO:0043491
## GO:0009142 GO:0009142
## GO:1903311 GO:1903311
## GO:0030193 GO:0030193
## GO:0031099 GO:0031099
## GO:0001952 GO:0001952
## GO:0034605 GO:0034605
## GO:0007229 GO:0007229
## GO:0051495 GO:0051495
## GO:0051607 GO:0051607
## GO:0042446 GO:0042446
## GO:0043470 GO:0043470
## GO:0045665 GO:0045665
## GO:0052547 GO:0052547
## GO:1901990 GO:1901990
## GO:0048524 GO:0048524
## GO:0007188 GO:0007188
## GO:0043488 GO:0043488
## GO:0051588 GO:0051588
## GO:0000077 GO:0000077
## GO:0009135 GO:0009135
## GO:0009179 GO:0009179
## GO:1905330 GO:1905330
## GO:0006631 GO:0006631
## GO:0061572 GO:0061572
## GO:0042590 GO:0042590
## GO:0030100 GO:0030100
## GO:0003014 GO:0003014
## GO:0031570 GO:0031570
## GO:0002456 GO:0002456
## GO:0002718 GO:0002718
## GO:0060218 GO:0060218
## GO:0048592 GO:0048592
## GO:0060402 GO:0060402
## GO:0006986 GO:0006986
## GO:0007269 GO:0007269
## GO:0032922 GO:0032922
## GO:0010952 GO:0010952
## GO:0032886 GO:0032886
## GO:0048565 GO:0048565
## GO:0060048 GO:0060048
## GO:1902036 GO:1902036
## GO:0006473 GO:0006473
## GO:0051017 GO:0051017
## GO:0072073 GO:0072073
## GO:0018394 GO:0018394
## GO:0010212 GO:0010212
## GO:0007389 GO:0007389
## GO:0008277 GO:0008277
## GO:0018393 GO:0018393
## GO:0030811 GO:0030811
## GO:0061418 GO:0061418
## GO:0071260 GO:0071260
## GO:1901987 GO:1901987
## GO:0021537 GO:0021537
## GO:0006970 GO:0006970
## GO:0030808 GO:0030808
## GO:1903578 GO:1903578
## GO:0071219 GO:0071219
## GO:0051056 GO:0051056
## GO:1990868 GO:1990868
## GO:1990869 GO:1990869
## GO:0016051 GO:0016051
## GO:0046939 GO:0046939
## GO:0009185 GO:0009185
## GO:2001056 GO:2001056
## GO:0009749 GO:0009749
## GO:0034765 GO:0034765
## GO:0048588 GO:0048588
## GO:0050777 GO:0050777
## GO:0043280 GO:0043280
## GO:0016573 GO:0016573
## GO:2001236 GO:2001236
## GO:0002573 GO:0002573
## GO:0061013 GO:0061013
## GO:0002690 GO:0002690
## GO:0014068 GO:0014068
## GO:0006403 GO:0006403
## GO:0030010 GO:0030010
## GO:0060359 GO:0060359
## GO:0019935 GO:0019935
## GO:0038127 GO:0038127
## GO:1901605 GO:1901605
## GO:0099643 GO:0099643
## GO:0015849 GO:0015849
## GO:0046942 GO:0046942
## GO:0034333 GO:0034333
## GO:1901888 GO:1901888
## GO:2001169 GO:2001169
## GO:0043112 GO:0043112
## GO:0030258 GO:0030258
## GO:0045732 GO:0045732
## GO:0031532 GO:0031532
## GO:2001252 GO:2001252
## GO:0002479 GO:0002479
## GO:0031100 GO:0031100
## GO:0034614 GO:0034614
## GO:0006165 GO:0006165
## GO:1903510 GO:1903510
## GO:0070372 GO:0070372
## GO:0072525 GO:0072525
## GO:0032526 GO:0032526
## GO:0030521 GO:0030521
## GO:0032233 GO:0032233
## GO:0071222 GO:0071222
## GO:1901136 GO:1901136
## GO:0006888 GO:0006888
## GO:0051783 GO:0051783
## GO:0051101 GO:0051101
## GO:0001933 GO:0001933
## GO:0071466 GO:0071466
## GO:1903050 GO:1903050
## GO:0031503 GO:0031503
## GO:0009308 GO:0009308
## GO:0042593 GO:0042593
## GO:0006644 GO:0006644
## GO:0070098 GO:0070098
## GO:0051260 GO:0051260
## GO:0032092 GO:0032092
## GO:0045621 GO:0045621
## GO:0048285 GO:0048285
## GO:0070252 GO:0070252
## GO:2001234 GO:2001234
## GO:0030111 GO:0030111
## GO:0043487 GO:0043487
## GO:0043200 GO:0043200
## GO:0034620 GO:0034620
## GO:0042698 GO:0042698
## GO:1902652 GO:1902652
## GO:0055123 GO:0055123
## GO:0050773 GO:0050773
## GO:0042594 GO:0042594
## GO:0006283 GO:0006283
## GO:0048771 GO:0048771
## GO:1902905 GO:1902905
## GO:0046660 GO:0046660
## GO:0043687 GO:0043687
## GO:0019233 GO:0019233
## GO:0052548 GO:0052548
## GO:0071897 GO:0071897
## GO:0031214 GO:0031214
## GO:0002819 GO:0002819
## GO:0007088 GO:0007088
## GO:0022406 GO:0022406
## GO:0043524 GO:0043524
## GO:0034341 GO:0034341
## GO:0051897 GO:0051897
## GO:0019722 GO:0019722
## GO:0019359 GO:0019359
## GO:0019363 GO:0019363
## GO:0072006 GO:0072006
## GO:0033500 GO:0033500
## GO:0042737 GO:0042737
## GO:1902275 GO:1902275
## GO:0051651 GO:0051651
## GO:0003002 GO:0003002
## GO:0097530 GO:0097530
## GO:0002705 GO:0002705
## GO:0071346 GO:0071346
## GO:0044106 GO:0044106
## GO:0050866 GO:0050866
## GO:0030534 GO:0030534
## GO:0032392 GO:0032392
## GO:0007052 GO:0007052
## GO:0070588 GO:0070588
## GO:0043087 GO:0043087
## GO:0051236 GO:0051236
## GO:0007045 GO:0007045
## GO:0046849 GO:0046849
## GO:0048041 GO:0048041
## GO:0021987 GO:0021987
## GO:0030968 GO:0030968
## GO:0015837 GO:0015837
## GO:0042310 GO:0042310
## GO:0051952 GO:0051952
## GO:0070664 GO:0070664
## GO:0061387 GO:0061387
## GO:0051048 GO:0051048
## GO:0070374 GO:0070374
## GO:0034101 GO:0034101
## GO:0042542 GO:0042542
## GO:0043467 GO:0043467
## GO:0046578 GO:0046578
## GO:0009952 GO:0009952
## GO:1903305 GO:1903305
## GO:0051250 GO:0051250
## GO:0002695 GO:0002695
## GO:0045185 GO:0045185
## GO:0070542 GO:0070542
## GO:1901532 GO:1901532
## GO:0060828 GO:0060828
## GO:0022037 GO:0022037
## GO:0099003 GO:0099003
## GO:0033238 GO:0033238
## GO:0031334 GO:0031334
## GO:0007249 GO:0007249
## GO:0010822 GO:0010822
## GO:0014031 GO:0014031
## GO:0007051 GO:0007051
## GO:0071236 GO:0071236
## GO:1903900 GO:1903900
## GO:0008203 GO:0008203
## GO:0007200 GO:0007200
## GO:0010977 GO:0010977
## GO:0051100 GO:0051100
## GO:0099504 GO:0099504
## GO:0090150 GO:0090150
## GO:0034764 GO:0034764
## GO:0002244 GO:0002244
## GO:0071621 GO:0071621
## GO:0021761 GO:0021761
## GO:0002369 GO:0002369
## GO:0001818 GO:0001818
## GO:0000280 GO:0000280
## GO:1903531 GO:1903531
## GO:0050818 GO:0050818
## GO:0030038 GO:0030038
## GO:0043149 GO:0043149
## GO:0055067 GO:0055067
## GO:0051668 GO:0051668
## GO:0050657 GO:0050657
## GO:0050658 GO:0050658
## GO:0046782 GO:0046782
## GO:0033077 GO:0033077
## GO:0050673 GO:0050673
## GO:0030203 GO:0030203
## GO:0009132 GO:0009132
## GO:0045582 GO:0045582
## GO:2001020 GO:2001020
## GO:1904062 GO:1904062
## GO:0046165 GO:0046165
## GO:0006937 GO:0006937
## GO:0030183 GO:0030183
## GO:0001504 GO:0001504
## GO:0010771 GO:0010771
## GO:0070585 GO:0070585
## GO:0001892 GO:0001892
## GO:0019748 GO:0019748
## GO:0033209 GO:0033209
## GO:0061136 GO:0061136
## GO:0016311 GO:0016311
## GO:0030282 GO:0030282
## GO:0002706 GO:0002706
## GO:0030218 GO:0030218
## GO:0008286 GO:0008286
## GO:1905477 GO:1905477
## GO:0030177 GO:0030177
## GO:0016125 GO:0016125
## GO:0016073 GO:0016073
## GO:0046686 GO:0046686
## GO:0030278 GO:0030278
## GO:0034446 GO:0034446
## GO:0010876 GO:0010876
## GO:0072163 GO:0072163
## GO:0072164 GO:0072164
## GO:0050772 GO:0050772
## GO:0072347 GO:0072347
## GO:0051896 GO:0051896
## GO:0097237 GO:0097237
## GO:0061041 GO:0061041
## GO:0001823 GO:0001823
## GO:1903034 GO:1903034
## GO:0001954 GO:0001954
## GO:0051496 GO:0051496
## GO:0097366 GO:0097366
## GO:0099173 GO:0099173
## GO:0015696 GO:0015696
## GO:0021782 GO:0021782
## GO:0030326 GO:0030326
## GO:0035113 GO:0035113
## GO:0051928 GO:0051928
## GO:0032231 GO:0032231
## GO:0051168 GO:0051168
## GO:2000377 GO:2000377
## GO:0015980 GO:0015980
## GO:0006022 GO:0006022
## GO:0001657 GO:0001657
## GO:0021549 GO:0021549
## GO:0006413 GO:0006413
## GO:0033555 GO:0033555
## GO:0044272 GO:0044272
## GO:0006354 GO:0006354
## GO:0002221 GO:0002221
## GO:0014032 GO:0014032
## GO:0006766 GO:0006766
## GO:0051289 GO:0051289
## GO:0051193 GO:0051193
## GO:0003151 GO:0003151
## GO:0045619 GO:0045619
## GO:0042129 GO:0042129
## GO:0015893 GO:0015893
## GO:0048010 GO:0048010
## GO:0045807 GO:0045807
## GO:0140056 GO:0140056
## GO:1901991 GO:1901991
## GO:0110053 GO:0110053
## GO:0090100 GO:0090100
## GO:0007369 GO:0007369
## GO:0010565 GO:0010565
## GO:0048675 GO:0048675
## GO:0045165 GO:0045165
## GO:0003229 GO:0003229
## GO:0010332 GO:0010332
## GO:0043122 GO:0043122
## GO:0043547 GO:0043547
## GO:2001251 GO:2001251
## GO:1990138 GO:1990138
## GO:0072655 GO:0072655
## GO:0051817 GO:0051817
## GO:0032945 GO:0032945
## GO:0048864 GO:0048864
## GO:0050672 GO:0050672
## GO:0046824 GO:0046824
## GO:0006869 GO:0006869
## GO:0045834 GO:0045834
## GO:0097756 GO:0097756
## GO:1900034 GO:1900034
## GO:0098801 GO:0098801
## GO:0008630 GO:0008630
## GO:0007259 GO:0007259
## GO:0031345 GO:0031345
## GO:0018958 GO:0018958
## GO:0032984 GO:0032984
## GO:0007179 GO:0007179
## GO:1901988 GO:1901988
## GO:0046545 GO:0046545
## GO:0046330 GO:0046330
## GO:0043543 GO:0043543
## GO:0002220 GO:0002220
## GO:0007422 GO:0007422
## GO:0001738 GO:0001738
## GO:0071322 GO:0071322
## GO:0048736 GO:0048736
## GO:0060173 GO:0060173
## GO:0001570 GO:0001570
## GO:0033143 GO:0033143
## GO:0007588 GO:0007588
## GO:0045123 GO:0045123
## GO:0001649 GO:0001649
## GO:0045444 GO:0045444
## GO:0002822 GO:0002822
## GO:0090263 GO:0090263
## GO:0016050 GO:0016050
## GO:0003231 GO:0003231
## GO:0043123 GO:0043123
## GO:0008585 GO:0008585
## GO:0045069 GO:0045069
## GO:0010950 GO:0010950
## GO:0090068 GO:0090068
## GO:0035107 GO:0035107
## GO:0035108 GO:0035108
## GO:0003208 GO:0003208
## GO:0033135 GO:0033135
## GO:0007173 GO:0007173
## GO:0015672 GO:0015672
## GO:0015931 GO:0015931
## GO:0001894 GO:0001894
## GO:0010675 GO:0010675
## GO:0031056 GO:0031056
## GO:0044773 GO:0044773
## GO:0043901 GO:0043901
## GO:0016236 GO:0016236
## GO:0031644 GO:0031644
## GO:0008306 GO:0008306
## GO:0098727 GO:0098727
## GO:0036498 GO:0036498
## GO:0035567 GO:0035567
## GO:0042476 GO:0042476
## GO:0097553 GO:0097553
## GO:0060996 GO:0060996
## GO:0110020 GO:0110020
## GO:0002697 GO:0002697
## GO:1902115 GO:1902115
## GO:0070304 GO:0070304
## GO:0002377 GO:0002377
## GO:0000184 GO:0000184
## GO:0006997 GO:0006997
## GO:1902930 GO:1902930
## GO:0002065 GO:0002065
## GO:2000278 GO:2000278
## GO:0009301 GO:0009301
## GO:0006611 GO:0006611
## GO:2001242 GO:2001242
## GO:0050663 GO:0050663
## GO:0042254 GO:0042254
## GO:0040014 GO:0040014
## GO:0061180 GO:0061180
## GO:1903391 GO:1903391
## GO:0009100 GO:0009100
## GO:0006890 GO:0006890
## GO:0021954 GO:0021954
## GO:0032508 GO:0032508
## GO:0030307 GO:0030307
## GO:0032606 GO:0032606
## GO:0021915 GO:0021915
## GO:0032874 GO:0032874
## GO:0002886 GO:0002886
## GO:0046148 GO:0046148
## GO:0071320 GO:0071320
## GO:0002702 GO:0002702
## GO:0044070 GO:0044070
## GO:0032623 GO:0032623
## GO:0032507 GO:0032507
## GO:0044786 GO:0044786
## GO:0045576 GO:0045576
## GO:0006470 GO:0006470
## GO:0002223 GO:0002223
## GO:0003279 GO:0003279
## GO:0002504 GO:0002504
## GO:1905269 GO:1905269
## GO:0048593 GO:0048593
## GO:0034470 GO:0034470
## GO:0009267 GO:0009267
## GO:0060041 GO:0060041
## GO:0050886 GO:0050886
## GO:0010256 GO:0010256
## GO:0042795 GO:0042795
## GO:0050715 GO:0050715
## GO:0002285 GO:0002285
## GO:0019827 GO:0019827
## GO:0048639 GO:0048639
## GO:0055078 GO:0055078
## GO:0031058 GO:0031058
## GO:0015850 GO:0015850
## GO:0015844 GO:0015844
## GO:0045580 GO:0045580
## GO:0006919 GO:0006919
## GO:0048738 GO:0048738
## GO:0007219 GO:0007219
## GO:2000736 GO:2000736
## GO:0071156 GO:0071156
## GO:0002495 GO:0002495
## GO:0002709 GO:0002709
## GO:0051893 GO:0051893
## GO:0090109 GO:0090109
## GO:0060485 GO:0060485
## GO:0006839 GO:0006839
## GO:0006368 GO:0006368
## GO:0008654 GO:0008654
## GO:0051492 GO:0051492
## GO:0001736 GO:0001736
## GO:0007164 GO:0007164
## GO:0032479 GO:0032479
## GO:0046486 GO:0046486
## GO:0002279 GO:0002279
## GO:0010463 GO:0010463
## GO:0071675 GO:0071675
## GO:0071300 GO:0071300
## GO:0098739 GO:0098739
## GO:0001656 GO:0001656
## GO:0060333 GO:0060333
## GO:1901655 GO:1901655
## GO:0006650 GO:0006650
## GO:0042133 GO:0042133
## GO:0034440 GO:0034440
## GO:0046794 GO:0046794
## GO:0001764 GO:0001764
## GO:1900047 GO:1900047
## GO:0043583 GO:0043583
## GO:0001885 GO:0001885
## GO:0042306 GO:0042306
## GO:0016072 GO:0016072
## GO:0009411 GO:0009411
## GO:0071479 GO:0071479
## GO:0048814 GO:0048814
## GO:0046631 GO:0046631
## GO:0050707 GO:0050707
## GO:0061337 GO:0061337
## GO:0044774 GO:0044774
## GO:0060191 GO:0060191
## GO:0061045 GO:0061045
## GO:0031623 GO:0031623
## GO:0002027 GO:0002027
## GO:0060135 GO:0060135
## GO:0022408 GO:0022408
## GO:0030850 GO:0030850
## GO:0035850 GO:0035850
## GO:0000956 GO:0000956
## GO:0050856 GO:0050856
## GO:0048706 GO:0048706
## GO:1900180 GO:1900180
## GO:0090257 GO:0090257
## GO:0038061 GO:0038061
## GO:0097164 GO:0097164
## GO:0030195 GO:0030195
## GO:0060395 GO:0060395
## GO:2001238 GO:2001238
## GO:0000070 GO:0000070
## GO:1903557 GO:1903557
## GO:0061005 GO:0061005
## GO:0009060 GO:0009060
## GO:0043574 GO:0043574
## GO:0002724 GO:0002724
## GO:2000758 GO:2000758
## GO:0019933 GO:0019933
## GO:0062013 GO:0062013
## GO:0072009 GO:0072009
## GO:0106027 GO:0106027
## GO:0097696 GO:0097696
## GO:0044242 GO:0044242
## GO:0019395 GO:0019395
## GO:0001909 GO:0001909
## GO:0019886 GO:0019886
## GO:1902750 GO:1902750
## GO:0046474 GO:0046474
## GO:0006026 GO:0006026
## GO:0043967 GO:0043967
## GO:0071277 GO:0071277
## GO:0051028 GO:0051028
## GO:0046425 GO:0046425
## GO:0098542 GO:0098542
## GO:0030516 GO:0030516
## GO:0043300 GO:0043300
## GO:0043303 GO:0043303
## GO:0071326 GO:0071326
## GO:0007613 GO:0007613
## GO:0032370 GO:0032370
## GO:1904589 GO:1904589
## GO:0048469 GO:0048469
## GO:0046890 GO:0046890
## GO:0007031 GO:0007031
## GO:0001755 GO:0001755
## GO:0042181 GO:0042181
## GO:0031333 GO:0031333
## GO:0060078 GO:0060078
## GO:0002200 GO:0002200
## GO:0006625 GO:0006625
## GO:0072662 GO:0072662
## GO:0072663 GO:0072663
## GO:0055010 GO:0055010
## GO:0006968 GO:0006968
## GO:0019229 GO:0019229
## GO:0009791 GO:0009791
## GO:0070167 GO:0070167
## GO:0046928 GO:0046928
## GO:0071774 GO:0071774
## GO:0070050 GO:0070050
## GO:1903747 GO:1903747
## GO:0015800 GO:0015800
## GO:0016999 GO:0016999
## GO:0071331 GO:0071331
## GO:0050807 GO:0050807
## GO:0016241 GO:0016241
## GO:0032271 GO:0032271
## GO:0008344 GO:0008344
## GO:1904019 GO:1904019
## GO:0015718 GO:0015718
## GO:2000058 GO:2000058
## GO:0060071 GO:0060071
## GO:0021766 GO:0021766
## GO:0046189 GO:0046189
## GO:0043525 GO:0043525
## GO:0045453 GO:0045453
## GO:0075733 GO:0075733
## GO:0003073 GO:0003073
## GO:0010517 GO:0010517
## GO:0046785 GO:0046785
## GO:0006633 GO:0006633
## GO:0061351 GO:0061351
## GO:2000117 GO:2000117
## GO:0007589 GO:0007589
## GO:0097711 GO:0097711
## GO:0006900 GO:0006900
## GO:0090277 GO:0090277
## GO:0016042 GO:0016042
## GO:0033673 GO:0033673
## GO:0071634 GO:0071634
## GO:0033260 GO:0033260
## GO:1903364 GO:1903364
## GO:0006661 GO:0006661
## GO:0014033 GO:0014033
## GO:0002224 GO:0002224
## GO:0006027 GO:0006027
## GO:0006521 GO:0006521
## GO:0032835 GO:0032835
## GO:0030705 GO:0030705
## GO:0072395 GO:0072395
## GO:1903320 GO:1903320
## GO:0032963 GO:0032963
## GO:0048762 GO:0048762
## GO:0032760 GO:0032760
## GO:1905954 GO:1905954
## GO:0007043 GO:0007043
## GO:0010522 GO:0010522
## GO:0042136 GO:0042136
## GO:0031341 GO:0031341
## GO:0045921 GO:0045921
## GO:0031109 GO:0031109
## GO:0045778 GO:0045778
## GO:0048839 GO:0048839
## GO:0051208 GO:0051208
## GO:0033138 GO:0033138
## GO:0006911 GO:0006911
## GO:0045773 GO:0045773
## GO:0050434 GO:0050434
## GO:0045216 GO:0045216
## GO:0071333 GO:0071333
## GO:0046717 GO:0046717
## GO:0032102 GO:0032102
## GO:0050803 GO:0050803
## GO:0048146 GO:0048146
## GO:0008360 GO:0008360
## GO:0014075 GO:0014075
## GO:0031648 GO:0031648
## GO:0060711 GO:0060711
## GO:0061614 GO:0061614
## GO:1990089 GO:1990089
## GO:0090175 GO:0090175
## GO:0002701 GO:0002701
## GO:0042092 GO:0042092
## GO:0001678 GO:0001678
## GO:0006939 GO:0006939
## GO:0002768 GO:0002768
## GO:0021536 GO:0021536
## GO:0044766 GO:0044766
## GO:0072401 GO:0072401
## GO:0072422 GO:0072422
## GO:1902579 GO:1902579
## GO:0002062 GO:0002062
## GO:0060411 GO:0060411
## GO:0006835 GO:0006835
## GO:0046364 GO:0046364
## GO:0031145 GO:0031145
## GO:0051899 GO:0051899
## GO:0017156 GO:0017156
## GO:0035066 GO:0035066
## GO:0051209 GO:0051209
## GO:0051283 GO:0051283
## GO:0002088 GO:0002088
## GO:0071674 GO:0071674
## GO:1903524 GO:1903524
## GO:0008637 GO:0008637
## GO:0006261 GO:0006261
## GO:0090090 GO:0090090
## GO:0002067 GO:0002067
## GO:0002448 GO:0002448
## GO:0051146 GO:0051146
## GO:1902117 GO:1902117
## GO:1903169 GO:1903169
## GO:0010464 GO:0010464
## GO:0097306 GO:0097306
## GO:1904894 GO:1904894
## GO:0110110 GO:0110110
## GO:0051348 GO:0051348
## GO:0050679 GO:0050679
## GO:0042108 GO:0042108
## GO:0010524 GO:0010524
## GO:0019226 GO:0019226
## GO:0032663 GO:0032663
## GO:0051937 GO:0051937
## GO:0006364 GO:0006364
## GO:0071887 GO:0071887
## GO:0099565 GO:0099565
## GO:0022898 GO:0022898
## GO:0006469 GO:0006469
## GO:0051282 GO:0051282
## GO:0033683 GO:0033683
## GO:0042596 GO:0042596
## GO:0060079 GO:0060079
## GO:0000186 GO:0000186
## GO:0000819 GO:0000819
## GO:0042100 GO:0042100
## GO:0002708 GO:0002708
## GO:0032434 GO:0032434
## GO:0050864 GO:0050864
## GO:0071622 GO:0071622
## GO:0031016 GO:0031016
## GO:0072332 GO:0072332
## GO:1901224 GO:1901224
## GO:0048144 GO:0048144
## GO:0060021 GO:0060021
## GO:1903035 GO:1903035
## GO:0043154 GO:0043154
## GO:0008625 GO:0008625
## GO:0016331 GO:0016331
## GO:0035821 GO:0035821
## GO:0051494 GO:0051494
## GO:0048048 GO:0048048
## GO:0051954 GO:0051954
## GO:0072350 GO:0072350
## GO:1901890 GO:1901890
## GO:0001704 GO:0001704
## GO:0071166 GO:0071166
## GO:0006275 GO:0006275
## GO:2000241 GO:2000241
## GO:0006360 GO:0006360
## GO:0046365 GO:0046365
## GO:0042177 GO:0042177
## GO:0001906 GO:0001906
## GO:1904375 GO:1904375
## GO:0042130 GO:0042130
## GO:0006635 GO:0006635
## GO:0042440 GO:0042440
## GO:2000573 GO:2000573
## GO:0022600 GO:0022600
## GO:0042692 GO:0042692
## GO:0022613 GO:0022613
## GO:0045861 GO:0045861
## GO:0044344 GO:0044344
## GO:0050764 GO:0050764
## GO:0060349 GO:0060349
## GO:0007266 GO:0007266
## GO:0046488 GO:0046488
## GO:0048145 GO:0048145
## GO:0001667 GO:0001667
## GO:0002704 GO:0002704
## GO:0042220 GO:0042220
## GO:0032481 GO:0032481
## GO:0060291 GO:0060291
## GO:1900182 GO:1900182
## GO:0045445 GO:0045445
## GO:0048644 GO:0048644
## GO:0071158 GO:0071158
## GO:0002209 GO:0002209
## GO:0002711 GO:0002711
## GO:0007431 GO:0007431
## GO:0016572 GO:0016572
## GO:0071604 GO:0071604
## GO:0001836 GO:0001836
## GO:0010518 GO:0010518
## GO:0032890 GO:0032890
## GO:0060688 GO:0060688
## GO:0090183 GO:0090183
## GO:1903749 GO:1903749
## GO:2000756 GO:2000756
## GO:0071426 GO:0071426
## GO:0031018 GO:0031018
## GO:0044060 GO:0044060
## GO:1990090 GO:1990090
## GO:0006479 GO:0006479
## GO:0008213 GO:0008213
## GO:0051302 GO:0051302
## GO:0000209 GO:0000209
## GO:0032640 GO:0032640
## GO:1903555 GO:1903555
## GO:0007098 GO:0007098
## GO:0034113 GO:0034113
## GO:0046635 GO:0046635
## GO:0016571 GO:0016571
## GO:0051346 GO:0051346
## GO:0031111 GO:0031111
## GO:0038128 GO:0038128
## GO:0097479 GO:0097479
## GO:0030856 GO:0030856
## GO:0032680 GO:0032680
## GO:0002720 GO:0002720
## GO:0019319 GO:0019319
## GO:0010972 GO:0010972
## GO:0046427 GO:0046427
## GO:0048704 GO:0048704
## GO:0031110 GO:0031110
## GO:0050868 GO:0050868
## GO:1903533 GO:1903533
## GO:0009063 GO:0009063
## GO:0072329 GO:0072329
## GO:0007492 GO:0007492
## GO:0071706 GO:0071706
## GO:0034109 GO:0034109
## GO:0048708 GO:0048708
## GO:0097061 GO:0097061
## GO:0090092 GO:0090092
## GO:0071772 GO:0071772
## GO:0071773 GO:0071773
## GO:0016079 GO:0016079
## GO:0070849 GO:0070849
## GO:0120163 GO:0120163
## GO:0006405 GO:0006405
## GO:0031023 GO:0031023
## GO:0030178 GO:0030178
## GO:0001662 GO:0001662
## GO:0006296 GO:0006296
## GO:0008207 GO:0008207
## GO:0014037 GO:0014037
## GO:1904892 GO:1904892
## GO:0006942 GO:0006942
## GO:0014047 GO:0014047
## GO:0006310 GO:0006310
## GO:0032409 GO:0032409
## GO:0002719 GO:0002719
## GO:0042759 GO:0042759
## GO:0044062 GO:0044062
## GO:0060561 GO:0060561
## GO:0061842 GO:0061842
## GO:0032412 GO:0032412
## GO:0006024 GO:0006024
## GO:0001658 GO:0001658
## GO:0002562 GO:0002562
## GO:0016444 GO:0016444
## GO:0030593 GO:0030593
## GO:0051785 GO:0051785
## GO:0098656 GO:0098656
## GO:0021953 GO:0021953
## GO:0044783 GO:0044783
## GO:0002831 GO:0002831
## GO:0035065 GO:0035065
## GO:1900024 GO:1900024
## GO:0001776 GO:0001776
## GO:0051781 GO:0051781
## GO:0032259 GO:0032259
## GO:0008154 GO:0008154
## GO:0050805 GO:0050805
## GO:0060415 GO:0060415
## GO:0007193 GO:0007193
## GO:1990266 GO:1990266
## GO:0042107 GO:0042107
## GO:0046632 GO:0046632
## GO:0048525 GO:0048525
## GO:0070301 GO:0070301
## GO:0006805 GO:0006805
## GO:0045017 GO:0045017
## GO:0050810 GO:0050810
## GO:0120034 GO:0120034
## GO:0019320 GO:0019320
## GO:0031663 GO:0031663
## GO:0032615 GO:0032615
## GO:0048008 GO:0048008
## GO:0034754 GO:0034754
## GO:0006984 GO:0006984
## GO:0048538 GO:0048538
## GO:0060324 GO:0060324
## GO:0090199 GO:0090199
## GO:0120032 GO:0120032
## GO:0098693 GO:0098693
## GO:1901184 GO:1901184
## GO:0045333 GO:0045333
## GO:0003158 GO:0003158
## GO:0019218 GO:0019218
## GO:0034767 GO:0034767
## GO:0042417 GO:0042417
## GO:0050892 GO:0050892
## GO:0090184 GO:0090184
## GO:1901985 GO:1901985
## GO:1903146 GO:1903146
## GO:0007215 GO:0007215
## GO:1903902 GO:1903902
## GO:0071482 GO:0071482
## GO:0006575 GO:0006575
## GO:0008380 GO:0008380
## GO:0000079 GO:0000079
## GO:0042089 GO:0042089
## GO:0031571 GO:0031571
## GO:0044819 GO:0044819
## GO:0055008 GO:0055008
## GO:0008211 GO:0008211
## GO:0030325 GO:0030325
## GO:0051642 GO:0051642
## GO:0097581 GO:0097581
## GO:0043244 GO:0043244
## GO:0099175 GO:0099175
## GO:0032418 GO:0032418
## GO:1903052 GO:1903052
## GO:0048194 GO:0048194
## GO:0050771 GO:0050771
## GO:0030500 GO:0030500
## GO:0031670 GO:0031670
## GO:0043507 GO:0043507
## GO:0002821 GO:0002821
## GO:0048709 GO:0048709
## GO:0032609 GO:0032609
## GO:0002828 GO:0002828
## GO:0034694 GO:0034694
## GO:0060491 GO:0060491
## GO:0046634 GO:0046634
## GO:0097755 GO:0097755
## GO:0002820 GO:0002820
## GO:0022602 GO:0022602
## GO:0045839 GO:0045839
## GO:2000379 GO:2000379
## GO:0006094 GO:0006094
## GO:0032602 GO:0032602
## GO:2000177 GO:2000177
## GO:0070527 GO:0070527
## GO:0032946 GO:0032946
## GO:0048489 GO:0048489
## GO:0097480 GO:0097480
## GO:0006023 GO:0006023
## GO:0000082 GO:0000082
## GO:0007618 GO:0007618
## GO:0061028 GO:0061028
## GO:0071470 GO:0071470
## GO:1902893 GO:1902893
## GO:2000273 GO:2000273
## GO:0016925 GO:0016925
## GO:0022617 GO:0022617
## GO:0045913 GO:0045913
## GO:0030865 GO:0030865
## GO:0045070 GO:0045070
## GO:2000310 GO:2000310
## GO:0038034 GO:0038034
## GO:0097192 GO:0097192
## GO:0060675 GO:0060675
## GO:0090114 GO:0090114
## GO:0015698 GO:0015698
## GO:0006612 GO:0006612
## GO:0051261 GO:0051261
## GO:0010970 GO:0010970
## GO:0099111 GO:0099111
## GO:0035272 GO:0035272
## GO:0050678 GO:0050678
## GO:0002824 GO:0002824
## GO:0001841 GO:0001841
## GO:2001237 GO:2001237
## GO:0043506 GO:0043506
## GO:0050671 GO:0050671
## GO:1901657 GO:1901657
## GO:0032655 GO:0032655
## GO:0050819 GO:0050819
## GO:0045682 GO:0045682
## GO:0002888 GO:0002888
## GO:0006101 GO:0006101
## GO:0006294 GO:0006294
## GO:0033006 GO:0033006
## GO:0045980 GO:0045980
## GO:0071480 GO:0071480
## GO:0097327 GO:0097327
## GO:0002437 GO:0002437
## GO:0048483 GO:0048483
## GO:1900274 GO:1900274
## GO:0002429 GO:0002429
## GO:0072431 GO:0072431
## GO:1902400 GO:1902400
## GO:0006892 GO:0006892
## GO:0007601 GO:0007601
## GO:0055001 GO:0055001
## GO:0014013 GO:0014013
## GO:0043627 GO:0043627
## GO:0033627 GO:0033627
## GO:0014020 GO:0014020
## GO:0006446 GO:0006446
## GO:0031146 GO:0031146
## GO:1900006 GO:1900006
## GO:0014823 GO:0014823
## GO:0097194 GO:0097194
## GO:0030049 GO:0030049
## GO:0033003 GO:0033003
## GO:0033275 GO:0033275
## GO:1904591 GO:1904591
## GO:0055002 GO:0055002
## GO:0007435 GO:0007435
## GO:0045777 GO:0045777
## GO:2000249 GO:2000249
## GO:0002286 GO:0002286
## GO:0002761 GO:0002761
## GO:0032648 GO:0032648
## GO:0043392 GO:0043392
## GO:0044273 GO:0044273
## GO:0045840 GO:0045840
## GO:0048546 GO:0048546
## GO:0061647 GO:0061647
## GO:1903727 GO:1903727
## GO:0043414 GO:0043414
## GO:0006626 GO:0006626
## GO:0042058 GO:0042058
## GO:0061326 GO:0061326
## GO:0010508 GO:0010508
## GO:0051784 GO:0051784
## GO:0060350 GO:0060350
## GO:0006865 GO:0006865
## GO:0030509 GO:0030509
## GO:0070665 GO:0070665
## GO:0000715 GO:0000715
## GO:0035584 GO:0035584
## GO:0035813 GO:0035813
## GO:0042359 GO:0042359
## GO:0043302 GO:0043302
## GO:0098810 GO:0098810
## GO:0010927 GO:0010927
## GO:0006977 GO:0006977
## GO:0071398 GO:0071398
## GO:0006775 GO:0006775
## GO:0010828 GO:0010828
## GO:0060443 GO:0060443
## GO:0071364 GO:0071364
## GO:0035148 GO:0035148
## GO:0035019 GO:0035019
## GO:0043462 GO:0043462
## GO:0034968 GO:0034968
## GO:0032024 GO:0032024
## GO:0043647 GO:0043647
## GO:0086003 GO:0086003
## GO:0001910 GO:0001910
## GO:0008209 GO:0008209
## GO:0050869 GO:0050869
## GO:0052312 GO:0052312
## GO:0060765 GO:0060765
## GO:0070306 GO:0070306
## GO:1900543 GO:1900543
## GO:0045931 GO:0045931
## GO:1904029 GO:1904029
## GO:0007631 GO:0007631
## GO:0016482 GO:0016482
## GO:0034250 GO:0034250
## GO:0006284 GO:0006284
## GO:0042769 GO:0042769
## GO:0051985 GO:0051985
## GO:0010507 GO:0010507
## GO:0006397 GO:0006397
## GO:0045815 GO:0045815
## GO:0045912 GO:0045912
## GO:0061383 GO:0061383
## GO:0072698 GO:0072698
## GO:0009062 GO:0009062
## GO:0030316 GO:0030316
## GO:2001243 GO:2001243
## GO:0050953 GO:0050953
## GO:0001913 GO:0001913
## GO:0002756 GO:0002756
## GO:0006409 GO:0006409
## GO:0010039 GO:0010039
## GO:0042554 GO:0042554
## GO:0051031 GO:0051031
## GO:0071431 GO:0071431
## GO:0006029 GO:0006029
## GO:0006476 GO:0006476
## GO:0032642 GO:0032642
## GO:0045639 GO:0045639
## GO:0006584 GO:0006584
## GO:0009712 GO:0009712
## GO:2000677 GO:2000677
## GO:0019751 GO:0019751
## GO:1902904 GO:1902904
## GO:0002312 GO:0002312
## GO:0060998 GO:0060998
## GO:1901879 GO:1901879
## GO:1901983 GO:1901983
## GO:0000422 GO:0000422
## GO:0016445 GO:0016445
## GO:0042982 GO:0042982
## GO:0060997 GO:0060997
## GO:0061726 GO:0061726
## GO:0006901 GO:0006901
## GO:0010812 GO:0010812
## GO:0051705 GO:0051705
## GO:0072171 GO:0072171
## GO:0061097 GO:0061097
## GO:0007519 GO:0007519
## GO:0033013 GO:0033013
## GO:0072413 GO:0072413
## GO:1902402 GO:1902402
## GO:1902403 GO:1902403
## GO:0051262 GO:0051262
## GO:0010863 GO:0010863
## GO:0021983 GO:0021983
## GO:0032456 GO:0032456
## GO:0050954 GO:0050954
## GO:0032373 GO:0032373
## GO:0032376 GO:0032376
## GO:0032928 GO:0032928
## GO:0035455 GO:0035455
## GO:0035743 GO:0035743
## GO:0072010 GO:0072010
## GO:0072080 GO:0072080
## GO:1903076 GO:1903076
## GO:0044843 GO:0044843
## GO:0006099 GO:0006099
## GO:0009651 GO:0009651
## GO:0032201 GO:0032201
## GO:0043304 GO:0043304
## GO:0043921 GO:0043921
## GO:0052472 GO:0052472
## GO:0072378 GO:0072378
## GO:1903008 GO:1903008
## GO:0031638 GO:0031638
## GO:0060986 GO:0060986
## GO:0030212 GO:0030212
## GO:0030574 GO:0030574
## GO:0033046 GO:0033046
## GO:0034405 GO:0034405
## GO:0042307 GO:0042307
## GO:0051932 GO:0051932
## GO:2000648 GO:2000648
## GO:0007498 GO:0007498
## GO:0072175 GO:0072175
## GO:0006903 GO:0006903
## GO:0006406 GO:0006406
## GO:0050905 GO:0050905
## GO:0062014 GO:0062014
## GO:0071427 GO:0071427
## GO:1903038 GO:1903038
## GO:0030041 GO:0030041
## GO:0009116 GO:0009116
## GO:0030104 GO:0030104
## GO:0055072 GO:0055072
## GO:0086001 GO:0086001
## GO:0022900 GO:0022900
## GO:0060538 GO:0060538
## GO:0001975 GO:0001975
## GO:0071276 GO:0071276
## GO:0031343 GO:0031343
## GO:0044380 GO:0044380
## GO:0048199 GO:0048199
## GO:0060193 GO:0060193
## GO:0042475 GO:0042475
## GO:0061035 GO:0061035
## GO:0032091 GO:0032091
## GO:0006643 GO:0006643
## GO:0001541 GO:0001541
## GO:0061025 GO:0061025
## GO:0043966 GO:0043966
## GO:0071384 GO:0071384
## GO:0055117 GO:0055117
## GO:0009101 GO:0009101
## GO:0008631 GO:0008631
## GO:0010677 GO:0010677
## GO:0050432 GO:0050432
## GO:0098659 GO:0098659
## GO:0099587 GO:0099587
## GO:0010906 GO:0010906
## GO:0003197 GO:0003197
## GO:0033628 GO:0033628
## GO:0046850 GO:0046850
## GO:0090287 GO:0090287
## GO:0007620 GO:0007620
## GO:0097734 GO:0097734
## GO:0002053 GO:0002053
## GO:0019934 GO:0019934
## GO:0048668 GO:0048668
## GO:0071624 GO:0071624
## GO:1903579 GO:1903579
## GO:0006007 GO:0006007
## GO:0006734 GO:0006734
## GO:0009187 GO:0009187
## GO:0010742 GO:0010742
## GO:0031076 GO:0031076
## GO:0033144 GO:0033144
## GO:0070670 GO:0070670
## GO:0086091 GO:0086091
## GO:0090077 GO:0090077
## GO:0090218 GO:0090218
## GO:0097064 GO:0097064
## GO:1900026 GO:1900026
## GO:0006767 GO:0006767
## GO:1904064 GO:1904064
## GO:0050795 GO:0050795
## GO:0071103 GO:0071103
## GO:0031396 GO:0031396
## GO:0007595 GO:0007595
## GO:0031529 GO:0031529
## GO:0043113 GO:0043113
## GO:1903793 GO:1903793
## GO:0048207 GO:0048207
## GO:0048208 GO:0048208
## GO:0071242 GO:0071242
## GO:1904888 GO:1904888
## GO:0000041 GO:0000041
## GO:0043473 GO:0043473
## GO:0015872 GO:0015872
## GO:0030866 GO:0030866
## GO:0045920 GO:0045920
## GO:0051955 GO:0051955
## GO:1903393 GO:1903393
## GO:1905508 GO:1905508
## GO:0003170 GO:0003170
## GO:0031646 GO:0031646
## GO:0046888 GO:0046888
## GO:2001023 GO:2001023
## GO:0033047 GO:0033047
## GO:0035418 GO:0035418
## GO:1901606 GO:1901606
## GO:0045446 GO:0045446
## GO:0055076 GO:0055076
## GO:0006814 GO:0006814
## GO:0014015 GO:0014015
## GO:0002823 GO:0002823
## GO:0019835 GO:0019835
## GO:0031279 GO:0031279
## GO:0042987 GO:0042987
## GO:0050435 GO:0050435
## GO:0071824 GO:0071824
## GO:1903409 GO:1903409
## GO:0001676 GO:0001676
## GO:0007030 GO:0007030
## GO:0007189 GO:0007189
## GO:0043624 GO:0043624
## GO:0018107 GO:0018107
## GO:0035335 GO:0035335
## GO:0048661 GO:0048661
## GO:0007586 GO:0007586
## GO:0009581 GO:0009581
## GO:0035710 GO:0035710
## GO:0051225 GO:0051225
## GO:0071230 GO:0071230
## GO:0006361 GO:0006361
## GO:0007257 GO:0007257
## GO:0033048 GO:0033048
## GO:0045740 GO:0045740
## GO:0060416 GO:0060416
## GO:0090322 GO:0090322
## GO:0110111 GO:0110111
## GO:0007622 GO:0007622
## GO:0010171 GO:0010171
## GO:0060389 GO:0060389
## GO:0021885 GO:0021885
## GO:0050766 GO:0050766
## GO:0003179 GO:0003179
## GO:0007632 GO:0007632
## GO:0051353 GO:0051353
## GO:0090307 GO:0090307
## GO:0031294 GO:0031294
## GO:0009582 GO:0009582
## GO:0045667 GO:0045667
## GO:1903322 GO:1903322
## GO:0006706 GO:0006706
## GO:0042730 GO:0042730
## GO:0048596 GO:0048596
## GO:0050901 GO:0050901
## GO:0051894 GO:0051894
## GO:0070897 GO:0070897
## GO:1900739 GO:1900739
## GO:1900740 GO:1900740
## GO:0001843 GO:0001843
## GO:1903725 GO:1903725
## GO:0016126 GO:0016126
## GO:0048678 GO:0048678
## GO:0002577 GO:0002577
## GO:0002726 GO:0002726
## GO:0009713 GO:0009713
## GO:0031280 GO:0031280
## GO:0033189 GO:0033189
## GO:0042423 GO:0042423
## GO:0051580 GO:0051580
## GO:0071731 GO:0071731
## GO:1902170 GO:1902170
## GO:1990182 GO:1990182
## GO:0009303 GO:0009303
## GO:0010543 GO:0010543
## GO:0010743 GO:0010743
## GO:0010862 GO:0010862
## GO:0032743 GO:0032743
## GO:0060603 GO:0060603
## GO:0061082 GO:0061082
## GO:0071539 GO:0071539
## GO:0090022 GO:0090022
## GO:2000142 GO:2000142
## GO:0032649 GO:0032649
## GO:0060840 GO:0060840
## GO:2000060 GO:2000060
## GO:0000096 GO:0000096
## GO:0050433 GO:0050433
## GO:0035303 GO:0035303
## GO:0000723 GO:0000723
## GO:0006665 GO:0006665
## GO:0033866 GO:0033866
## GO:0034030 GO:0034030
## GO:0034033 GO:0034033
## GO:0045669 GO:0045669
## GO:0042035 GO:0042035
## GO:0043242 GO:0043242
## GO:0046637 GO:0046637
## GO:0003044 GO:0003044
## GO:0035094 GO:0035094
## GO:0051602 GO:0051602
## GO:0097028 GO:0097028
## GO:0060759 GO:0060759
## GO:0001838 GO:0001838
## GO:0032272 GO:0032272
## GO:0034394 GO:0034394
## GO:1903901 GO:1903901
## GO:0031113 GO:0031113
## GO:0044764 GO:0044764
## GO:0046638 GO:0046638
## GO:0048168 GO:0048168
## GO:0048512 GO:0048512
## GO:0021675 GO:0021675
## GO:0043367 GO:0043367
## GO:0002381 GO:0002381
## GO:0031295 GO:0031295
## GO:0001837 GO:0001837
## GO:0002712 GO:0002712
## GO:0002889 GO:0002889
## GO:0030239 GO:0030239
## GO:0072132 GO:0072132
## GO:1901607 GO:1901607
## GO:0009452 GO:0009452
## GO:0014072 GO:0014072
## GO:0021955 GO:0021955
## GO:0036260 GO:0036260
## GO:0043276 GO:0043276
## GO:0043278 GO:0043278
## GO:0048566 GO:0048566
## GO:0060428 GO:0060428
## GO:0072595 GO:0072595
## GO:1901030 GO:1901030
## GO:1902622 GO:1902622
## GO:0032755 GO:0032755
## GO:0051702 GO:0051702
## GO:0006855 GO:0006855
## GO:1904427 GO:1904427
## GO:0035265 GO:0035265
## GO:0072089 GO:0072089
## GO:0002407 GO:0002407
## GO:0003181 GO:0003181
## GO:0009299 GO:0009299
## GO:0035812 GO:0035812
## GO:0050687 GO:0050687
## GO:0090023 GO:0090023
## GO:0008543 GO:0008543
## GO:1904035 GO:1904035
## GO:0000083 GO:0000083
## GO:0001844 GO:0001844
## GO:0010737 GO:0010737
## GO:0014044 GO:0014044
## GO:0035666 GO:0035666
## GO:0060993 GO:0060993
## GO:0030809 GO:0030809
## GO:0035994 GO:0035994
## GO:0051023 GO:0051023
## GO:0072311 GO:0072311
## GO:1900372 GO:1900372
## GO:1902644 GO:1902644
## GO:0002707 GO:0002707
## GO:0033280 GO:0033280
## GO:0051931 GO:0051931
## GO:0016197 GO:0016197
## GO:0007605 GO:0007605
## GO:0002637 GO:0002637
## GO:0007585 GO:0007585
## GO:0035249 GO:0035249
## GO:0043550 GO:0043550
## GO:2001244 GO:2001244
## GO:0000018 GO:0000018
## GO:2001057 GO:2001057
## GO:0017158 GO:0017158
## GO:0050848 GO:0050848
## GO:0010324 GO:0010324
## GO:0008652 GO:0008652
## GO:0051881 GO:0051881
## GO:0042088 GO:0042088
## GO:0002763 GO:0002763
## GO:0071385 GO:0071385
## GO:0099132 GO:0099132
## GO:0042471 GO:0042471
## GO:0021695 GO:0021695
## GO:0045687 GO:0045687
## GO:0048806 GO:0048806
## GO:1904036 GO:1904036
## GO:2000107 GO:2000107
## GO:0008347 GO:0008347
## GO:0032608 GO:0032608
## GO:0035176 GO:0035176
## GO:0051703 GO:0051703
## GO:0051966 GO:0051966
## GO:0055081 GO:0055081
## GO:0070671 GO:0070671
## GO:2000179 GO:2000179
## GO:0030004 GO:0030004
## GO:0032637 GO:0032637
## GO:1903363 GO:1903363
## GO:0006353 GO:0006353
## GO:0070509 GO:0070509
## GO:0035601 GO:0035601
## GO:0060606 GO:0060606
## GO:0007041 GO:0007041
## GO:0048640 GO:0048640
## GO:0006370 GO:0006370
## GO:0032094 GO:0032094
## GO:0042339 GO:0042339
## GO:0043516 GO:0043516
## GO:0071353 GO:0071353
## GO:1902100 GO:1902100
## GO:1905819 GO:1905819
## GO:0030832 GO:0030832
## GO:0007059 GO:0007059
## GO:0006801 GO:0006801
## GO:0003281 GO:0003281
## GO:0006809 GO:0006809
## GO:0006885 GO:0006885
## GO:1902803 GO:1902803
## GO:0051053 GO:0051053
## GO:0000375 GO:0000375
## GO:0002753 GO:0002753
## GO:0043388 GO:0043388
## GO:0015908 GO:0015908
## GO:0042102 GO:0042102
## GO:0001945 GO:0001945
## GO:0006297 GO:0006297
## GO:0010288 GO:0010288
## GO:0010758 GO:0010758
## GO:0031114 GO:0031114
## GO:0071526 GO:0071526
## GO:0072215 GO:0072215
## GO:0034698 GO:0034698
## GO:0039694 GO:0039694
## GO:0040001 GO:0040001
## GO:0044550 GO:0044550
## GO:0045737 GO:0045737
## GO:0048384 GO:0048384
## GO:0051294 GO:0051294
## GO:0061615 GO:0061615
## GO:0061620 GO:0061620
## GO:0001990 GO:0001990
## GO:0006778 GO:0006778
## GO:0045124 GO:0045124
## GO:0046326 GO:0046326
## GO:0051567 GO:0051567
## GO:0051590 GO:0051590
## GO:0051930 GO:0051930
## GO:1905314 GO:1905314
## GO:1901222 GO:1901222
## GO:0006695 GO:0006695
## GO:1902653 GO:1902653
## GO:0001959 GO:0001959
## GO:0035023 GO:0035023
## GO:0022029 GO:0022029
## GO:0030888 GO:0030888
## GO:1902041 GO:1902041
## GO:0042509 GO:0042509
## GO:0061333 GO:0061333
## GO:0072028 GO:0072028
## GO:0008064 GO:0008064
## GO:0014003 GO:0014003
## GO:0019048 GO:0019048
## GO:0031641 GO:0031641
## GO:1903580 GO:1903580
## GO:0035384 GO:0035384
## GO:0071616 GO:0071616
## GO:0045727 GO:0045727
## GO:1901800 GO:1901800
## GO:0006704 GO:0006704
## GO:0007194 GO:0007194
## GO:0010224 GO:0010224
## GO:0017085 GO:0017085
## GO:0032930 GO:0032930
## GO:0043923 GO:0043923
## GO:0055003 GO:0055003
## GO:0061318 GO:0061318
## GO:0072112 GO:0072112
## GO:2000811 GO:2000811
## GO:2001267 GO:2001267
## GO:0009064 GO:0009064
## GO:0050891 GO:0050891
## GO:0061515 GO:0061515
## GO:0016447 GO:0016447
## GO:0045981 GO:0045981
## GO:0050879 GO:0050879
## GO:0050881 GO:0050881
## GO:0071349 GO:0071349
## GO:1900544 GO:1900544
## GO:0006998 GO:0006998
## GO:0035987 GO:0035987
## GO:0042551 GO:0042551
## GO:0045058 GO:0045058
## GO:0043409 GO:0043409
## GO:0050729 GO:0050729
## GO:0007260 GO:0007260
## GO:0031112 GO:0031112
## GO:0032228 GO:0032228
## GO:0033028 GO:0033028
## GO:0043552 GO:0043552
## GO:0045745 GO:0045745
## GO:0045841 GO:0045841
## GO:0046688 GO:0046688
## GO:0060317 GO:0060317
## GO:0061384 GO:0061384
## GO:0071295 GO:0071295
## GO:0097421 GO:0097421
## GO:2000816 GO:2000816
## GO:2001171 GO:2001171
## GO:0002294 GO:0002294
## GO:2000300 GO:2000300
## GO:0007569 GO:0007569
## GO:0005976 GO:0005976
## GO:1902106 GO:1902106
## GO:0010827 GO:0010827
## GO:0051279 GO:0051279
## GO:0033619 GO:0033619
## GO:0061098 GO:0061098
## GO:0086002 GO:0086002
## GO:1900449 GO:1900449
## GO:1901880 GO:1901880
## GO:0003091 GO:0003091
## GO:0008038 GO:0008038
## GO:0033762 GO:0033762
## GO:0046825 GO:0046825
## GO:0050982 GO:0050982
## GO:2000516 GO:2000516
## GO:0018210 GO:0018210
## GO:0007004 GO:0007004
## GO:0002026 GO:0002026
## GO:0003148 GO:0003148
## GO:0006735 GO:0006735
## GO:0009112 GO:0009112
## GO:0009261 GO:0009261
## GO:0035116 GO:0035116
## GO:0035883 GO:0035883
## GO:0035902 GO:0035902
## GO:0036475 GO:0036475
## GO:0045761 GO:0045761
## GO:0045907 GO:0045907
## GO:0046885 GO:0046885
## GO:0060512 GO:0060512
## GO:0061621 GO:0061621
## GO:0061718 GO:0061718
## GO:1902624 GO:1902624
## GO:2000171 GO:2000171
## GO:0048747 GO:0048747
## GO:0097345 GO:0097345
## GO:1901799 GO:1901799
## GO:0000717 GO:0000717
## GO:0006582 GO:0006582
## GO:0030318 GO:0030318
## GO:0034695 GO:0034695
## GO:0035809 GO:0035809
## GO:0048305 GO:0048305
## GO:0048799 GO:0048799
## GO:0051195 GO:0051195
## GO:0051654 GO:0051654
## GO:0060390 GO:0060390
## GO:0060444 GO:0060444
## GO:0071378 GO:0071378
## GO:1903306 GO:1903306
## GO:0001912 GO:0001912
## GO:0006509 GO:0006509
## GO:0030810 GO:0030810
## GO:0033574 GO:0033574
## GO:0051281 GO:0051281
## GO:1900373 GO:1900373
## GO:0031050 GO:0031050
## GO:0044003 GO:0044003
## GO:0070918 GO:0070918
## GO:0071825 GO:0071825
## GO:1905268 GO:1905268
## GO:0002548 GO:0002548
## GO:0021795 GO:0021795
## GO:0035196 GO:0035196
## GO:0048701 GO:0048701
## GO:0060393 GO:0060393
## GO:0071827 GO:0071827
## GO:0042472 GO:0042472
## GO:0007006 GO:0007006
## GO:0018022 GO:0018022
## GO:0046209 GO:0046209
## GO:0061053 GO:0061053
## GO:0030101 GO:0030101
## GO:0050854 GO:0050854
## GO:0140029 GO:0140029
## GO:0098732 GO:0098732
## GO:1904950 GO:1904950
## GO:0000377 GO:0000377
## GO:0000398 GO:0000398
## GO:0043484 GO:0043484
## GO:0033045 GO:0033045
## GO:1902476 GO:1902476
## GO:0045071 GO:0045071
## GO:0070059 GO:0070059
## GO:1901616 GO:1901616
## GO:0002830 GO:0002830
## GO:0010875 GO:0010875
## GO:0010919 GO:0010919
## GO:0019372 GO:0019372
## GO:0022616 GO:0022616
## GO:0030214 GO:0030214
## GO:0031958 GO:0031958
## GO:0034116 GO:0034116
## GO:0042448 GO:0042448
## GO:0044849 GO:0044849
## GO:0051482 GO:0051482
## GO:0071732 GO:0071732
## GO:0071871 GO:0071871
## GO:0097067 GO:0097067
## GO:1903541 GO:1903541
## GO:2001170 GO:2001170
## GO:0034644 GO:0034644
## GO:0051851 GO:0051851
## GO:0072088 GO:0072088
## GO:0006363 GO:0006363
## GO:0007099 GO:0007099
## GO:0030431 GO:0030431
## GO:0030513 GO:0030513
## GO:0051204 GO:0051204
## GO:0051385 GO:0051385
## GO:1901019 GO:1901019
## GO:0032722 GO:0032722
## GO:0043255 GO:0043255
## GO:0032613 GO:0032613
## GO:0032781 GO:0032781
## GO:0072384 GO:0072384
## GO:0001893 GO:0001893
## GO:0003203 GO:0003203
## GO:0007528 GO:0007528
## GO:0021587 GO:0021587
## GO:0035137 GO:0035137
## GO:0048246 GO:0048246
## GO:0071312 GO:0071312
## GO:1901998 GO:1901998
## GO:0002204 GO:0002204
## GO:0002208 GO:0002208
## GO:0007091 GO:0007091
## GO:0008542 GO:0008542
## GO:0009066 GO:0009066
## GO:0010965 GO:0010965
## GO:0035722 GO:0035722
## GO:0045190 GO:0045190
## GO:0030501 GO:0030501
## GO:0038179 GO:0038179
## GO:0045823 GO:0045823
## GO:0009409 GO:0009409
## GO:0042771 GO:0042771
## GO:0045103 GO:0045103
## GO:1901028 GO:1901028
## GO:1902373 GO:1902373
## GO:0035304 GO:0035304
## GO:0003171 GO:0003171
## GO:0006700 GO:0006700
## GO:0006779 GO:0006779
## GO:0007205 GO:0007205
## GO:0007263 GO:0007263
## GO:0009154 GO:0009154
## GO:0022011 GO:0022011
## GO:0032292 GO:0032292
## GO:0032967 GO:0032967
## GO:0034114 GO:0034114
## GO:0039528 GO:0039528
## GO:0050820 GO:0050820
## GO:0060142 GO:0060142
## GO:0060706 GO:0060706
## GO:0061437 GO:0061437
## GO:0061440 GO:0061440
## GO:0070168 GO:0070168
## GO:0070911 GO:0070911
## GO:0072202 GO:0072202
## GO:1902175 GO:1902175
## GO:1903203 GO:1903203
## GO:1904353 GO:1904353
## GO:0090130 GO:0090130
## GO:1903312 GO:1903312
## GO:0098661 GO:0098661
## GO:0006293 GO:0006293
## GO:0006295 GO:0006295
## GO:0007026 GO:0007026
## GO:0015813 GO:0015813
## GO:0019228 GO:0019228
## GO:0032469 GO:0032469
## GO:0035162 GO:0035162
## GO:0042438 GO:0042438
## GO:0043090 GO:0043090
## GO:0046827 GO:0046827
## GO:0048485 GO:0048485
## GO:0060396 GO:0060396
## GO:0060479 GO:0060479
## GO:0071379 GO:0071379
## GO:0042093 GO:0042093
## GO:0051057 GO:0051057
## GO:0046916 GO:0046916
## GO:1905897 GO:1905897
## GO:0006338 GO:0006338
## GO:0006813 GO:0006813
## GO:0006909 GO:0006909
## GO:0010823 GO:0010823
## GO:0046173 GO:0046173
## GO:1904645 GO:1904645
## GO:0032635 GO:0032635
## GO:0007034 GO:0007034
## GO:0001569 GO:0001569
## GO:0006362 GO:0006362
## GO:0007094 GO:0007094
## GO:0031572 GO:0031572
## GO:0031577 GO:0031577
## GO:0032728 GO:0032728
## GO:0046596 GO:0046596
## GO:0071173 GO:0071173
## GO:0071174 GO:0071174
## GO:0090659 GO:0090659
## GO:1902895 GO:1902895
## GO:0071901 GO:0071901
## GO:0043666 GO:0043666
## GO:0002028 GO:0002028
## GO:0002532 GO:0002532
## GO:0006081 GO:0006081
## GO:2001021 GO:2001021
## GO:0007602 GO:0007602
## GO:0010718 GO:0010718
## GO:0060425 GO:0060425
## GO:0099024 GO:0099024
## GO:1901861 GO:1901861
## GO:0010566 GO:0010566
## GO:0030812 GO:0030812
## GO:0033540 GO:0033540
## GO:0035815 GO:0035815
## GO:0042362 GO:0042362
## GO:0042535 GO:0042535
## GO:0042921 GO:0042921
## GO:0042994 GO:0042994
## GO:0043518 GO:0043518
## GO:0044406 GO:0044406
## GO:0046184 GO:0046184
## GO:0051198 GO:0051198
## GO:0051883 GO:0051883
## GO:1903543 GO:1903543
## GO:2000369 GO:2000369
## GO:0002287 GO:0002287
## GO:0002293 GO:0002293
## GO:0016575 GO:0016575
## GO:0030032 GO:0030032
## GO:0042733 GO:0042733
## GO:0048645 GO:0048645
## GO:0070988 GO:0070988
## GO:1904377 GO:1904377
## GO:0032273 GO:0032273
## GO:0032330 GO:0032330
## GO:0032480 GO:0032480
## GO:0032757 GO:0032757
## GO:0070169 GO:0070169
## GO:0018149 GO:0018149
## GO:0032148 GO:0032148
## GO:0032435 GO:0032435
## GO:0032735 GO:0032735
## GO:0035088 GO:0035088
## GO:0061245 GO:0061245
## GO:0071392 GO:0071392
## GO:0002792 GO:0002792
## GO:0030833 GO:0030833
## GO:0009119 GO:0009119
## GO:0032731 GO:0032731
## GO:0045104 GO:0045104
## GO:0051489 GO:0051489
## GO:0060999 GO:0060999
## GO:1900271 GO:1900271
## GO:0072091 GO:0072091
## GO:0032350 GO:0032350
## GO:0043331 GO:0043331
## GO:0072583 GO:0072583
## GO:0034502 GO:0034502
## GO:2000106 GO:2000106
## GO:0072078 GO:0072078
## GO:1903509 GO:1903509
## GO:0006879 GO:0006879
## GO:0035904 GO:0035904
## GO:0045604 GO:0045604
## GO:0006821 GO:0006821
## GO:2001022 GO:2001022
## GO:0001702 GO:0001702
## GO:0002068 GO:0002068
## GO:0003071 GO:0003071
## GO:0003309 GO:0003309
## GO:0009065 GO:0009065
## GO:0010460 GO:0010460
## GO:0030194 GO:0030194
## GO:0032104 GO:0032104
## GO:0032107 GO:0032107
## GO:0032616 GO:0032616
## GO:0060740 GO:0060740
## GO:0090025 GO:0090025
## GO:1900048 GO:1900048
## GO:0006282 GO:0006282
## GO:1903828 GO:1903828
## GO:0051224 GO:0051224
## GO:0019915 GO:0019915
## GO:0034308 GO:0034308
## GO:0034637 GO:0034637
## GO:1903036 GO:1903036
## GO:0010634 GO:0010634
## GO:0003323 GO:0003323
## GO:0014046 GO:0014046
## GO:0014059 GO:0014059
## GO:0030878 GO:0030878
## GO:0042053 GO:0042053
## GO:0042069 GO:0042069
## GO:0045821 GO:0045821
## GO:0046823 GO:0046823
## GO:0060231 GO:0060231
## GO:0060487 GO:0060487
## GO:0060713 GO:0060713
## GO:0071636 GO:0071636
## GO:0098743 GO:0098743
## GO:0044784 GO:0044784
## GO:0051306 GO:0051306
## GO:0043271 GO:0043271
## GO:0002260 GO:0002260
## GO:0006940 GO:0006940
## GO:0010676 GO:0010676
## GO:0006664 GO:0006664
## GO:0006929 GO:0006929
## GO:0021602 GO:0021602
## GO:0034205 GO:0034205
## GO:0048873 GO:0048873
## GO:0072606 GO:0072606
## GO:0000910 GO:0000910
## GO:0042531 GO:0042531
## GO:0050918 GO:0050918
## GO:0070227 GO:0070227
## GO:1903051 GO:1903051
## GO:2001257 GO:2001257
## GO:0032570 GO:0032570
## GO:0043039 GO:0043039
## GO:0001709 GO:0001709
## GO:0007080 GO:0007080
## GO:0031057 GO:0031057
## GO:0048066 GO:0048066
## GO:0050873 GO:0050873
## GO:0051653 GO:0051653
## GO:0090224 GO:0090224
## GO:0032892 GO:0032892
## GO:0097242 GO:0097242
## GO:1901186 GO:1901186
## GO:1902742 GO:1902742
## GO:0007416 GO:0007416
## GO:0086065 GO:0086065
## GO:0044091 GO:0044091
## GO:0045684 GO:0045684
## GO:0048488 GO:0048488
## GO:0060236 GO:0060236
## GO:0072665 GO:0072665
## GO:0140238 GO:0140238
## GO:0033002 GO:0033002
## GO:0033865 GO:0033865
## GO:0033875 GO:0033875
## GO:0034032 GO:0034032
## GO:0045685 GO:0045685
## GO:0002523 GO:0002523
## GO:0006837 GO:0006837
## GO:0014857 GO:0014857
## GO:0019883 GO:0019883
## GO:0030207 GO:0030207
## GO:0030889 GO:0030889
## GO:0033151 GO:0033151
## GO:0035810 GO:0035810
## GO:0042033 GO:0042033
## GO:0042447 GO:0042447
## GO:0045064 GO:0045064
## GO:0046068 GO:0046068
## GO:0048569 GO:0048569
## GO:0050755 GO:0050755
## GO:0050862 GO:0050862
## GO:0060732 GO:0060732
## GO:0070669 GO:0070669
## GO:0070672 GO:0070672
## GO:0072216 GO:0072216
## GO:0099509 GO:0099509
## GO:2001212 GO:2001212
## GO:0048016 GO:0048016
## GO:1905818 GO:1905818
## GO:0022404 GO:0022404
## GO:0022405 GO:0022405
## GO:0043648 GO:0043648
## GO:0072676 GO:0072676
## GO:0090132 GO:0090132
## GO:0000132 GO:0000132
## GO:0001914 GO:0001914
## GO:0010640 GO:0010640
## GO:0032528 GO:0032528
## GO:0032897 GO:0032897
## GO:0032958 GO:0032958
## GO:0033081 GO:0033081
## GO:0046639 GO:0046639
## GO:0060343 GO:0060343
## GO:0072012 GO:0072012
## GO:2000209 GO:2000209
## GO:0010631 GO:0010631
## GO:0016202 GO:0016202
## GO:0010921 GO:0010921
## GO:0043433 GO:0043433
## GO:0090303 GO:0090303
## GO:0120193 GO:0120193
## GO:2000514 GO:2000514
## GO:0002686 GO:0002686
## GO:0032653 GO:0032653
## GO:0045933 GO:0045933
## GO:1903307 GO:1903307
## GO:0031398 GO:0031398
## GO:0048332 GO:0048332
## GO:0050688 GO:0050688
## GO:0002292 GO:0002292
## GO:0016239 GO:0016239
## GO:1900076 GO:1900076
## GO:0048259 GO:0048259
## GO:1903825 GO:1903825
## GO:1905039 GO:1905039
## GO:0030071 GO:0030071
## GO:0046164 GO:0046164
## GO:0051205 GO:0051205
## GO:0072523 GO:0072523
## GO:1903214 GO:1903214
## GO:0001502 GO:0001502
## GO:0002544 GO:0002544
## GO:0010738 GO:0010738
## GO:0032495 GO:0032495
## GO:0034104 GO:0034104
## GO:0034643 GO:0034643
## GO:0045061 GO:0045061
## GO:0046599 GO:0046599
## GO:0047497 GO:0047497
## GO:0048670 GO:0048670
## GO:0050860 GO:0050860
## GO:0051546 GO:0051546
## GO:0060716 GO:0060716
## GO:0070987 GO:0070987
## GO:0089718 GO:0089718
## GO:0090201 GO:0090201
## GO:1902074 GO:1902074
## GO:0006112 GO:0006112
## GO:0002066 GO:0002066
## GO:0031102 GO:0031102
## GO:0051310 GO:0051310
## GO:0120192 GO:0120192
## GO:0098813 GO:0098813
## GO:0001964 GO:0001964
## GO:0006482 GO:0006482
## GO:0006972 GO:0006972
## GO:0007628 GO:0007628
## GO:0008214 GO:0008214
## GO:0010165 GO:0010165
## GO:0018146 GO:0018146
## GO:0021884 GO:0021884
## GO:0031116 GO:0031116
## GO:0032770 GO:0032770
## GO:0033032 GO:0033032
## GO:0034367 GO:0034367
## GO:0034368 GO:0034368
## GO:0034369 GO:0034369
## GO:0042634 GO:0042634
## GO:0048265 GO:0048265
## GO:0060292 GO:0060292
## GO:0085029 GO:0085029
## GO:0090200 GO:0090200
## GO:1902932 GO:1902932
## GO:0008037 GO:0008037
## GO:0048844 GO:0048844
## GO:0001756 GO:0001756
## GO:0032729 GO:0032729
## GO:0003176 GO:0003176
## GO:0006356 GO:0006356
## GO:0016486 GO:0016486
## GO:0046685 GO:0046685
## GO:0060674 GO:0060674
## GO:0086019 GO:0086019
## GO:1904031 GO:1904031
## GO:0015682 GO:0015682
## GO:0033572 GO:0033572
## GO:0043114 GO:0043114
## GO:0045911 GO:0045911
## GO:0046636 GO:0046636
## GO:0051293 GO:0051293
## GO:0051973 GO:0051973
## GO:0072512 GO:0072512
## GO:0090313 GO:0090313
## GO:1905332 GO:1905332
## GO:0006383 GO:0006383
## GO:0021545 GO:0021545
## GO:0045744 GO:0045744
## GO:0046579 GO:0046579
## GO:0051058 GO:0051058
## GO:0035051 GO:0035051
## GO:1901568 GO:1901568
## GO:0042303 GO:0042303
## GO:0042633 GO:0042633
## GO:0010951 GO:0010951
## GO:0001708 GO:0001708
## GO:0010833 GO:0010833
## GO:0032204 GO:0032204
## GO:0032677 GO:0032677
## GO:0006687 GO:0006687
## GO:0030858 GO:0030858
## GO:0006953 GO:0006953
## GO:0043370 GO:0043370
## GO:0051291 GO:0051291
## GO:0070972 GO:0070972
## GO:0017015 GO:0017015
## GO:0036473 GO:0036473
## GO:0006119 GO:0006119
## GO:0006458 GO:0006458
## GO:0007413 GO:0007413
## GO:0007530 GO:0007530
## GO:0009404 GO:0009404
## GO:0032703 GO:0032703
## GO:0050926 GO:0050926
## GO:0051570 GO:0051570
## GO:0060143 GO:0060143
## GO:0060445 GO:0060445
## GO:0071157 GO:0071157
## GO:0071677 GO:0071677
## GO:0106030 GO:0106030
## GO:0006206 GO:0006206
## GO:0006705 GO:0006705
## GO:0006883 GO:0006883
## GO:0007320 GO:0007320
## GO:0007494 GO:0007494
## GO:0008212 GO:0008212
## GO:0009635 GO:0009635
## GO:0009650 GO:0009650
## GO:0010745 GO:0010745
## GO:0014842 GO:0014842
## GO:0020027 GO:0020027
## GO:0032530 GO:0032530
## GO:0032536 GO:0032536
## GO:0033008 GO:0033008
## GO:0033127 GO:0033127
## GO:0034374 GO:0034374
## GO:0035723 GO:0035723
## GO:0035745 GO:0035745
## GO:0042790 GO:0042790
## GO:0043306 GO:0043306
## GO:0045073 GO:0045073
## GO:0045820 GO:0045820
## GO:0047484 GO:0047484
## GO:0048291 GO:0048291
## GO:0048308 GO:0048308
## GO:0048313 GO:0048313
## GO:0051938 GO:0051938
## GO:0060347 GO:0060347
## GO:0060397 GO:0060397
## GO:0071350 GO:0071350
## GO:0071352 GO:0071352
## GO:0071872 GO:0071872
## GO:0097152 GO:0097152
## GO:1901836 GO:1901836
## GO:1902894 GO:1902894
## GO:0051341 GO:0051341
## GO:0046605 GO:0046605
## GO:0070830 GO:0070830
## GO:1903078 GO:1903078
## GO:0050850 GO:0050850
## GO:0051339 GO:0051339
## GO:1904646 GO:1904646
## GO:0048634 GO:0048634
## GO:0032436 GO:0032436
## GO:0019217 GO:0019217
## GO:0001942 GO:0001942
## GO:0035773 GO:0035773
## GO:2000243 GO:2000243
## GO:0050709 GO:0050709
## GO:0006720 GO:0006720
## GO:0006195 GO:0006195
## GO:0021575 GO:0021575
## GO:0030204 GO:0030204
## GO:0032784 GO:0032784
## GO:0071548 GO:0071548
## GO:2000008 GO:2000008
## GO:0055013 GO:0055013
## GO:0033559 GO:0033559
## GO:0001958 GO:0001958
## GO:0003081 GO:0003081
## GO:0006298 GO:0006298
## GO:0010714 GO:0010714
## GO:0036075 GO:0036075
## GO:0036336 GO:0036336
## GO:0050858 GO:0050858
## GO:1901661 GO:1901661
## GO:2000191 GO:2000191
## GO:2001025 GO:2001025
## GO:0044264 GO:0044264
## GO:1900407 GO:1900407
## GO:0000731 GO:0000731
## GO:0001706 GO:0001706
## GO:0002931 GO:0002931
## GO:0014009 GO:0014009
## GO:0036465 GO:0036465
## GO:0045540 GO:0045540
## GO:0086009 GO:0086009
## GO:0106118 GO:0106118
## GO:1905517 GO:1905517
## GO:0007157 GO:0007157
## GO:0007603 GO:0007603
## GO:0050775 GO:0050775
## GO:0060323 GO:0060323
## GO:0061077 GO:0061077
## GO:0071402 GO:0071402
## GO:0001779 GO:0001779
## GO:0007221 GO:0007221
## GO:0007271 GO:0007271
## GO:0007597 GO:0007597
## GO:0009309 GO:0009309
## GO:0010107 GO:0010107
## GO:0010888 GO:0010888
## GO:0032288 GO:0032288
## GO:0033005 GO:0033005
## GO:0034063 GO:0034063
## GO:0036303 GO:0036303
## GO:0042789 GO:0042789
## GO:0044320 GO:0044320
## GO:0046641 GO:0046641
## GO:0060749 GO:0060749
## GO:0061377 GO:0061377
## GO:0070633 GO:0070633
## GO:0070932 GO:0070932
## GO:0070977 GO:0070977
## GO:0071371 GO:0071371
## GO:1901739 GO:1901739
## GO:1902176 GO:1902176
## GO:0045742 GO:0045742
## GO:0061036 GO:0061036
## GO:1901976 GO:1901976
## GO:1902230 GO:1902230
## GO:0001707 GO:0001707
## GO:0019674 GO:0019674
## GO:0043407 GO:0043407
## GO:0015909 GO:0015909
## GO:0015914 GO:0015914
## GO:0031060 GO:0031060
## GO:0045670 GO:0045670
## GO:0046128 GO:0046128
## GO:1905710 GO:1905710
## GO:2000378 GO:2000378
## GO:0007009 GO:0007009
## GO:1903844 GO:1903844
## GO:0043038 GO:0043038
## GO:0061912 GO:0061912
## GO:1902099 GO:1902099
## GO:0045637 GO:0045637
## GO:0048284 GO:0048284
## GO:0055006 GO:0055006
## GO:0090559 GO:0090559
## GO:0031123 GO:0031123
## GO:1904659 GO:1904659
## GO:0032675 GO:0032675
## GO:0042278 GO:0042278
## GO:0000768 GO:0000768
## GO:0030166 GO:0030166
## GO:0032210 GO:0032210
## GO:0043551 GO:0043551
## GO:0050994 GO:0050994
## GO:0140253 GO:0140253
## GO:0046324 GO:0046324
## GO:2000401 GO:2000401
## GO:0035725 GO:0035725
## GO:0006418 GO:0006418
## GO:0009069 GO:0009069
## GO:0009311 GO:0009311
## GO:0017001 GO:0017001
## GO:0045429 GO:0045429
## GO:0050654 GO:0050654
## GO:0061001 GO:0061001
## GO:0006541 GO:0006541
## GO:0006783 GO:0006783
## GO:0009110 GO:0009110
## GO:0010226 GO:0010226
## GO:0030813 GO:0030813
## GO:0031342 GO:0031342
## GO:0031639 GO:0031639
## GO:0032634 GO:0032634
## GO:0032656 GO:0032656
## GO:0042094 GO:0042094
## GO:0044321 GO:0044321
## GO:0048714 GO:0048714
## GO:0050927 GO:0050927
## GO:0051197 GO:0051197
## GO:0051220 GO:0051220
## GO:0051350 GO:0051350
## GO:0051457 GO:0051457
## GO:0072643 GO:0072643
## GO:0140112 GO:0140112
## GO:1901522 GO:1901522
## GO:1903429 GO:1903429
## GO:0050871 GO:0050871
## GO:0007223 GO:0007223
## GO:0007520 GO:0007520
## GO:0042149 GO:0042149
## GO:0043277 GO:0043277
## GO:0071867 GO:0071867
## GO:0071869 GO:0071869
## GO:0097178 GO:0097178
## GO:0048260 GO:0048260
## GO:0090102 GO:0090102
## GO:0009798 GO:0009798
## GO:0043297 GO:0043297
## GO:0090181 GO:0090181
## GO:0006826 GO:0006826
## GO:0007019 GO:0007019
## GO:0010259 GO:0010259
## GO:0032212 GO:0032212
## GO:0071868 GO:0071868
## GO:0071870 GO:0071870
## GO:1901385 GO:1901385
## GO:2000403 GO:2000403
## GO:0002507 GO:0002507
## GO:0002691 GO:0002691
## GO:0016577 GO:0016577
## GO:0033598 GO:0033598
## GO:0042044 GO:0042044
## GO:0060037 GO:0060037
## GO:0060351 GO:0060351
## GO:0061217 GO:0061217
## GO:0071377 GO:0071377
## GO:0086010 GO:0086010
## GO:0098868 GO:0098868
## GO:0006613 GO:0006613
## GO:0000460 GO:0000460
## GO:0002468 GO:0002468
## GO:0002517 GO:0002517
## GO:0002566 GO:0002566
## GO:0003084 GO:0003084
## GO:0006491 GO:0006491
## GO:0019374 GO:0019374
## GO:0031115 GO:0031115
## GO:0032252 GO:0032252
## GO:0033197 GO:0033197
## GO:0033605 GO:0033605
## GO:0034309 GO:0034309
## GO:0036005 GO:0036005
## GO:0036006 GO:0036006
## GO:0038110 GO:0038110
## GO:0042340 GO:0042340
## GO:0042368 GO:0042368
## GO:0042416 GO:0042416
## GO:0043301 GO:0043301
## GO:0044650 GO:0044650
## GO:0045472 GO:0045472
## GO:0046112 GO:0046112
## GO:0048302 GO:0048302
## GO:0051481 GO:0051481
## GO:0051608 GO:0051608
## GO:0051873 GO:0051873
## GO:0060391 GO:0060391
## GO:0060442 GO:0060442
## GO:0060900 GO:0060900
## GO:0070486 GO:0070486
## GO:0070493 GO:0070493
## GO:0071472 GO:0071472
## GO:0097284 GO:0097284
## GO:0098712 GO:0098712
## GO:0099640 GO:0099640
## GO:1902337 GO:1902337
## GO:2001053 GO:2001053
## GO:0006471 GO:0006471
## GO:0007202 GO:0007202
## GO:0016056 GO:0016056
## GO:0019098 GO:0019098
## GO:0042168 GO:0042168
## GO:0043372 GO:0043372
## GO:0045197 GO:0045197
## GO:0050690 GO:0050690
## GO:0060325 GO:0060325
## GO:0060338 GO:0060338
## GO:0090314 GO:0090314
## GO:1902991 GO:1902991
## GO:1904837 GO:1904837
## GO:1903779 GO:1903779
## GO:0032465 GO:0032465
## GO:0001974 GO:0001974
## GO:0002833 GO:0002833
## GO:0030199 GO:0030199
## GO:0046580 GO:0046580
## GO:0060412 GO:0060412
## GO:0072604 GO:0072604
## GO:0042116 GO:0042116
## GO:0006906 GO:0006906
## GO:0003198 GO:0003198
## GO:0009067 GO:0009067
## GO:0030540 GO:0030540
## GO:0031000 GO:0031000
## GO:0033145 GO:0033145
## GO:0034375 GO:0034375
## GO:0036270 GO:0036270
## GO:0042401 GO:0042401
## GO:0045187 GO:0045187
## GO:0051788 GO:0051788
## GO:0051957 GO:0051957
## GO:0060438 GO:0060438
## GO:0060644 GO:0060644
## GO:0061298 GO:0061298
## GO:0061323 GO:0061323
## GO:0071280 GO:0071280
## GO:0072673 GO:0072673
## GO:1990573 GO:1990573
## GO:2000136 GO:2000136
## GO:2000831 GO:2000831
## GO:0021879 GO:0021879
## GO:0043954 GO:0043954
## GO:1901185 GO:1901185
## GO:0042267 GO:0042267
## GO:0046530 GO:0046530
## GO:0072678 GO:0072678
## GO:0007033 GO:0007033
## GO:0002639 GO:0002639
## GO:0014002 GO:0014002
## GO:0033173 GO:0033173
## GO:0072210 GO:0072210
## GO:1903053 GO:1903053
## GO:2000404 GO:2000404
## GO:0031124 GO:0031124
## GO:0002181 GO:0002181
## GO:0002460 GO:0002460
## GO:0055007 GO:0055007
## GO:0035794 GO:0035794
## GO:0048857 GO:0048857
## GO:0048659 GO:0048659
## GO:0031103 GO:0031103
## GO:0034656 GO:0034656
## GO:0051972 GO:0051972
## GO:0006949 GO:0006949
## GO:0070936 GO:0070936
## GO:0098586 GO:0098586
## GO:0098900 GO:0098900
## GO:0002714 GO:0002714
## GO:0002891 GO:0002891
## GO:0003009 GO:0003009
## GO:0043029 GO:0043029
## GO:0045214 GO:0045214
## GO:0048278 GO:0048278
## GO:1904358 GO:1904358
## GO:1905898 GO:1905898
## GO:0000724 GO:0000724
## GO:0032411 GO:0032411
## GO:0045047 GO:0045047
## GO:0050000 GO:0050000
## GO:0051303 GO:0051303
## GO:0000423 GO:0000423
## GO:0002089 GO:0002089
## GO:0003177 GO:0003177
## GO:0015721 GO:0015721
## GO:0030728 GO:0030728
## GO:0032674 GO:0032674
## GO:0034204 GO:0034204
## GO:0035024 GO:0035024
## GO:0036344 GO:0036344
## GO:0036499 GO:0036499
## GO:0039531 GO:0039531
## GO:0042454 GO:0042454
## GO:0045332 GO:0045332
## GO:0050802 GO:0050802
## GO:0051589 GO:0051589
## GO:0055093 GO:0055093
## GO:0060260 GO:0060260
## GO:0071711 GO:0071711
## GO:0072111 GO:0072111
## GO:1902667 GO:1902667
## GO:1903055 GO:1903055
## GO:2000144 GO:2000144
## GO:0065004 GO:0065004
## GO:0003338 GO:0003338
## GO:0006084 GO:0006084
## GO:0006308 GO:0006308
## GO:0007616 GO:0007616
## GO:0009225 GO:0009225
## GO:0043928 GO:0043928
## GO:0048011 GO:0048011
## GO:0055094 GO:0055094
## GO:0098751 GO:0098751
## GO:1901797 GO:1901797
## GO:2000352 GO:2000352
## GO:0030641 GO:0030641
## GO:0045428 GO:0045428
## GO:0010043 GO:0010043
## GO:0097720 GO:0097720
## GO:0032200 GO:0032200
## GO:0030520 GO:0030520
## GO:0046626 GO:0046626
## GO:0046847 GO:0046847
## GO:0010575 GO:0010575
## GO:0021696 GO:0021696
## GO:0033014 GO:0033014
## GO:0043457 GO:0043457
## GO:0070528 GO:0070528
## GO:0070536 GO:0070536
## GO:0071549 GO:0071549
## GO:2000036 GO:2000036
## GO:2000778 GO:2000778
## GO:0060271 GO:0060271
## GO:0001963 GO:0001963
## GO:0006517 GO:0006517
## GO:0014829 GO:0014829
## GO:0035640 GO:0035640
## GO:0048169 GO:0048169
## GO:0060669 GO:0060669
## GO:0070076 GO:0070076
## GO:0097066 GO:0097066
## GO:2000482 GO:2000482
## GO:0032206 GO:0032206
## GO:0045620 GO:0045620
## GO:0046323 GO:0046323
## GO:0002449 GO:0002449
## GO:1905952 GO:1905952
## GO:0033146 GO:0033146
## GO:0043403 GO:0043403
## GO:0048286 GO:0048286
## GO:0051453 GO:0051453
## GO:0007018 GO:0007018
## GO:0030510 GO:0030510
## GO:0046889 GO:0046889
## GO:0015748 GO:0015748
## GO:0001821 GO:0001821
## GO:0001867 GO:0001867
## GO:0002483 GO:0002483
## GO:0002604 GO:0002604
## GO:0002923 GO:0002923
## GO:0003093 GO:0003093
## GO:0003157 GO:0003157
## GO:0006681 GO:0006681
## GO:0006702 GO:0006702
## GO:0007100 GO:0007100
## GO:0007216 GO:0007216
## GO:0009071 GO:0009071
## GO:0009437 GO:0009437
## GO:0009950 GO:0009950
## GO:0010623 GO:0010623
## GO:0016446 GO:0016446
## GO:0019042 GO:0019042
## GO:0019371 GO:0019371
## GO:0021534 GO:0021534
## GO:0031581 GO:0031581
## GO:0031915 GO:0031915
## GO:0032276 GO:0032276
## GO:0032351 GO:0032351
## GO:0032494 GO:0032494
## GO:0032908 GO:0032908
## GO:0033089 GO:0033089
## GO:0033860 GO:0033860
## GO:0034776 GO:0034776
## GO:0035404 GO:0035404
## GO:0035457 GO:0035457
## GO:0039532 GO:0039532
## GO:0042501 GO:0042501
## GO:0043247 GO:0043247
## GO:0045059 GO:0045059
## GO:0045628 GO:0045628
## GO:0046886 GO:0046886
## GO:0050667 GO:0050667
## GO:0051024 GO:0051024
## GO:0051573 GO:0051573
## GO:0060433 GO:0060433
## GO:0061307 GO:0061307
## GO:0061308 GO:0061308
## GO:0070278 GO:0070278
## GO:0070471 GO:0070471
## GO:0070757 GO:0070757
## GO:0071679 GO:0071679
## GO:0072310 GO:0072310
## GO:0072611 GO:0072611
## GO:0090042 GO:0090042
## GO:0090085 GO:0090085
## GO:0099566 GO:0099566
## GO:1904263 GO:1904263
## GO:1905383 GO:1905383
## GO:2000551 GO:2000551
## GO:2000615 GO:2000615
## GO:2001241 GO:2001241
## GO:2001269 GO:2001269
## GO:0090174 GO:0090174
## GO:0006636 GO:0006636
## GO:0002832 GO:0002832
## GO:0006301 GO:0006301
## GO:0042059 GO:0042059
## GO:0045646 GO:0045646
## GO:1903115 GO:1903115
## GO:2000059 GO:2000059
## GO:0001780 GO:0001780
## GO:0001916 GO:0001916
## GO:0001977 GO:0001977
## GO:0002076 GO:0002076
## GO:0006086 GO:0006086
## GO:0006555 GO:0006555
## GO:0010934 GO:0010934
## GO:0015919 GO:0015919
## GO:0030033 GO:0030033
## GO:0030252 GO:0030252
## GO:0031643 GO:0031643
## GO:0032354 GO:0032354
## GO:0032695 GO:0032695
## GO:0033033 GO:0033033
## GO:0035459 GO:0035459
## GO:0035970 GO:0035970
## GO:0045623 GO:0045623
## GO:0048385 GO:0048385
## GO:0050774 GO:0050774
## GO:0055075 GO:0055075
## GO:0055119 GO:0055119
## GO:0061548 GO:0061548
## GO:0070293 GO:0070293
## GO:0072224 GO:0072224
## GO:0090493 GO:0090493
## GO:0099010 GO:0099010
## GO:0099170 GO:0099170
## GO:2000251 GO:2000251
## GO:0048660 GO:0048660
## GO:0034219 GO:0034219
## GO:0003156 GO:0003156
## GO:0010573 GO:0010573
## GO:0048255 GO:0048255
## GO:1905521 GO:1905521
## GO:0006278 GO:0006278
## GO:0042246 GO:0042246
## GO:0098773 GO:0098773
## GO:0090305 GO:0090305
## GO:0006614 GO:0006614
## GO:0038093 GO:0038093
## GO:0010466 GO:0010466
## GO:0045824 GO:0045824
## GO:0010883 GO:0010883
## GO:0034198 GO:0034198
## GO:0043616 GO:0043616
## GO:1902743 GO:1902743
## GO:1904407 GO:1904407
## GO:2001239 GO:2001239
## GO:0007190 GO:0007190
## GO:0030261 GO:0030261
## GO:0032633 GO:0032633
## GO:0032733 GO:0032733
## GO:0040018 GO:0040018
## GO:0043368 GO:0043368
## GO:0046949 GO:0046949
## GO:0050931 GO:0050931
## GO:0061462 GO:0061462
## GO:0071709 GO:0071709
## GO:1903955 GO:1903955
## GO:0030901 GO:0030901
## GO:0045851 GO:0045851
## GO:0099072 GO:0099072
## GO:0006721 GO:0006721
## GO:0045995 GO:0045995
## GO:0045598 GO:0045598
## GO:0000725 GO:0000725
## GO:0002052 GO:0002052
## GO:0002320 GO:0002320
## GO:0002374 GO:0002374
## GO:0009081 GO:0009081
## GO:0009083 GO:0009083
## GO:0015874 GO:0015874
## GO:0030220 GO:0030220
## GO:0031498 GO:0031498
## GO:0032727 GO:0032727
## GO:0032816 GO:0032816
## GO:0032986 GO:0032986
## GO:0033630 GO:0033630
## GO:0035357 GO:0035357
## GO:0035929 GO:0035929
## GO:0039529 GO:0039529
## GO:0043371 GO:0043371
## GO:0043984 GO:0043984
## GO:0051797 GO:0051797
## GO:0061162 GO:0061162
## GO:0070584 GO:0070584
## GO:0086014 GO:0086014
## GO:0086026 GO:0086026
## GO:0086066 GO:0086066
## GO:0097062 GO:0097062
## GO:0098780 GO:0098780
## GO:1903204 GO:1903204
## GO:1903599 GO:1903599
## GO:0006637 GO:0006637
## GO:0035383 GO:0035383
## GO:0051983 GO:0051983
## GO:0000305 GO:0000305
## GO:0000737 GO:0000737
## GO:0001773 GO:0001773
## GO:0003180 GO:0003180
## GO:0030511 GO:0030511
## GO:0032607 GO:0032607
## GO:0032814 GO:0032814
## GO:0036296 GO:0036296
## GO:0042311 GO:0042311
## GO:0050974 GO:0050974
## GO:0070198 GO:0070198
## GO:1902745 GO:1902745
## GO:1903846 GO:1903846
## GO:1990776 GO:1990776
## GO:2000406 GO:2000406
## GO:0008645 GO:0008645
## GO:0072599 GO:0072599
## GO:0009880 GO:0009880
## GO:1902686 GO:1902686
## GO:0003272 GO:0003272
## GO:0006688 GO:0006688
## GO:0008210 GO:0008210
## GO:0021680 GO:0021680
## GO:0021952 GO:0021952
## GO:0022410 GO:0022410
## GO:0032800 GO:0032800
## GO:0032925 GO:0032925
## GO:0036003 GO:0036003
## GO:0045724 GO:0045724
## GO:0046697 GO:0046697
## GO:0050996 GO:0050996
## GO:0062009 GO:0062009
## GO:0070199 GO:0070199
## GO:1901889 GO:1901889
## GO:0006672 GO:0006672
## GO:0031062 GO:0031062
## GO:0042269 GO:0042269
## GO:0045616 GO:0045616
## GO:0046834 GO:0046834
## GO:0048713 GO:0048713
## GO:0090279 GO:0090279
## GO:1902229 GO:1902229
## GO:2000826 GO:2000826
## GO:0006486 GO:0006486
## GO:0043413 GO:0043413
## GO:0008593 GO:0008593
## GO:0030837 GO:0030837
## GO:0070231 GO:0070231
## GO:1990928 GO:1990928
## GO:0043500 GO:0043500
## GO:0034103 GO:0034103
## GO:1903321 GO:1903321
## GO:0002228 GO:0002228
## GO:0006487 GO:0006487
## GO:0021872 GO:0021872
## GO:0009953 GO:0009953
## GO:0031397 GO:0031397
## GO:0019076 GO:0019076
## GO:0030224 GO:0030224
## GO:0035890 GO:0035890
## GO:0035891 GO:0035891
## GO:0045622 GO:0045622
## GO:0048333 GO:0048333
## GO:0052126 GO:0052126
## GO:0052192 GO:0052192
## GO:0098534 GO:0098534
## GO:1903131 GO:1903131
## GO:0050684 GO:0050684
## GO:0000271 GO:0000271
## GO:0046620 GO:0046620
## GO:0003254 GO:0003254
## GO:0008333 GO:0008333
## GO:0060563 GO:0060563
## GO:1902369 GO:1902369
## GO:0036503 GO:0036503
## GO:0051181 GO:0051181
## GO:0051646 GO:0051646
## GO:0086004 GO:0086004
## GO:0090311 GO:0090311
## GO:0015749 GO:0015749
## GO:0072527 GO:0072527
## GO:0001946 GO:0001946
## GO:0002693 GO:0002693
## GO:0006474 GO:0006474
## GO:0006895 GO:0006895
## GO:0009415 GO:0009415
## GO:0010759 GO:0010759
## GO:0010819 GO:0010819
## GO:0014856 GO:0014856
## GO:0015732 GO:0015732
## GO:0032105 GO:0032105
## GO:0032108 GO:0032108
## GO:0032274 GO:0032274
## GO:0032352 GO:0032352
## GO:0032486 GO:0032486
## GO:0032736 GO:0032736
## GO:0034349 GO:0034349
## GO:0034616 GO:0034616
## GO:0035864 GO:0035864
## GO:0043931 GO:0043931
## GO:0044144 GO:0044144
## GO:0046629 GO:0046629
## GO:0048012 GO:0048012
## GO:0048268 GO:0048268
## GO:0051709 GO:0051709
## GO:0060134 GO:0060134
## GO:0060766 GO:0060766
## GO:0070262 GO:0070262
## GO:0071218 GO:0071218
## GO:0071380 GO:0071380
## GO:0072109 GO:0072109
## GO:0072160 GO:0072160
## GO:0090197 GO:0090197
## GO:0098840 GO:0098840
## GO:0098856 GO:0098856
## GO:0099118 GO:0099118
## GO:0099590 GO:0099590
## GO:1900119 GO:1900119
## GO:1900451 GO:1900451
## GO:1901741 GO:1901741
## GO:1905153 GO:1905153
## GO:2000484 GO:2000484
## GO:2001028 GO:2001028
## GO:0008643 GO:0008643
## GO:1902600 GO:1902600
## GO:0000281 GO:0000281
## GO:0051298 GO:0051298
## GO:0003382 GO:0003382
## GO:0006904 GO:0006904
## GO:0016601 GO:0016601
## GO:0030262 GO:0030262
## GO:0033198 GO:0033198
## GO:0035767 GO:0035767
## GO:0035774 GO:0035774
## GO:0043330 GO:0043330
## GO:0044068 GO:0044068
## GO:0045987 GO:0045987
## GO:1900077 GO:1900077
## GO:0046470 GO:0046470
## GO:0043266 GO:0043266
## GO:0000338 GO:0000338
## GO:0001553 GO:0001553
## GO:0001886 GO:0001886
## GO:0002664 GO:0002664
## GO:0002713 GO:0002713
## GO:0002887 GO:0002887
## GO:0002890 GO:0002890
## GO:0006188 GO:0006188
## GO:0006563 GO:0006563
## GO:0006596 GO:0006596
## GO:0006971 GO:0006971
## GO:0007016 GO:0007016
## GO:0009162 GO:0009162
## GO:0009263 GO:0009263
## GO:0010739 GO:0010739
## GO:0010749 GO:0010749
## GO:0019062 GO:0019062
## GO:0021548 GO:0021548
## GO:0021924 GO:0021924
## GO:0021930 GO:0021930
## GO:0021936 GO:0021936
## GO:0030647 GO:0030647
## GO:0032070 GO:0032070
## GO:0032275 GO:0032275
## GO:0032341 GO:0032341
## GO:0032342 GO:0032342
## GO:0032353 GO:0032353
## GO:0032488 GO:0032488
## GO:0035865 GO:0035865
## GO:0036376 GO:0036376
## GO:0036500 GO:0036500
## GO:0045060 GO:0045060
## GO:0045080 GO:0045080
## GO:0045647 GO:0045647
## GO:0046040 GO:0046040
## GO:0046501 GO:0046501
## GO:0048304 GO:0048304
## GO:0051583 GO:0051583
## GO:0051593 GO:0051593
## GO:0051934 GO:0051934
## GO:0060033 GO:0060033
## GO:0060068 GO:0060068
## GO:0060368 GO:0060368
## GO:0060525 GO:0060525
## GO:0060767 GO:0060767
## GO:0070099 GO:0070099
## GO:0070472 GO:0070472
## GO:0070942 GO:0070942
## GO:0071104 GO:0071104
## GO:0071803 GO:0071803
## GO:0072015 GO:0072015
## GO:0075522 GO:0075522
## GO:0086070 GO:0086070
## GO:0090030 GO:0090030
## GO:0090037 GO:0090037
## GO:0090557 GO:0090557
## GO:0097050 GO:0097050
## GO:0106049 GO:0106049
## GO:1901838 GO:1901838
## GO:1903800 GO:1903800
## GO:1904526 GO:1904526
## GO:1904779 GO:1904779
## GO:1990535 GO:1990535
## GO:2000665 GO:2000665
## GO:2001054 GO:2001054
## GO:2001214 GO:2001214
## GO:1903426 GO:1903426
## GO:0070085 GO:0070085
## GO:0006073 GO:0006073
## GO:0044042 GO:0044042
## GO:0007566 GO:0007566
## GO:0051568 GO:0051568
## GO:0000303 GO:0000303
## GO:0002183 GO:0002183
## GO:0032673 GO:0032673
## GO:0035456 GO:0035456
## GO:0042745 GO:0042745
## GO:0048520 GO:0048520
## GO:0072207 GO:0072207
## GO:1902751 GO:1902751
## GO:1905144 GO:1905144
## GO:1905145 GO:1905145
## GO:0045739 GO:0045739
## GO:0001825 GO:0001825
## GO:0086005 GO:0086005
## GO:1902042 GO:1902042
## GO:2000279 GO:2000279
## GO:0070316 GO:0070316
## GO:0002710 GO:0002710
## GO:0002827 GO:0002827
## GO:0003215 GO:0003215
## GO:0006833 GO:0006833
## GO:0007095 GO:0007095
## GO:0010544 GO:0010544
## GO:0023019 GO:0023019
## GO:0031061 GO:0031061
## GO:0032026 GO:0032026
## GO:0032069 GO:0032069
## GO:0032095 GO:0032095
## GO:0032303 GO:0032303
## GO:0032331 GO:0032331
## GO:0035728 GO:0035728
## GO:0045063 GO:0045063
## GO:0045076 GO:0045076
## GO:0046597 GO:0046597
## GO:0048486 GO:0048486
## GO:0061081 GO:0061081
## GO:0072576 GO:0072576
## GO:0090280 GO:0090280
## GO:0140131 GO:0140131
## GO:1900409 GO:1900409
## GO:1903392 GO:1903392
## GO:1903798 GO:1903798
## GO:1905939 GO:1905939
## GO:2000678 GO:2000678
## GO:2000696 GO:2000696
## GO:1903201 GO:1903201
## GO:0001919 GO:0001919
## GO:0003416 GO:0003416
## GO:0007617 GO:0007617
## GO:0009648 GO:0009648
## GO:0021801 GO:0021801
## GO:0021895 GO:0021895
## GO:0022030 GO:0022030
## GO:0030517 GO:0030517
## GO:0030539 GO:0030539
## GO:0031579 GO:0031579
## GO:0032098 GO:0032098
## GO:0032753 GO:0032753
## GO:0051882 GO:0051882
## GO:0051953 GO:0051953
## GO:0051968 GO:0051968
## GO:0071305 GO:0071305
## GO:0072243 GO:0072243
## GO:0072666 GO:0072666
## GO:0086012 GO:0086012
## GO:0090140 GO:0090140
## GO:0090189 GO:0090189
## GO:1902003 GO:1902003
## GO:0010717 GO:0010717
## GO:0030148 GO:0030148
## GO:0098754 GO:0098754
## GO:0032387 GO:0032387
## GO:0072577 GO:0072577
## GO:0035306 GO:0035306
## GO:1902882 GO:1902882
## GO:0000291 GO:0000291
## GO:0010574 GO:0010574
## GO:0035909 GO:0035909
## GO:0045730 GO:0045730
## GO:0048536 GO:0048536
## GO:0051180 GO:0051180
## GO:0060795 GO:0060795
## GO:0006749 GO:0006749
## GO:0030042 GO:0030042
## GO:0051452 GO:0051452
## GO:0090329 GO:0090329
## GO:0032414 GO:0032414
## GO:0032881 GO:0032881
## GO:0050798 GO:0050798
## GO:0051445 GO:0051445
## GO:0070317 GO:0070317
## GO:0090317 GO:0090317
## GO:0098927 GO:0098927
## GO:0015807 GO:0015807
## GO:1902110 GO:1902110
## GO:0005977 GO:0005977
## GO:0006898 GO:0006898
## GO:1902305 GO:1902305
## GO:1903707 GO:1903707
## GO:0006270 GO:0006270
## GO:0021799 GO:0021799
## GO:0046633 GO:0046633
## GO:0051491 GO:0051491
## GO:0065005 GO:0065005
## GO:0071108 GO:0071108
## GO:0090075 GO:0090075
## GO:1905476 GO:1905476
## GO:0008088 GO:0008088
## GO:1904356 GO:1904356
## GO:0046902 GO:0046902
## GO:0070373 GO:0070373
## GO:0001754 GO:0001754
## GO:0030225 GO:0030225
## GO:0042461 GO:0042461
## GO:0001941 GO:0001941
## GO:0030279 GO:0030279
## GO:2000134 GO:2000134
## GO:0001921 GO:0001921
## GO:0003214 GO:0003214
## GO:0007214 GO:0007214
## GO:0009214 GO:0009214
## GO:0010248 GO:0010248
## GO:0010820 GO:0010820
## GO:0010885 GO:0010885
## GO:0010935 GO:0010935
## GO:0014048 GO:0014048
## GO:0014841 GO:0014841
## GO:0014854 GO:0014854
## GO:0015936 GO:0015936
## GO:0019081 GO:0019081
## GO:0032310 GO:0032310
## GO:0032688 GO:0032688
## GO:0032780 GO:0032780
## GO:0035791 GO:0035791
## GO:0042976 GO:0042976
## GO:0044126 GO:0044126
## GO:0044146 GO:0044146
## GO:0045591 GO:0045591
## GO:0045651 GO:0045651
## GO:0046606 GO:0046606
## GO:0046851 GO:0046851
## GO:0051123 GO:0051123
## GO:0051547 GO:0051547
## GO:0060099 GO:0060099
## GO:0071801 GO:0071801
## GO:0072677 GO:0072677
## GO:0086069 GO:0086069
## GO:0090128 GO:0090128
## GO:0090399 GO:0090399
## GO:0090494 GO:0090494
## GO:0097202 GO:0097202
## GO:0098884 GO:0098884
## GO:0140239 GO:0140239
## GO:1900452 GO:1900452
## GO:1901386 GO:1901386
## GO:1901722 GO:1901722
## GO:1902043 GO:1902043
## GO:2000846 GO:2000846
## GO:0000380 GO:0000380
## GO:0002011 GO:0002011
## GO:0061178 GO:0061178
## GO:0046467 GO:0046467
## GO:0002360 GO:0002360
## GO:0002825 GO:0002825
## GO:0022400 GO:0022400
## GO:0030206 GO:0030206
## GO:0031645 GO:0031645
## GO:0032647 GO:0032647
## GO:0034377 GO:0034377
## GO:0043501 GO:0043501
## GO:0045992 GO:0045992
## GO:0060074 GO:0060074
## GO:0061037 GO:0061037
## GO:0072273 GO:0072273
## GO:2000679 GO:2000679
## GO:0021510 GO:0021510
## GO:0044782 GO:0044782
## GO:0006576 GO:0006576
## GO:0008206 GO:0008206
## GO:0042743 GO:0042743
## GO:0045023 GO:0045023
## GO:0090630 GO:0090630
## GO:0006309 GO:0006309
## GO:0006623 GO:0006623
## GO:0007398 GO:0007398
## GO:0019430 GO:0019430
## GO:0032682 GO:0032682
## GO:0032786 GO:0032786
## GO:0032799 GO:0032799
## GO:0033622 GO:0033622
## GO:0034067 GO:0034067
## GO:0034243 GO:0034243
## GO:0036119 GO:0036119
## GO:0042744 GO:0042744
## GO:0043496 GO:0043496
## GO:0045109 GO:0045109
## GO:0045606 GO:0045606
## GO:0046835 GO:0046835
## GO:0046856 GO:0046856
## GO:0051000 GO:0051000
## GO:0060065 GO:0060065
## GO:0061213 GO:0061213
## GO:0071359 GO:0071359
## GO:1900078 GO:1900078
## GO:2000810 GO:2000810
## GO:0006399 GO:0006399
## GO:0001911 GO:0001911
## GO:0006337 GO:0006337
## GO:0006346 GO:0006346
## GO:0007252 GO:0007252
## GO:0007549 GO:0007549
## GO:0009190 GO:0009190
## GO:0031293 GO:0031293
## GO:0032460 GO:0032460
## GO:0034471 GO:0034471
## GO:0035089 GO:0035089
## GO:0038083 GO:0038083
## GO:0039535 GO:0039535
## GO:0042276 GO:0042276
## GO:0043011 GO:0043011
## GO:0048557 GO:0048557
## GO:0051084 GO:0051084
## GO:0051895 GO:0051895
## GO:0052652 GO:0052652
## GO:0055083 GO:0055083
## GO:0072574 GO:0072574
## GO:0072575 GO:0072575
## GO:0090026 GO:0090026
## GO:0090330 GO:0090330
## GO:0000045 GO:0000045
## GO:0006921 GO:0006921
## GO:0010092 GO:0010092
## GO:0016242 GO:0016242
## GO:0031128 GO:0031128
## GO:0032801 GO:0032801
## GO:0035115 GO:0035115
## GO:0036314 GO:0036314
## GO:0042755 GO:0042755
## GO:0045191 GO:0045191
## GO:0048821 GO:0048821
## GO:0019369 GO:0019369
## GO:0019985 GO:0019985
## GO:0032924 GO:0032924
## GO:1905037 GO:1905037
## GO:0031348 GO:0031348
## GO:0032732 GO:0032732
## GO:0045661 GO:0045661
## GO:0050732 GO:0050732
## GO:0071715 GO:0071715
## GO:1901571 GO:1901571
## GO:0008608 GO:0008608
## GO:0009262 GO:0009262
## GO:0010644 GO:0010644
## GO:0045940 GO:0045940
## GO:0046627 GO:0046627
## GO:0050650 GO:0050650
## GO:0050718 GO:0050718
## GO:0060441 GO:0060441
## GO:0070723 GO:0070723
## GO:0090162 GO:0090162
## GO:1900117 GO:1900117
## GO:1903539 GO:1903539
## GO:0051604 GO:0051604
## GO:0032964 GO:0032964
## GO:0061640 GO:0061640
## GO:0002755 GO:0002755
## GO:0008156 GO:0008156
## GO:0035872 GO:0035872
## GO:0045776 GO:0045776
## GO:0048009 GO:0048009
## GO:0060251 GO:0060251
## GO:0051926 GO:0051926
## GO:1990542 GO:1990542
## GO:0032368 GO:0032368
## GO:0070534 GO:0070534
## GO:0001556 GO:0001556
## GO:0009649 GO:0009649
## GO:0031664 GO:0031664
## GO:0034110 GO:0034110
## GO:0045948 GO:0045948
## GO:0095500 GO:0095500
## GO:1900101 GO:1900101
## GO:1900120 GO:1900120
## GO:1901623 GO:1901623
## GO:1903831 GO:1903831
## GO:1904385 GO:1904385
## GO:1905809 GO:1905809
## GO:0003333 GO:0003333
## GO:0033692 GO:0033692
## GO:2000351 GO:2000351
## GO:0044275 GO:0044275
## GO:0045746 GO:0045746
## GO:0009164 GO:0009164
## GO:1902475 GO:1902475
## GO:0002679 GO:0002679
## GO:0002829 GO:0002829
## GO:0002921 GO:0002921
## GO:0003337 GO:0003337
## GO:0006000 GO:0006000
## GO:0006703 GO:0006703
## GO:0006743 GO:0006743
## GO:0009313 GO:0009313
## GO:0010642 GO:0010642
## GO:0010763 GO:0010763
## GO:0016114 GO:0016114
## GO:0021535 GO:0021535
## GO:0021692 GO:0021692
## GO:0021819 GO:0021819
## GO:0021984 GO:0021984
## GO:0030299 GO:0030299
## GO:0032096 GO:0032096
## GO:0032099 GO:0032099
## GO:0032239 GO:0032239
## GO:0032754 GO:0032754
## GO:0035020 GO:0035020
## GO:0042538 GO:0042538
## GO:0042635 GO:0042635
## GO:0043116 GO:0043116
## GO:0043252 GO:0043252
## GO:0043568 GO:0043568
## GO:0043970 GO:0043970
## GO:0044130 GO:0044130
## GO:0045086 GO:0045086
## GO:0045342 GO:0045342
## GO:0046500 GO:0046500
## GO:0050966 GO:0050966
## GO:0051085 GO:0051085
## GO:0051386 GO:0051386
## GO:0051917 GO:0051917
## GO:0060123 GO:0060123
## GO:0061029 GO:0061029
## GO:0061430 GO:0061430
## GO:0061478 GO:0061478
## GO:0071285 GO:0071285
## GO:0071415 GO:0071415
## GO:0071850 GO:0071850
## GO:0072182 GO:0072182
## GO:0090239 GO:0090239
## GO:1900025 GO:1900025
## GO:1900272 GO:1900272
## GO:1903025 GO:1903025
## GO:1903651 GO:1903651
## GO:2001044 GO:2001044
## GO:0001956 GO:0001956
## GO:0006085 GO:0006085
## GO:0006907 GO:0006907
## GO:0006925 GO:0006925
## GO:0021854 GO:0021854
## GO:0023058 GO:0023058
## GO:0031290 GO:0031290
## GO:0036120 GO:0036120
## GO:0036507 GO:0036507
## GO:0036508 GO:0036508
## GO:0042749 GO:0042749
## GO:0046058 GO:0046058
## GO:0051043 GO:0051043
## GO:0051156 GO:0051156
## GO:0051900 GO:0051900
## GO:0060008 GO:0060008
## GO:0060575 GO:0060575
## GO:0061339 GO:0061339
## GO:0070920 GO:0070920
## GO:0071498 GO:0071498
## GO:0072337 GO:0072337
## GO:0099563 GO:0099563
## GO:1901798 GO:1901798
## GO:1902884 GO:1902884
## GO:1903010 GO:1903010
## GO:1904886 GO:1904886
## GO:0002418 GO:0002418
## GO:0002643 GO:0002643
## GO:0003184 GO:0003184
## GO:0006266 GO:0006266
## GO:0006978 GO:0006978
## GO:0007213 GO:0007213
## GO:0010744 GO:0010744
## GO:0021783 GO:0021783
## GO:0030502 GO:0030502
## GO:0032740 GO:0032740
## GO:0034199 GO:0034199
## GO:0035729 GO:0035729
## GO:0035855 GO:0035855
## GO:0035988 GO:0035988
## GO:0042268 GO:0042268
## GO:0042753 GO:0042753
## GO:0044110 GO:0044110
## GO:0044116 GO:0044116
## GO:0048532 GO:0048532
## GO:0048711 GO:0048711
## GO:0051818 GO:0051818
## GO:0051969 GO:0051969
## GO:0060850 GO:0060850
## GO:0070233 GO:0070233
## GO:0090185 GO:0090185
## GO:1901524 GO:1901524
## GO:1903209 GO:1903209
## GO:1904355 GO:1904355
## GO:0006513 GO:0006513
## GO:2000242 GO:2000242
## GO:0001953 GO:0001953
## GO:0002715 GO:0002715
## GO:0018023 GO:0018023
## GO:0032309 GO:0032309
## GO:0035307 GO:0035307
## GO:0090382 GO:0090382
## GO:0099622 GO:0099622
## GO:0051304 GO:0051304
## GO:0010458 GO:0010458
## GO:0070229 GO:0070229
## GO:0090344 GO:0090344
## GO:0090383 GO:0090383
## GO:0090662 GO:0090662
## GO:0065002 GO:0065002
## GO:0070423 GO:0070423
## GO:0070884 GO:0070884
## GO:0106056 GO:0106056
## GO:0009435 GO:0009435
## GO:0035282 GO:0035282
## GO:1901570 GO:1901570
## GO:0030834 GO:0030834
## GO:0045581 GO:0045581
## GO:0050922 GO:0050922
## GO:1901068 GO:1901068
## GO:1903018 GO:1903018
## GO:0007405 GO:0007405
## GO:0030433 GO:0030433
## GO:0009451 GO:0009451
## GO:0003407 GO:0003407
## GO:0010559 GO:0010559
## GO:0032620 GO:0032620
## GO:0032941 GO:0032941
## GO:0035329 GO:0035329
## GO:0044088 GO:0044088
## GO:0045022 GO:0045022
## GO:2001222 GO:2001222
## GO:0002762 GO:0002762
## GO:0000188 GO:0000188
## GO:0002861 GO:0002861
## GO:0010971 GO:0010971
## GO:0044346 GO:0044346
## GO:0045954 GO:0045954
## GO:0060571 GO:0060571
## GO:0071450 GO:0071450
## GO:0071451 GO:0071451
## GO:1902914 GO:1902914
## GO:1903649 GO:1903649
## GO:2000178 GO:2000178
## GO:2001026 GO:2001026
## GO:0032768 GO:0032768
## GO:0000266 GO:0000266
## GO:0006369 GO:0006369
## GO:0010765 GO:0010765
## GO:0015695 GO:0015695
## GO:0035587 GO:0035587
## GO:1902186 GO:1902186
## GO:1902253 GO:1902253
## GO:0040013 GO:0040013
## GO:0045766 GO:0045766
## GO:0045599 GO:0045599
## GO:0099601 GO:0099601
## GO:0009163 GO:0009163
## GO:0010569 GO:0010569
## GO:0035136 GO:0035136
## GO:0035337 GO:0035337
## GO:0060612 GO:0060612
## GO:0090278 GO:0090278
## GO:2000649 GO:2000649
## GO:0000966 GO:0000966
## GO:0002438 GO:0002438
## GO:0006622 GO:0006622
## GO:0006817 GO:0006817
## GO:0010560 GO:0010560
## GO:0010869 GO:0010869
## GO:0014821 GO:0014821
## GO:0021697 GO:0021697
## GO:0034505 GO:0034505
## GO:0046628 GO:0046628
## GO:0048846 GO:0048846
## GO:0060602 GO:0060602
## GO:0061003 GO:0061003
## GO:0070734 GO:0070734
## GO:0072234 GO:0072234
## GO:0140058 GO:0140058
## GO:1902284 GO:1902284
## GO:1905523 GO:1905523
## GO:0060760 GO:0060760
## GO:0001938 GO:0001938
## GO:0014902 GO:0014902
## GO:1990748 GO:1990748
## GO:0034763 GO:0034763
## GO:0007212 GO:0007212
## GO:0006302 GO:0006302
## GO:0007224 GO:0007224
## GO:1903428 GO:1903428
## GO:0016574 GO:0016574
## GO:0032459 GO:0032459
## GO:0048599 GO:0048599
## GO:0071806 GO:0071806
## GO:0000098 GO:0000098
## GO:0000212 GO:0000212
## GO:0000722 GO:0000722
## GO:0001976 GO:0001976
## GO:0002371 GO:0002371
## GO:0002863 GO:0002863
## GO:0003334 GO:0003334
## GO:0006744 GO:0006744
## GO:0006999 GO:0006999
## GO:0007171 GO:0007171
## GO:0009886 GO:0009886
## GO:0010452 GO:0010452
## GO:0010457 GO:0010457
## GO:0010752 GO:0010752
## GO:0010826 GO:0010826
## GO:0014889 GO:0014889
## GO:0015812 GO:0015812
## GO:0016082 GO:0016082
## GO:0016558 GO:0016558
## GO:0032230 GO:0032230
## GO:0032905 GO:0032905
## GO:0032968 GO:0032968
## GO:0033004 GO:0033004
## GO:0034380 GO:0034380
## GO:0042308 GO:0042308
## GO:0042738 GO:0042738
## GO:0043922 GO:0043922
## GO:0045346 GO:0045346
## GO:0045410 GO:0045410
## GO:0045579 GO:0045579
## GO:0045779 GO:0045779
## GO:0046689 GO:0046689
## GO:0051299 GO:0051299
## GO:0051549 GO:0051549
## GO:0051712 GO:0051712
## GO:0051798 GO:0051798
## GO:0060081 GO:0060081
## GO:0060100 GO:0060100
## GO:0060670 GO:0060670
## GO:0060707 GO:0060707
## GO:0070307 GO:0070307
## GO:0071073 GO:0071073
## GO:0071107 GO:0071107
## GO:0071257 GO:0071257
## GO:0071340 GO:0071340
## GO:0072520 GO:0072520
## GO:0090110 GO:0090110
## GO:0097201 GO:0097201
## GO:0098885 GO:0098885
## GO:0099633 GO:0099633
## GO:0099645 GO:0099645
## GO:1901550 GO:1901550
## GO:1901663 GO:1901663
## GO:1902430 GO:1902430
## GO:1902855 GO:1902855
## GO:1902916 GO:1902916
## GO:1902950 GO:1902950
## GO:1903140 GO:1903140
## GO:1903894 GO:1903894
## GO:1904181 GO:1904181
## GO:1904590 GO:1904590
## GO:1905155 GO:1905155
## GO:0002070 GO:0002070
## GO:0002739 GO:0002739
## GO:0003222 GO:0003222
## GO:0006957 GO:0006957
## GO:0007567 GO:0007567
## GO:0008340 GO:0008340
## GO:0009048 GO:0009048
## GO:0010225 GO:0010225
## GO:0010878 GO:0010878
## GO:0016540 GO:0016540
## GO:0030397 GO:0030397
## GO:0030575 GO:0030575
## GO:0032225 GO:0032225
## GO:0032305 GO:0032305
## GO:0033262 GO:0033262
## GO:0033631 GO:0033631
## GO:0036124 GO:0036124
## GO:0039692 GO:0039692
## GO:0043217 GO:0043217
## GO:0043981 GO:0043981
## GO:0043982 GO:0043982
## GO:0044117 GO:0044117
## GO:0045683 GO:0045683
## GO:0045721 GO:0045721
## GO:0045780 GO:0045780
## GO:0046852 GO:0046852
## GO:0048243 GO:0048243
## GO:0048820 GO:0048820
## GO:0050655 GO:0050655
## GO:0051081 GO:0051081
## GO:0051131 GO:0051131
## GO:0051571 GO:0051571
## GO:0055012 GO:0055012
## GO:0060253 GO:0060253
## GO:0060413 GO:0060413
## GO:0061684 GO:0061684
## GO:0070200 GO:0070200
## GO:0070242 GO:0070242
## GO:0072176 GO:0072176
## GO:0072283 GO:0072283
## GO:0090036 GO:0090036
## GO:0097091 GO:0097091
## GO:0099116 GO:0099116
## GO:1902166 GO:1902166
## GO:2000001 GO:2000001
## GO:0001782 GO:0001782
## GO:0002063 GO:0002063
## GO:0009394 GO:0009394
## GO:0019054 GO:0019054
## GO:0033137 GO:0033137
## GO:0042273 GO:0042273
## GO:0045671 GO:0045671
## GO:0046640 GO:0046640
## GO:0051569 GO:0051569
## GO:0099131 GO:0099131
## GO:2000515 GO:2000515
## GO:0009247 GO:0009247
## GO:1904063 GO:1904063
## GO:0014911 GO:0014911
## GO:0060042 GO:0060042
## GO:0007007 GO:0007007
## GO:0046006 GO:0046006
## GO:0046461 GO:0046461
## GO:0046464 GO:0046464
## GO:0060306 GO:0060306
## GO:0097120 GO:0097120
## GO:1901021 GO:1901021
## GO:0016101 GO:0016101
## GO:0034766 GO:0034766
## GO:0014812 GO:0014812
## GO:0032873 GO:0032873
## GO:0060976 GO:0060976
## GO:0070303 GO:0070303
## GO:0022904 GO:0022904
## GO:0045454 GO:0045454
## GO:1901264 GO:1901264
## GO:0009799 GO:0009799
## GO:0003209 GO:0003209
## GO:0006739 GO:0006739
## GO:0019433 GO:0019433
## GO:0032689 GO:0032689
## GO:0046320 GO:0046320
## GO:0051194 GO:0051194
## GO:0001783 GO:0001783
## GO:0006884 GO:0006884
## GO:0010447 GO:0010447
## GO:0016578 GO:0016578
## GO:0032878 GO:0032878
## GO:0035561 GO:0035561
## GO:0042537 GO:0042537
## GO:0044818 GO:0044818
## GO:0060055 GO:0060055
## GO:0070841 GO:0070841
## GO:0072170 GO:0072170
## GO:1902254 GO:1902254
## GO:2000637 GO:2000637
## GO:0050710 GO:0050710
## GO:0046503 GO:0046503
## GO:0050853 GO:0050853
## GO:0031952 GO:0031952
## GO:0035735 GO:0035735
## GO:0035050 GO:0035050
## GO:0048024 GO:0048024
## GO:0030838 GO:0030838
## GO:0006893 GO:0006893
## GO:0010761 GO:0010761
## GO:0021762 GO:0021762
## GO:0099518 GO:0099518
## GO:0006040 GO:0006040
## GO:0010837 GO:0010837
## GO:0030947 GO:0030947
## GO:0042462 GO:0042462
## GO:0042558 GO:0042558
## GO:0070873 GO:0070873
## GO:0006690 GO:0006690
## GO:0001710 GO:0001710
## GO:0001991 GO:0001991
## GO:0002029 GO:0002029
## GO:0002689 GO:0002689
## GO:0007625 GO:0007625
## GO:0016048 GO:0016048
## GO:0022401 GO:0022401
## GO:0030859 GO:0030859
## GO:0031281 GO:0031281
## GO:0032332 GO:0032332
## GO:0032891 GO:0032891
## GO:0035338 GO:0035338
## GO:0042403 GO:0042403
## GO:0043153 GO:0043153
## GO:0051412 GO:0051412
## GO:0072074 GO:0072074
## GO:0072077 GO:0072077
## GO:0090190 GO:0090190
## GO:0090670 GO:0090670
## GO:0090671 GO:0090671
## GO:0090672 GO:0090672
## GO:0090685 GO:0090685
## GO:2000010 GO:2000010
## GO:0007292 GO:0007292
## GO:0051963 GO:0051963
## GO:0009855 GO:0009855
## GO:0006304 GO:0006304
## GO:0006638 GO:0006638
## GO:0009948 GO:0009948
## GO:0031440 GO:0031440
## GO:1900027 GO:1900027
## GO:1903959 GO:1903959
## GO:0034260 GO:0034260
## GO:0006699 GO:0006699
## GO:0032205 GO:0032205
## GO:0032885 GO:0032885
## GO:0044058 GO:0044058
## GO:0034121 GO:0034121
## GO:0009583 GO:0009583
## GO:0001829 GO:0001829
## GO:0002716 GO:0002716
## GO:0003417 GO:0003417
## GO:0006144 GO:0006144
## GO:0006577 GO:0006577
## GO:0007076 GO:0007076
## GO:0007158 GO:0007158
## GO:0007512 GO:0007512
## GO:0014061 GO:0014061
## GO:0021542 GO:0021542
## GO:0030238 GO:0030238
## GO:0031468 GO:0031468
## GO:0034310 GO:0034310
## GO:0035635 GO:0035635
## GO:0035930 GO:0035930
## GO:0042762 GO:0042762
## GO:0043101 GO:0043101
## GO:0045091 GO:0045091
## GO:0045475 GO:0045475
## GO:0045838 GO:0045838
## GO:0046321 GO:0046321
## GO:0046931 GO:0046931
## GO:0050651 GO:0050651
## GO:0050961 GO:0050961
## GO:0050965 GO:0050965
## GO:0055089 GO:0055089
## GO:0060009 GO:0060009
## GO:0071474 GO:0071474
## GO:0071599 GO:0071599
## GO:0072075 GO:0072075
## GO:0090192 GO:0090192
## GO:1901841 GO:1901841
## GO:1902001 GO:1902001
## GO:1902992 GO:1902992
## GO:1903358 GO:1903358
## GO:1905874 GO:1905874
## GO:1990000 GO:1990000
## GO:0009268 GO:0009268
## GO:0021532 GO:0021532
## GO:0030890 GO:0030890
## GO:0000027 GO:0000027
## GO:0001682 GO:0001682
## GO:0001767 GO:0001767
## GO:0001787 GO:0001787
## GO:0002638 GO:0002638
## GO:0002730 GO:0002730
## GO:0002836 GO:0002836
## GO:0002839 GO:0002839
## GO:0003174 GO:0003174
## GO:0006558 GO:0006558
## GO:0006559 GO:0006559
## GO:0006707 GO:0006707
## GO:0006991 GO:0006991
## GO:0009086 GO:0009086
## GO:0009143 GO:0009143
## GO:0010172 GO:0010172
## GO:0010755 GO:0010755
## GO:0010870 GO:0010870
## GO:0014820 GO:0014820
## GO:0014870 GO:0014870
## GO:0016127 GO:0016127
## GO:0019373 GO:0019373
## GO:0021561 GO:0021561
## GO:0021604 GO:0021604
## GO:0021610 GO:0021610
## GO:0031987 GO:0031987
## GO:0032306 GO:0032306
## GO:0032463 GO:0032463
## GO:0032957 GO:0032957
## GO:0033148 GO:0033148
## GO:0033169 GO:0033169
## GO:0033632 GO:0033632
## GO:0033700 GO:0033700
## GO:0040015 GO:0040015
## GO:0042711 GO:0042711
## GO:0042756 GO:0042756
## GO:0043383 GO:0043383
## GO:0045793 GO:0045793
## GO:0046007 GO:0046007
## GO:0046831 GO:0046831
## GO:0048875 GO:0048875
## GO:0051561 GO:0051561
## GO:0051574 GO:0051574
## GO:0055015 GO:0055015
## GO:0060174 GO:0060174
## GO:0060746 GO:0060746
## GO:0060992 GO:0060992
## GO:0061314 GO:0061314
## GO:0070106 GO:0070106
## GO:0070213 GO:0070213
## GO:0070254 GO:0070254
## GO:0070525 GO:0070525
## GO:0070673 GO:0070673
## GO:0071372 GO:0071372
## GO:0072017 GO:0072017
## GO:0072110 GO:0072110
## GO:0072321 GO:0072321
## GO:0072537 GO:0072537
## GO:0072584 GO:0072584
## GO:0090193 GO:0090193
## GO:0097048 GO:0097048
## GO:0098814 GO:0098814
## GO:0099149 GO:0099149
## GO:0099188 GO:0099188
## GO:0099624 GO:0099624
## GO:0140052 GO:0140052
## GO:1900112 GO:1900112
## GO:1902065 GO:1902065
## GO:1902221 GO:1902221
## GO:1902222 GO:1902222
## GO:1902224 GO:1902224
## GO:1904321 GO:1904321
## GO:1904322 GO:1904322
## GO:1905214 GO:1905214
## GO:1905245 GO:1905245
## GO:1905941 GO:1905941
## GO:1990440 GO:1990440
## GO:2000392 GO:2000392
## GO:2000668 GO:2000668
## GO:2001204 GO:2001204
## GO:2001223 GO:2001223
## GO:0042775 GO:0042775
## GO:0002090 GO:0002090
## GO:0003016 GO:0003016
## GO:0019692 GO:0019692
## GO:0006641 GO:0006641
## GO:0006639 GO:0006639
## GO:0051271 GO:0051271
## GO:0042490 GO:0042490
## GO:0098742 GO:0098742
## GO:0000154 GO:0000154
## GO:0008299 GO:0008299
## GO:0009235 GO:0009235
## GO:0010155 GO:0010155
## GO:0018126 GO:0018126
## GO:0045117 GO:0045117
## GO:0045624 GO:0045624
## GO:0045649 GO:0045649
## GO:0045943 GO:0045943
## GO:0046716 GO:0046716
## GO:0090312 GO:0090312
## GO:0097205 GO:0097205
## GO:1903077 GO:1903077
## GO:0015701 GO:0015701
## GO:0048247 GO:0048247
## GO:1901659 GO:1901659
## GO:0010803 GO:0010803
## GO:0048663 GO:0048663
## GO:1902108 GO:1902108
## GO:0001881 GO:0001881
## GO:0015804 GO:0015804
## GO:0018196 GO:0018196
## GO:0030851 GO:0030851
## GO:0043001 GO:0043001
## GO:0051693 GO:0051693
## GO:1902235 GO:1902235
## GO:0014014 GO:0014014
## GO:0061756 GO:0061756
## GO:0098876 GO:0098876
## GO:1902807 GO:1902807
## GO:0042073 GO:0042073
## GO:1904018 GO:1904018
## GO:0014855 GO:0014855
## GO:0060419 GO:0060419
## GO:0003230 GO:0003230
## GO:0030835 GO:0030835
## GO:0045066 GO:0045066
## GO:0045923 GO:0045923
## GO:0048710 GO:0048710
## GO:0071542 GO:0071542
## GO:1901020 GO:1901020
## GO:0050999 GO:0050999
## GO:0070228 GO:0070228
## GO:0098930 GO:0098930
## GO:0000272 GO:0000272
## GO:0002335 GO:0002335
## GO:0006730 GO:0006730
## GO:0006851 GO:0006851
## GO:0010669 GO:0010669
## GO:0010818 GO:0010818
## GO:0015991 GO:0015991
## GO:0031338 GO:0031338
## GO:0035235 GO:0035235
## GO:0045830 GO:0045830
## GO:0060330 GO:0060330
## GO:0060334 GO:0060334
## GO:0060384 GO:0060384
## GO:0099068 GO:0099068
## GO:0007250 GO:0007250
## GO:0007274 GO:0007274
## GO:0021533 GO:0021533
## GO:0032011 GO:0032011
## GO:0032012 GO:0032012
## GO:0032793 GO:0032793
## GO:0042026 GO:0042026
## GO:0042772 GO:0042772
## GO:0043555 GO:0043555
## GO:0070828 GO:0070828
## GO:0071800 GO:0071800
## GO:0090196 GO:0090196
## GO:0097094 GO:0097094
## GO:1904872 GO:1904872
## GO:2000193 GO:2000193
## GO:0042304 GO:0042304
## GO:0046513 GO:0046513
## GO:0032008 GO:0032008
## GO:0046329 GO:0046329
## GO:1901658 GO:1901658
## GO:1903523 GO:1903523
## GO:0045600 GO:0045600
## GO:0002717 GO:0002717
## GO:0042533 GO:0042533
## GO:0042534 GO:0042534
## GO:0045577 GO:0045577
## GO:0048741 GO:0048741
## GO:0043030 GO:0043030
## GO:0000381 GO:0000381
## GO:0043489 GO:0043489
## GO:0098815 GO:0098815
## GO:0032720 GO:0032720
## GO:0051865 GO:0051865
## GO:0042147 GO:0042147
## GO:2000779 GO:2000779
## GO:0030512 GO:0030512
## GO:0008033 GO:0008033
## GO:0001732 GO:0001732
## GO:0001771 GO:0001771
## GO:0002834 GO:0002834
## GO:0002837 GO:0002837
## GO:0006525 GO:0006525
## GO:0006595 GO:0006595
## GO:0006825 GO:0006825
## GO:0006910 GO:0006910
## GO:0030213 GO:0030213
## GO:0033147 GO:0033147
## GO:0034315 GO:0034315
## GO:0035067 GO:0035067
## GO:0035358 GO:0035358
## GO:0035372 GO:0035372
## GO:0035493 GO:0035493
## GO:0036295 GO:0036295
## GO:0043455 GO:0043455
## GO:0043558 GO:0043558
## GO:0043968 GO:0043968
## GO:0045198 GO:0045198
## GO:0045618 GO:0045618
## GO:0045953 GO:0045953
## GO:0046133 GO:0046133
## GO:0048148 GO:0048148
## GO:0048841 GO:0048841
## GO:0051770 GO:0051770
## GO:0051775 GO:0051775
## GO:0051852 GO:0051852
## GO:0060261 GO:0060261
## GO:0071361 GO:0071361
## GO:0072425 GO:0072425
## GO:0090141 GO:0090141
## GO:0090231 GO:0090231
## GO:0090266 GO:0090266
## GO:0099558 GO:0099558
## GO:1903504 GO:1903504
## GO:1903624 GO:1903624
## GO:1903729 GO:1903729
## GO:1904748 GO:1904748
## GO:1904923 GO:1904923
## GO:2000345 GO:2000345
## GO:0097006 GO:0097006
## GO:0042398 GO:0042398
## GO:0043268 GO:0043268
## GO:1903573 GO:1903573
## GO:0001824 GO:0001824
## GO:0098869 GO:0098869
## GO:0042773 GO:0042773
## GO:2000146 GO:2000146
## GO:0001562 GO:0001562
## GO:0003094 GO:0003094
## GO:0003283 GO:0003283
## GO:0008045 GO:0008045
## GO:0019682 GO:0019682
## GO:0022010 GO:0022010
## GO:0031935 GO:0031935
## GO:0032291 GO:0032291
## GO:0042135 GO:0042135
## GO:0042451 GO:0042451
## GO:0042776 GO:0042776
## GO:0046129 GO:0046129
## GO:0050765 GO:0050765
## GO:0050951 GO:0050951
## GO:2000114 GO:2000114
## GO:2000269 GO:2000269
## GO:0001961 GO:0001961
## GO:0033059 GO:0033059
## GO:0048641 GO:0048641
## GO:0051438 GO:0051438
## GO:0002675 GO:0002675
## GO:0010591 GO:0010591
## GO:0014904 GO:0014904
## GO:0018279 GO:0018279
## GO:0045648 GO:0045648
## GO:0048854 GO:0048854
## GO:0070570 GO:0070570
## GO:1902692 GO:1902692
## GO:0071804 GO:0071804
## GO:0071805 GO:0071805
## GO:0070741 GO:0070741
## GO:0001660 GO:0001660
## GO:0001768 GO:0001768
## GO:0002291 GO:0002291
## GO:0002645 GO:0002645
## GO:0003183 GO:0003183
## GO:0003264 GO:0003264
## GO:0006020 GO:0006020
## GO:0006527 GO:0006527
## GO:0006930 GO:0006930
## GO:0007084 GO:0007084
## GO:0007220 GO:0007220
## GO:0010918 GO:0010918
## GO:0010944 GO:0010944
## GO:0014041 GO:0014041
## GO:0014049 GO:0014049
## GO:0014877 GO:0014877
## GO:0014894 GO:0014894
## GO:0016102 GO:0016102
## GO:0016553 GO:0016553
## GO:0021877 GO:0021877
## GO:0031652 GO:0031652
## GO:0032000 GO:0032000
## GO:0032025 GO:0032025
## GO:0032308 GO:0032308
## GO:0032817 GO:0032817
## GO:0032823 GO:0032823
## GO:0032836 GO:0032836
## GO:0033210 GO:0033210
## GO:0033483 GO:0033483
## GO:0033629 GO:0033629
## GO:0034350 GO:0034350
## GO:0034378 GO:0034378
## GO:0035878 GO:0035878
## GO:0039530 GO:0039530
## GO:0042023 GO:0042023
## GO:0042178 GO:0042178
## GO:0042415 GO:0042415
## GO:0043471 GO:0043471
## GO:0044803 GO:0044803
## GO:0045351 GO:0045351
## GO:0045625 GO:0045625
## GO:0045657 GO:0045657
## GO:0045713 GO:0045713
## GO:0045792 GO:0045792
## GO:0045955 GO:0045955
## GO:0046950 GO:0046950
## GO:0048021 GO:0048021
## GO:0048245 GO:0048245
## GO:0048672 GO:0048672
## GO:0048739 GO:0048739
## GO:0048755 GO:0048755
## GO:0051409 GO:0051409
## GO:0051657 GO:0051657
## GO:0051901 GO:0051901
## GO:0051956 GO:0051956
## GO:0060346 GO:0060346
## GO:0060439 GO:0060439
## GO:0060536 GO:0060536
## GO:0060600 GO:0060600
## GO:0061140 GO:0061140
## GO:0061299 GO:0061299
## GO:0070391 GO:0070391
## GO:0070914 GO:0070914
## GO:0071223 GO:0071223
## GO:0071281 GO:0071281
## GO:0071313 GO:0071313
## GO:0071481 GO:0071481
## GO:0071501 GO:0071501
## GO:0071545 GO:0071545
## GO:0071609 GO:0071609
## GO:0071670 GO:0071670
## GO:0072124 GO:0072124
## GO:0072203 GO:0072203
## GO:0072697 GO:0072697
## GO:0090154 GO:0090154
## GO:0090309 GO:0090309
## GO:0097090 GO:0097090
## GO:0097278 GO:0097278
## GO:0097531 GO:0097531
## GO:0098883 GO:0098883
## GO:0099550 GO:0099550
## GO:0150011 GO:0150011
## GO:1901526 GO:1901526
## GO:1902805 GO:1902805
## GO:1903299 GO:1903299
## GO:1903789 GO:1903789
## GO:1904350 GO:1904350
## GO:1904896 GO:1904896
## GO:1904903 GO:1904903
## GO:2000304 GO:2000304
## GO:2000317 GO:2000317
## GO:2001135 GO:2001135
## GO:0038066 GO:0038066
## GO:0060113 GO:0060113
## GO:0000959 GO:0000959
## GO:0032660 GO:0032660
## GO:0097009 GO:0097009
## GO:0061900 GO:0061900
## GO:0022618 GO:0022618
## GO:1901862 GO:1901862
## GO:0002082 GO:0002082
## GO:0002092 GO:0002092
## GO:0021871 GO:0021871
## GO:0021904 GO:0021904
## GO:0031954 GO:0031954
## GO:0036315 GO:0036315
## GO:0042481 GO:0042481
## GO:0043951 GO:0043951
## GO:0051984 GO:0051984
## GO:0060148 GO:0060148
## GO:0086064 GO:0086064
## GO:1903020 GO:1903020
## GO:1903421 GO:1903421
## GO:1904376 GO:1904376
## GO:0003143 GO:0003143
## GO:0032467 GO:0032467
## GO:0035315 GO:0035315
## GO:0046676 GO:0046676
## GO:0055024 GO:0055024
## GO:1903556 GO:1903556
## GO:0044728 GO:0044728
## GO:0090398 GO:0090398
## GO:1903845 GO:1903845
## GO:0010824 GO:0010824
## GO:1903170 GO:1903170
## GO:0001573 GO:0001573
## GO:0006544 GO:0006544
## GO:0006891 GO:0006891
## GO:0010715 GO:0010715
## GO:0016137 GO:0016137
## GO:0030277 GO:0030277
## GO:0043651 GO:0043651
## GO:0044241 GO:0044241
## GO:0045056 GO:0045056
## GO:0048339 GO:0048339
## GO:0048535 GO:0048535
## GO:0060004 GO:0060004
## GO:0070885 GO:0070885
## GO:0071360 GO:0071360
## GO:0106057 GO:0106057
## GO:1904380 GO:1904380
## GO:1904996 GO:1904996
## GO:1905331 GO:1905331
## GO:2000641 GO:2000641
## GO:2000757 GO:2000757
## GO:0006760 GO:0006760
## GO:0031365 GO:0031365
## GO:0040020 GO:0040020
## GO:0046839 GO:0046839
## GO:0090169 GO:0090169
## GO:2000463 GO:2000463
## GO:0090288 GO:0090288
## GO:0030857 GO:0030857
## GO:0042157 GO:0042157
## GO:0009994 GO:0009994
## GO:0010712 GO:0010712
## GO:0043949 GO:0043949
## GO:0055017 GO:0055017
## GO:0072528 GO:0072528
## GO:0034314 GO:0034314
## GO:0042407 GO:0042407
## GO:1903319 GO:1903319
## GO:0001523 GO:0001523
## GO:0014909 GO:0014909
## GO:0006400 GO:0006400
## GO:0007020 GO:0007020
## GO:0009226 GO:0009226
## GO:0010592 GO:0010592
## GO:0015012 GO:0015012
## GO:0019400 GO:0019400
## GO:0033194 GO:0033194
## GO:0042474 GO:0042474
## GO:0042832 GO:0042832
## GO:0043369 GO:0043369
## GO:0043586 GO:0043586
## GO:0044331 GO:0044331
## GO:0048745 GO:0048745
## GO:0051349 GO:0051349
## GO:0051383 GO:0051383
## GO:0060216 GO:0060216
## GO:0071397 GO:0071397
## GO:0072087 GO:0072087
## GO:1902473 GO:1902473
## GO:0150076 GO:0150076
## GO:0010922 GO:0010922
## GO:0042455 GO:0042455
## GO:0043094 GO:0043094
## GO:0045589 GO:0045589
## GO:2000785 GO:2000785
## GO:0016485 GO:0016485
## GO:0001967 GO:0001967
## GO:0006089 GO:0006089
## GO:0007183 GO:0007183
## GO:0009084 GO:0009084
## GO:0009312 GO:0009312
## GO:0014819 GO:0014819
## GO:0021554 GO:0021554
## GO:0030011 GO:0030011
## GO:0030205 GO:0030205
## GO:0030656 GO:0030656
## GO:0031167 GO:0031167
## GO:0031953 GO:0031953
## GO:0032802 GO:0032802
## GO:0033604 GO:0033604
## GO:0033623 GO:0033623
## GO:0036109 GO:0036109
## GO:0042532 GO:0042532
## GO:0044090 GO:0044090
## GO:0048266 GO:0048266
## GO:0050872 GO:0050872
## GO:0051447 GO:0051447
## GO:0051645 GO:0051645
## GO:0060576 GO:0060576
## GO:0061000 GO:0061000
## GO:0062033 GO:0062033
## GO:0070208 GO:0070208
## GO:0071696 GO:0071696
## GO:0090308 GO:0090308
## GO:1900029 GO:1900029
## GO:1900103 GO:1900103
## GO:1902713 GO:1902713
## GO:1904925 GO:1904925
## GO:2000194 GO:2000194
## GO:0022412 GO:0022412
## GO:0071826 GO:0071826
## GO:0000578 GO:0000578
## GO:0043243 GO:0043243
## GO:0002347 GO:0002347
## GO:0006359 GO:0006359
## GO:0015985 GO:0015985
## GO:0015986 GO:0015986
## GO:0034123 GO:0034123
## GO:0035588 GO:0035588
## GO:0043576 GO:0043576
## GO:0044247 GO:0044247
## GO:0050857 GO:0050857
## GO:0051004 GO:0051004
## GO:0051125 GO:0051125
## GO:0071404 GO:0071404
## GO:0061512 GO:0061512
## GO:0099054 GO:0099054
## GO:0010632 GO:0010632
## GO:0051321 GO:0051321
## GO:0005978 GO:0005978
## GO:0009250 GO:0009250
## GO:0099172 GO:0099172
## GO:0061951 GO:0061951
## GO:2000045 GO:2000045
## GO:0060420 GO:0060420
## GO:1901379 GO:1901379
## GO:0006213 GO:0006213
## GO:0050885 GO:0050885
## GO:0070206 GO:0070206
## GO:0015988 GO:0015988
## GO:0030201 GO:0030201
## GO:0032196 GO:0032196
## GO:0042255 GO:0042255
## GO:0050919 GO:0050919
## GO:0072539 GO:0072539
## GO:0140115 GO:0140115
## GO:0051055 GO:0051055
## GO:0031640 GO:0031640
## GO:0044364 GO:0044364
## GO:0048635 GO:0048635
## GO:2001259 GO:2001259
## GO:0031929 GO:0031929
## GO:0000097 GO:0000097
## GO:0006590 GO:0006590
## GO:0008090 GO:0008090
## GO:0009219 GO:0009219
## GO:0018027 GO:0018027
## GO:0031649 GO:0031649
## GO:0036035 GO:0036035
## GO:0045989 GO:0045989
## GO:0046174 GO:0046174
## GO:0048070 GO:0048070
## GO:0050884 GO:0050884
## GO:0060192 GO:0060192
## GO:0060572 GO:0060572
## GO:0070886 GO:0070886
## GO:0072148 GO:0072148
## GO:0090083 GO:0090083
## GO:0106058 GO:0106058
## GO:1900242 GO:1900242
## GO:1902993 GO:1902993
## GO:0014896 GO:0014896
## GO:0003401 GO:0003401
## GO:0045822 GO:0045822
## GO:0046039 GO:0046039
## GO:0072538 GO:0072538
## GO:0097106 GO:0097106
## GO:1904292 GO:1904292
## GO:0015918 GO:0015918
## GO:0030336 GO:0030336
## GO:0021522 GO:0021522
## GO:0090504 GO:0090504
## GO:1901099 GO:1901099
## GO:2001240 GO:2001240
## GO:0045638 GO:0045638
## GO:0010762 GO:0010762
## GO:0050716 GO:0050716
## GO:0072529 GO:0072529
## GO:0090101 GO:0090101
## GO:0002313 GO:0002313
## GO:0002363 GO:0002363
## GO:0003159 GO:0003159
## GO:0006677 GO:0006677
## GO:0018195 GO:0018195
## GO:0034138 GO:0034138
## GO:0035458 GO:0035458
## GO:0043691 GO:0043691
## GO:0045663 GO:0045663
## GO:0051767 GO:0051767
## GO:0051769 GO:0051769
## GO:0060039 GO:0060039
## GO:0060252 GO:0060252
## GO:0060973 GO:0060973
## GO:0061154 GO:0061154
## GO:0071071 GO:0071071
## GO:0071243 GO:0071243
## GO:0071294 GO:0071294
## GO:1902307 GO:1902307
## GO:0006656 GO:0006656
## GO:0019068 GO:0019068
## GO:0047496 GO:0047496
## GO:1904037 GO:1904037
## GO:0006692 GO:0006692
## GO:0006693 GO:0006693
## GO:0010907 GO:0010907
## GO:0032965 GO:0032965
## GO:0050706 GO:0050706
## GO:0000288 GO:0000288
## GO:0001774 GO:0001774
## GO:0002269 GO:0002269
## GO:0007062 GO:0007062
## GO:0009584 GO:0009584
## GO:0045747 GO:0045747
## GO:0001947 GO:0001947
## GO:0006220 GO:0006220
## GO:0045843 GO:0045843
## GO:0090342 GO:0090342
## GO:0001510 GO:0001510
## GO:0014888 GO:0014888
## GO:1903202 GO:1903202
## GO:0019730 GO:0019730
## GO:0055088 GO:0055088
## GO:0001759 GO:0001759
## GO:0009068 GO:0009068
## GO:0009251 GO:0009251
## GO:0009595 GO:0009595
## GO:0015740 GO:0015740
## GO:0033233 GO:0033233
## GO:0035590 GO:0035590
## GO:0036010 GO:0036010
## GO:0044743 GO:0044743
## GO:0050995 GO:0050995
## GO:1900273 GO:1900273
## GO:1901685 GO:1901685
## GO:1901687 GO:1901687
## GO:1904666 GO:1904666
## GO:2000773 GO:2000773
## GO:0001765 GO:0001765
## GO:0002002 GO:0002002
## GO:0002003 GO:0002003
## GO:0002281 GO:0002281
## GO:0002674 GO:0002674
## GO:0003207 GO:0003207
## GO:0006068 GO:0006068
## GO:0006216 GO:0006216
## GO:0006983 GO:0006983
## GO:0007077 GO:0007077
## GO:0009972 GO:0009972
## GO:0010960 GO:0010960
## GO:0016322 GO:0016322
## GO:0021681 GO:0021681
## GO:0021794 GO:0021794
## GO:0030157 GO:0030157
## GO:0030208 GO:0030208
## GO:0031272 GO:0031272
## GO:0031650 GO:0031650
## GO:0032785 GO:0032785
## GO:0034086 GO:0034086
## GO:0034088 GO:0034088
## GO:0035641 GO:0035641
## GO:0038003 GO:0038003
## GO:0040034 GO:0040034
## GO:0043650 GO:0043650
## GO:0045161 GO:0045161
## GO:0045605 GO:0045605
## GO:0045836 GO:0045836
## GO:0045869 GO:0045869
## GO:0046087 GO:0046087
## GO:0048172 GO:0048172
## GO:0048642 GO:0048642
## GO:0048934 GO:0048934
## GO:0048935 GO:0048935
## GO:0051095 GO:0051095
## GO:0051451 GO:0051451
## GO:0051988 GO:0051988
## GO:0055062 GO:0055062
## GO:0060788 GO:0060788
## GO:0070202 GO:0070202
## GO:0070365 GO:0070365
## GO:0070586 GO:0070586
## GO:0071697 GO:0071697
## GO:0071888 GO:0071888
## GO:0072044 GO:0072044
## GO:0072178 GO:0072178
## GO:0072505 GO:0072505
## GO:0072506 GO:0072506
## GO:0086067 GO:0086067
## GO:0090151 GO:0090151
## GO:0090331 GO:0090331
## GO:0090713 GO:0090713
## GO:0099150 GO:0099150
## GO:0150052 GO:0150052
## GO:1900376 GO:1900376
## GO:1902510 GO:1902510
## GO:1902563 GO:1902563
## GO:1902656 GO:1902656
## GO:1902947 GO:1902947
## GO:1904668 GO:1904668
## GO:1904953 GO:1904953
## GO:2000052 GO:2000052
## GO:2000121 GO:2000121
## GO:2001198 GO:2001198
## GO:0045833 GO:0045833
## GO:0007176 GO:0007176
## GO:0033522 GO:0033522
## GO:0035336 GO:0035336
## GO:0045662 GO:0045662
## GO:0045672 GO:0045672
## GO:0045932 GO:0045932
## GO:0046426 GO:0046426
## GO:0051875 GO:0051875
## GO:0071514 GO:0071514
## GO:0014910 GO:0014910
## GO:0007368 GO:0007368
## GO:0032651 GO:0032651
## GO:0001516 GO:0001516
## GO:0005979 GO:0005979
## GO:0010894 GO:0010894
## GO:0010954 GO:0010954
## GO:0010962 GO:0010962
## GO:0031063 GO:0031063
## GO:0035510 GO:0035510
## GO:0046457 GO:0046457
## GO:0051443 GO:0051443
## GO:0071168 GO:0071168
## GO:0014897 GO:0014897
## GO:0035305 GO:0035305
## GO:0003300 GO:0003300
## GO:0032612 GO:0032612
## GO:0006505 GO:0006505
## GO:0006536 GO:0006536
## GO:0018198 GO:0018198
## GO:0021988 GO:0021988
## GO:0031122 GO:0031122
## GO:0044319 GO:0044319
## GO:0061311 GO:0061311
## GO:0086011 GO:0086011
## GO:0090505 GO:0090505
## GO:0099084 GO:0099084
## GO:0099625 GO:0099625
## GO:0034142 GO:0034142
## GO:0050849 GO:0050849
## GO:0097484 GO:0097484
## GO:1904030 GO:1904030
## GO:0046622 GO:0046622
## GO:0001325 GO:0001325
## GO:0001696 GO:0001696
## GO:0002031 GO:0002031
## GO:0006098 GO:0006098
## GO:0006534 GO:0006534
## GO:0007039 GO:0007039
## GO:0009070 GO:0009070
## GO:0009200 GO:0009200
## GO:0014733 GO:0014733
## GO:0014874 GO:0014874
## GO:0016180 GO:0016180
## GO:0017014 GO:0017014
## GO:0018119 GO:0018119
## GO:0019377 GO:0019377
## GO:0030852 GO:0030852
## GO:0031268 GO:0031268
## GO:0033599 GO:0033599
## GO:0034134 GO:0034134
## GO:0042074 GO:0042074
## GO:0043162 GO:0043162
## GO:0043584 GO:0043584
## GO:0048521 GO:0048521
## GO:0051044 GO:0051044
## GO:0051923 GO:0051923
## GO:0060841 GO:0060841
## GO:0070935 GO:0070935
## GO:0080182 GO:0080182
## GO:0090136 GO:0090136
## GO:0090656 GO:0090656
## GO:0090737 GO:0090737
## GO:1900037 GO:1900037
## GO:1900363 GO:1900363
## GO:1902187 GO:1902187
## GO:1904294 GO:1904294
## GO:1904874 GO:1904874
## GO:2000047 GO:2000047
## GO:0010955 GO:0010955
## GO:1903318 GO:1903318
## GO:0006120 GO:0006120
## GO:0061844 GO:0061844
## GO:1902017 GO:1902017
## GO:0008089 GO:0008089
## GO:0002534 GO:0002534
## GO:0006111 GO:0006111
## GO:0010799 GO:0010799
## GO:0021517 GO:0021517
## GO:0071354 GO:0071354
## GO:0032652 GO:0032652
## GO:0032611 GO:0032611
## GO:1901342 GO:1901342
## GO:0006312 GO:0006312
## GO:0006515 GO:0006515
## GO:0006829 GO:0006829
## GO:0006882 GO:0006882
## GO:0030903 GO:0030903
## GO:0031065 GO:0031065
## GO:0031998 GO:0031998
## GO:0032693 GO:0032693
## GO:0051446 GO:0051446
## GO:0060219 GO:0060219
## GO:0060977 GO:0060977
## GO:0071318 GO:0071318
## GO:0071625 GO:0071625
## GO:1902165 GO:1902165
## GO:1904469 GO:1904469
## GO:0045765 GO:0045765
## GO:1902806 GO:1902806
## GO:0010923 GO:0010923
## GO:0005980 GO:0005980
## GO:0006067 GO:0006067
## GO:0007063 GO:0007063
## GO:0008053 GO:0008053
## GO:0010893 GO:0010893
## GO:0071459 GO:0071459
## GO:0097186 GO:0097186
## GO:1901984 GO:1901984
## GO:2000104 GO:2000104
## GO:2000737 GO:2000737
## GO:0007218 GO:0007218
## GO:0014850 GO:0014850
## GO:0032400 GO:0032400
## GO:0033119 GO:0033119
## GO:0042104 GO:0042104
## GO:0042274 GO:0042274
## GO:0043567 GO:0043567
## GO:0046135 GO:0046135
## GO:0048143 GO:0048143
## GO:0051560 GO:0051560
## GO:0060259 GO:0060259
## GO:0090103 GO:0090103
## GO:0050727 GO:0050727
## GO:0032515 GO:0032515
## GO:1900408 GO:1900408
## GO:0015949 GO:0015949
## GO:0044788 GO:0044788
## GO:0046854 GO:0046854
## GO:0048679 GO:0048679
## GO:0050686 GO:0050686
## GO:0009620 GO:0009620
## GO:0050702 GO:0050702
## GO:0007143 GO:0007143
## GO:0021772 GO:0021772
## GO:0045939 GO:0045939
## GO:0050779 GO:0050779
## GO:0099623 GO:0099623
## GO:1900181 GO:1900181
## GO:1901863 GO:1901863
## GO:0010595 GO:0010595
## GO:0045736 GO:0045736
## GO:0048147 GO:0048147
## GO:0048665 GO:0048665
## GO:0097035 GO:0097035
## GO:1902116 GO:1902116
## GO:0043502 GO:0043502
## GO:0000076 GO:0000076
## GO:0000185 GO:0000185
## GO:0002024 GO:0002024
## GO:0002328 GO:0002328
## GO:0003161 GO:0003161
## GO:0006044 GO:0006044
## GO:0006853 GO:0006853
## GO:0007256 GO:0007256
## GO:0009151 GO:0009151
## GO:0009629 GO:0009629
## GO:0014831 GO:0014831
## GO:0015802 GO:0015802
## GO:0016264 GO:0016264
## GO:0019471 GO:0019471
## GO:0021892 GO:0021892
## GO:0021903 GO:0021903
## GO:0030002 GO:0030002
## GO:0030320 GO:0030320
## GO:0030948 GO:0030948
## GO:0031274 GO:0031274
## GO:0031442 GO:0031442
## GO:0031507 GO:0031507
## GO:0032060 GO:0032060
## GO:0032490 GO:0032490
## GO:0033235 GO:0033235
## GO:0033327 GO:0033327
## GO:0033539 GO:0033539
## GO:0034115 GO:0034115
## GO:0034372 GO:0034372
## GO:0034379 GO:0034379
## GO:0043117 GO:0043117
## GO:0043248 GO:0043248
## GO:0045919 GO:0045919
## GO:0046929 GO:0046929
## GO:0048505 GO:0048505
## GO:0048548 GO:0048548
## GO:0050910 GO:0050910
## GO:0050930 GO:0050930
## GO:0051132 GO:0051132
## GO:0055091 GO:0055091
## GO:0060272 GO:0060272
## GO:0060340 GO:0060340
## GO:0060379 GO:0060379
## GO:0060856 GO:0060856
## GO:0070203 GO:0070203
## GO:0070243 GO:0070243
## GO:0070587 GO:0070587
## GO:0072610 GO:0072610
## GO:0072672 GO:0072672
## GO:0086016 GO:0086016
## GO:0086027 GO:0086027
## GO:0098703 GO:0098703
## GO:0099151 GO:0099151
## GO:1900102 GO:1900102
## GO:1901201 GO:1901201
## GO:1901569 GO:1901569
## GO:1904396 GO:1904396
## GO:1904424 GO:1904424
## GO:1905244 GO:1905244
## GO:1905668 GO:1905668
## GO:2000105 GO:2000105
## GO:2000786 GO:2000786
## GO:0006415 GO:0006415
## GO:0006305 GO:0006305
## GO:0006306 GO:0006306
## GO:0140053 GO:0140053
## GO:0035308 GO:0035308
## GO:0000963 GO:0000963
## GO:0003188 GO:0003188
## GO:0007035 GO:0007035
## GO:0007501 GO:0007501
## GO:0010421 GO:0010421
## GO:0021781 GO:0021781
## GO:0031269 GO:0031269
## GO:0031937 GO:0031937
## GO:0035461 GO:0035461
## GO:0038166 GO:0038166
## GO:0043517 GO:0043517
## GO:0045986 GO:0045986
## GO:0046037 GO:0046037
## GO:0051127 GO:0051127
## GO:0060831 GO:0060831
## GO:0070166 GO:0070166
## GO:0071391 GO:0071391
## GO:0071941 GO:0071941
## GO:0072498 GO:0072498
## GO:0097154 GO:0097154
## GO:0097468 GO:0097468
## GO:0099171 GO:0099171
## GO:1901213 GO:1901213
## GO:1901626 GO:1901626
## GO:1902570 GO:1902570
## GO:1904814 GO:1904814
## GO:1904889 GO:1904889
## GO:2000651 GO:2000651
## GO:2001224 GO:2001224
## GO:1902883 GO:1902883
## GO:0045844 GO:0045844
## GO:0048636 GO:0048636
## GO:0060968 GO:0060968
## GO:0002902 GO:0002902
## GO:0006071 GO:0006071
## GO:0009264 GO:0009264
## GO:0033962 GO:0033962
## GO:0034629 GO:0034629
## GO:0035313 GO:0035313
## GO:0043171 GO:0043171
## GO:0043373 GO:0043373
## GO:0060080 GO:0060080
## GO:0061952 GO:0061952
## GO:0070875 GO:0070875
## GO:0097320 GO:0097320
## GO:0097329 GO:0097329
## GO:1901071 GO:1901071
## GO:1902683 GO:1902683
## GO:1902931 GO:1902931
## GO:1903975 GO:1903975
## GO:1904948 GO:1904948
## GO:0036297 GO:0036297
## GO:0051187 GO:0051187
## GO:0055021 GO:0055021
## GO:0043124 GO:0043124
## GO:1900744 GO:1900744
## GO:0010042 GO:0010042
## GO:0032211 GO:0032211
## GO:0032516 GO:0032516
## GO:0045655 GO:0045655
## GO:0055069 GO:0055069
## GO:0090195 GO:0090195
## GO:1901673 GO:1901673
## GO:1902236 GO:1902236
## GO:2000738 GO:2000738
## GO:0070296 GO:0070296
## GO:0007032 GO:0007032
## GO:0000729 GO:0000729
## GO:0007141 GO:0007141
## GO:0016338 GO:0016338
## GO:0034453 GO:0034453
## GO:0042430 GO:0042430
## GO:0061436 GO:0061436
## GO:0097150 GO:0097150
## GO:1904861 GO:1904861
## GO:0043267 GO:0043267
## GO:0006378 GO:0006378
## GO:0007339 GO:0007339
## GO:0009395 GO:0009395
## GO:0046131 GO:0046131
## GO:0002021 GO:0002021
## GO:0010996 GO:0010996
## GO:0036152 GO:0036152
## GO:0060914 GO:0060914
## GO:0060969 GO:0060969
## GO:0061099 GO:0061099
## GO:0099560 GO:0099560
## GO:1903792 GO:1903792
## GO:0070207 GO:0070207
## GO:0070232 GO:0070232
## GO:1990774 GO:1990774
## GO:0006506 GO:0006506
## GO:0042491 GO:0042491
## GO:0046134 GO:0046134
## GO:1904467 GO:1904467
## GO:0090502 GO:0090502
## GO:0006414 GO:0006414
## GO:0061371 GO:0061371
## GO:0006323 GO:0006323
## GO:0050680 GO:0050680
## GO:0030301 GO:0030301
## GO:0032006 GO:0032006
## GO:0051153 GO:0051153
## GO:0070268 GO:0070268
## GO:0050704 GO:0050704
## GO:0051147 GO:0051147
## GO:0032413 GO:0032413
## GO:1900015 GO:1900015
## GO:0032088 GO:0032088
## GO:1903046 GO:1903046
## GO:0000012 GO:0000012
## GO:0001574 GO:0001574
## GO:0001840 GO:0001840
## GO:0003149 GO:0003149
## GO:0003376 GO:0003376
## GO:0006285 GO:0006285
## GO:0006857 GO:0006857
## GO:0008343 GO:0008343
## GO:0010998 GO:0010998
## GO:0018065 GO:0018065
## GO:0018342 GO:0018342
## GO:0030432 GO:0030432
## GO:0031282 GO:0031282
## GO:0032429 GO:0032429
## GO:0032926 GO:0032926
## GO:0034135 GO:0034135
## GO:0034244 GO:0034244
## GO:0034770 GO:0034770
## GO:0035376 GO:0035376
## GO:0036444 GO:0036444
## GO:0042048 GO:0042048
## GO:0044351 GO:0044351
## GO:0044539 GO:0044539
## GO:0045741 GO:0045741
## GO:0045945 GO:0045945
## GO:0046607 GO:0046607
## GO:0048484 GO:0048484
## GO:0048570 GO:0048570
## GO:0051231 GO:0051231
## GO:0051315 GO:0051315
## GO:0060088 GO:0060088
## GO:0060213 GO:0060213
## GO:0060371 GO:0060371
## GO:0060456 GO:0060456
## GO:0060513 GO:0060513
## GO:0061085 GO:0061085
## GO:0070341 GO:0070341
## GO:0070344 GO:0070344
## GO:0070508 GO:0070508
## GO:0071577 GO:0071577
## GO:0071600 GO:0071600
## GO:0090646 GO:0090646
## GO:0097354 GO:0097354
## GO:1901033 GO:1901033
## GO:1902237 GO:1902237
## GO:1903265 GO:1903265
## GO:1903405 GO:1903405
## GO:1903799 GO:1903799
## GO:1903897 GO:1903897
## GO:1904338 GO:1904338
## GO:1904851 GO:1904851
## GO:1904867 GO:1904867
## GO:2000049 GO:2000049
## GO:2000109 GO:2000109
## GO:2000271 GO:2000271
## GO:2000628 GO:2000628
## GO:2000767 GO:2000767
## GO:2001225 GO:2001225
## GO:0046473 GO:0046473
## GO:0070125 GO:0070125
## GO:0045806 GO:0045806
## GO:0051965 GO:0051965
## GO:0046621 GO:0046621
## GO:0043631 GO:0043631
## GO:1901381 GO:1901381
## GO:0097352 GO:0097352
## GO:0098901 GO:0098901
## GO:0001833 GO:0001833
## GO:0002087 GO:0002087
## GO:0002864 GO:0002864
## GO:0006047 GO:0006047
## GO:0009642 GO:0009642
## GO:0010459 GO:0010459
## GO:0010839 GO:0010839
## GO:0016246 GO:0016246
## GO:0019627 GO:0019627
## GO:0021978 GO:0021978
## GO:0031054 GO:0031054
## GO:0032725 GO:0032725
## GO:0032988 GO:0032988
## GO:0034331 GO:0034331
## GO:0034370 GO:0034370
## GO:0035563 GO:0035563
## GO:0038007 GO:0038007
## GO:0042659 GO:0042659
## GO:0043374 GO:0043374
## GO:0044794 GO:0044794
## GO:0046415 GO:0046415
## GO:0048715 GO:0048715
## GO:0060452 GO:0060452
## GO:0060601 GO:0060601
## GO:0060712 GO:0060712
## GO:0070989 GO:0070989
## GO:0071287 GO:0071287
## GO:0090594 GO:0090594
## GO:1901070 GO:1901070
## GO:1902414 GO:1902414
## GO:1990403 GO:1990403
## GO:0050701 GO:0050701
## GO:0036257 GO:0036257
## GO:0045910 GO:0045910
## GO:0046466 GO:0046466
## GO:0099174 GO:0099174
## GO:0000002 GO:0000002
## GO:0050482 GO:0050482
## GO:0061157 GO:0061157
## GO:0070979 GO:0070979
## GO:0086013 GO:0086013
## GO:1903963 GO:1903963
## GO:2000108 GO:2000108
## GO:0002295 GO:0002295
## GO:0006004 GO:0006004
## GO:0007096 GO:0007096
## GO:0016226 GO:0016226
## GO:0022038 GO:0022038
## GO:0031163 GO:0031163
## GO:0032604 GO:0032604
## GO:0034433 GO:0034433
## GO:0034434 GO:0034434
## GO:0034435 GO:0034435
## GO:0034501 GO:0034501
## GO:0035025 GO:0035025
## GO:0036149 GO:0036149
## GO:0042228 GO:0042228
## GO:0043174 GO:0043174
## GO:0044065 GO:0044065
## GO:0045725 GO:0045725
## GO:0046339 GO:0046339
## GO:0051382 GO:0051382
## GO:0051444 GO:0051444
## GO:0060263 GO:0060263
## GO:0071605 GO:0071605
## GO:0071637 GO:0071637
## GO:0090153 GO:0090153
## GO:0090335 GO:0090335
## GO:1900221 GO:1900221
## GO:1905038 GO:1905038
## GO:2000303 GO:2000303
## GO:2000479 GO:2000479
## GO:0007040 GO:0007040
## GO:0080171 GO:0080171
## GO:0000038 GO:0000038
## GO:0060307 GO:0060307
## GO:0060314 GO:0060314
## GO:1990126 GO:1990126
## GO:0001832 GO:0001832
## GO:0002922 GO:0002922
## GO:0010523 GO:0010523
## GO:0030949 GO:0030949
## GO:0042693 GO:0042693
## GO:0046386 GO:0046386
## GO:0046653 GO:0046653
## GO:0046655 GO:0046655
## GO:0048025 GO:0048025
## GO:0051647 GO:0051647
## GO:1900017 GO:1900017
## GO:1901881 GO:1901881
## GO:0010528 GO:0010528
## GO:0010529 GO:0010529
## GO:0010842 GO:0010842
## GO:0044342 GO:0044342
## GO:0051905 GO:0051905
## GO:0071425 GO:0071425
## GO:0071467 GO:0071467
## GO:0071875 GO:0071875
## GO:0071985 GO:0071985
## GO:0080111 GO:0080111
## GO:0043542 GO:0043542
## GO:0045668 GO:0045668
## GO:2000772 GO:2000772
## GO:0060038 GO:0060038
## GO:0018208 GO:0018208
## GO:0035924 GO:0035924
## GO:0006221 GO:0006221
## GO:0006654 GO:0006654
## GO:0051898 GO:0051898
## GO:1901016 GO:1901016
## GO:0009072 GO:0009072
## GO:0017145 GO:0017145
## GO:0034248 GO:0034248
## GO:0090501 GO:0090501
## GO:1903514 GO:1903514
## GO:0043032 GO:0043032
## GO:0090503 GO:0090503
## GO:0098664 GO:0098664
## GO:0016233 GO:0016233
## GO:0046456 GO:0046456
## GO:0036258 GO:0036258
## GO:1905606 GO:1905606
## GO:0021846 GO:0021846
## GO:1904357 GO:1904357
## GO:0006303 GO:0006303
## GO:0009566 GO:0009566
## GO:0010257 GO:0010257
## GO:0032981 GO:0032981
## GO:0008334 GO:0008334
## GO:0034035 GO:0034035
## GO:0034162 GO:0034162
## GO:0048643 GO:0048643
## GO:0050427 GO:0050427
## GO:1902410 GO:1902410
## GO:0008589 GO:0008589
## GO:0010884 GO:0010884
## GO:0032401 GO:0032401
## GO:0032462 GO:0032462
## GO:0039702 GO:0039702
## GO:0051904 GO:0051904
## GO:0070193 GO:0070193
## GO:2000316 GO:2000316
## GO:0006333 GO:0006333
## GO:0140013 GO:0140013
## GO:0007140 GO:0007140
## GO:0019731 GO:0019731
## GO:0032527 GO:0032527
## GO:0061014 GO:0061014
## GO:0000726 GO:0000726
## GO:0006123 GO:0006123
## GO:0019646 GO:0019646
## GO:0045947 GO:0045947
## GO:0098581 GO:0098581
## GO:0098698 GO:0098698
## GO:2000319 GO:2000319
## GO:0001711 GO:0001711
## GO:0002467 GO:0002467
## GO:0006103 GO:0006103
## GO:0007097 GO:0007097
## GO:0030730 GO:0030730
## GO:0032645 GO:0032645
## GO:0034111 GO:0034111
## GO:0042754 GO:0042754
## GO:0043249 GO:0043249
## GO:0045414 GO:0045414
## GO:0070571 GO:0070571
## GO:0097107 GO:0097107
## GO:1902188 GO:1902188
## GO:2000402 GO:2000402
## GO:0034122 GO:0034122
## GO:0098760 GO:0098760
## GO:0098761 GO:0098761
## GO:0001973 GO:0001973
## GO:0002862 GO:0002862
## GO:0002903 GO:0002903
## GO:0005513 GO:0005513
## GO:0006012 GO:0006012
## GO:0006069 GO:0006069
## GO:0006122 GO:0006122
## GO:0006244 GO:0006244
## GO:0006390 GO:0006390
## GO:0006553 GO:0006553
## GO:0006554 GO:0006554
## GO:0014029 GO:0014029
## GO:0015867 GO:0015867
## GO:0018216 GO:0018216
## GO:0030497 GO:0030497
## GO:0034755 GO:0034755
## GO:0035627 GO:0035627
## GO:0046479 GO:0046479
## GO:0051238 GO:0051238
## GO:0060211 GO:0060211
## GO:0060339 GO:0060339
## GO:0060394 GO:0060394
## GO:0071468 GO:0071468
## GO:0072540 GO:0072540
## GO:0072710 GO:0072710
## GO:0090161 GO:0090161
## GO:0090520 GO:0090520
## GO:1900044 GO:1900044
## GO:1900165 GO:1900165
## GO:1900402 GO:1900402
## GO:1901160 GO:1901160
## GO:1901298 GO:1901298
## GO:1901387 GO:1901387
## GO:1902004 GO:1902004
## GO:1903909 GO:1903909
## GO:1904816 GO:1904816
## GO:1904862 GO:1904862
## GO:1905522 GO:1905522
## GO:1905666 GO:1905666
## GO:1990173 GO:1990173
## GO:2000341 GO:2000341
## GO:1901989 GO:1901989
## GO:0032410 GO:0032410
## GO:0006959 GO:0006959
## GO:0000413 GO:0000413
## GO:0014808 GO:0014808
## GO:1905515 GO:1905515
## GO:0009954 GO:0009954
## GO:1900745 GO:1900745
## GO:0043044 GO:0043044
## GO:0070126 GO:0070126
## GO:0010800 GO:0010800
## GO:0031297 GO:0031297
## GO:0016266 GO:0016266
## GO:1903313 GO:1903313
## GO:0034728 GO:0034728
## GO:0045010 GO:0045010
## GO:0051154 GO:0051154
## GO:1901031 GO:1901031
## GO:0021591 GO:0021591
## GO:0033561 GO:0033561
## GO:0050909 GO:0050909
## GO:0042158 GO:0042158
## GO:1901992 GO:1901992
## GO:0038084 GO:0038084
## GO:0072348 GO:0072348
## GO:0007064 GO:0007064
## GO:0021511 GO:0021511
## GO:1903861 GO:1903861
## GO:0032506 GO:0032506
## GO:0050691 GO:0050691
## GO:1903427 GO:1903427
## GO:0007289 GO:0007289
## GO:0008356 GO:0008356
## GO:0010002 GO:0010002
## GO:0032402 GO:0032402
## GO:0045723 GO:0045723
## GO:0060972 GO:0060972
## GO:0097503 GO:0097503
## GO:0007281 GO:0007281
## GO:2001258 GO:2001258
## GO:2001024 GO:2001024
## GO:2001038 GO:2001038
## GO:0006349 GO:0006349
## GO:0006586 GO:0006586
## GO:0006750 GO:0006750
## GO:0007635 GO:0007635
## GO:0009148 GO:0009148
## GO:0015693 GO:0015693
## GO:0015868 GO:0015868
## GO:0016254 GO:0016254
## GO:0018904 GO:0018904
## GO:0034384 GO:0034384
## GO:0035518 GO:0035518
## GO:0042095 GO:0042095
## GO:0050665 GO:0050665
## GO:0048477 GO:0048477
## GO:0010830 GO:0010830
## GO:0038095 GO:0038095
## GO:0006658 GO:0006658
## GO:0010880 GO:0010880
## GO:0033687 GO:0033687
## GO:1903432 GO:1903432
## GO:0006646 GO:0006646
## GO:0006684 GO:0006684
## GO:0009129 GO:0009129
## GO:0032509 GO:0032509
## GO:0035589 GO:0035589
## GO:0048368 GO:0048368
## GO:0051016 GO:0051016
## GO:0060049 GO:0060049
## GO:0061042 GO:0061042
## GO:0072567 GO:0072567
## GO:0099632 GO:0099632
## GO:0099637 GO:0099637
## GO:1900121 GO:1900121
## GO:1903054 GO:1903054
## GO:1903351 GO:1903351
## GO:1903540 GO:1903540
## GO:0032543 GO:0032543
## GO:0055092 GO:0055092
## GO:0042742 GO:0042742
## GO:0009074 GO:0009074
## GO:0010882 GO:0010882
## GO:0032232 GO:0032232
## GO:0033688 GO:0033688
## GO:0044030 GO:0044030
## GO:0000050 GO:0000050
## GO:0002323 GO:0002323
## GO:0003413 GO:0003413
## GO:0008655 GO:0008655
## GO:0009223 GO:0009223
## GO:0010896 GO:0010896
## GO:0019321 GO:0019321
## GO:0019755 GO:0019755
## GO:0033234 GO:0033234
## GO:0033523 GO:0033523
## GO:0035747 GO:0035747
## GO:0042983 GO:0042983
## GO:0042984 GO:0042984
## GO:0043097 GO:0043097
## GO:0043201 GO:0043201
## GO:0043619 GO:0043619
## GO:0045116 GO:0045116
## GO:0045217 GO:0045217
## GO:0060019 GO:0060019
## GO:0060159 GO:0060159
## GO:0060315 GO:0060315
## GO:0070189 GO:0070189
## GO:0070572 GO:0070572
## GO:0071044 GO:0071044
## GO:0072173 GO:0072173
## GO:0072711 GO:0072711
## GO:0090073 GO:0090073
## GO:0090084 GO:0090084
## GO:0090394 GO:0090394
## GO:0090657 GO:0090657
## GO:1900115 GO:1900115
## GO:1900116 GO:1900116
## GO:1901077 GO:1901077
## GO:1905146 GO:1905146
## GO:0060421 GO:0060421
## GO:0060119 GO:0060119
## GO:0021544 GO:0021544
## GO:0032461 GO:0032461
## GO:0046755 GO:0046755
## GO:0051497 GO:0051497
## GO:1903859 GO:1903859
## GO:0060964 GO:0060964
## GO:0042632 GO:0042632
## GO:0006516 GO:0006516
## GO:0009220 GO:0009220
## GO:0032594 GO:0032594
## GO:0036037 GO:0036037
## GO:0045956 GO:0045956
## GO:0046337 GO:0046337
## GO:2000050 GO:2000050
## GO:0060043 GO:0060043
## GO:0045005 GO:0045005
## GO:0045922 GO:0045922
## GO:0034383 GO:0034383
## GO:0006448 GO:0006448
## GO:0006488 GO:0006488
## GO:0006490 GO:0006490
## GO:0007350 GO:0007350
## GO:0009147 GO:0009147
## GO:0015669 GO:0015669
## GO:0019184 GO:0019184
## GO:0021756 GO:0021756
## GO:0032042 GO:0032042
## GO:0032700 GO:0032700
## GO:0060149 GO:0060149
## GO:0060967 GO:0060967
## GO:0098911 GO:0098911
## GO:0035914 GO:0035914
## GO:0010586 GO:0010586
## GO:0045879 GO:0045879
## GO:2000781 GO:2000781
## GO:0045601 GO:0045601
## GO:0014067 GO:0014067
## GO:0043649 GO:0043649
## GO:0045072 GO:0045072
## GO:0045722 GO:0045722
## GO:0051503 GO:0051503
## GO:0060457 GO:0060457
## GO:0060965 GO:0060965
## GO:0071880 GO:0071880
## GO:0072189 GO:0072189
## GO:0086103 GO:0086103
## GO:1903019 GO:1903019
## GO:1903830 GO:1903830
## GO:0007029 GO:0007029
## GO:1904707 GO:1904707
## GO:0036151 GO:0036151
## GO:0042226 GO:0042226
## GO:0045686 GO:0045686
## GO:0060122 GO:0060122
## GO:0120033 GO:0120033
## GO:0007210 GO:0007210
## GO:0001935 GO:0001935
## GO:0060147 GO:0060147
## GO:0060966 GO:0060966
## GO:0006493 GO:0006493
## GO:0030514 GO:0030514
## GO:0010831 GO:0010831
## GO:0036474 GO:0036474
## GO:0002097 GO:0002097
## GO:0009130 GO:0009130
## GO:0010838 GO:0010838
## GO:0014745 GO:0014745
## GO:0018410 GO:0018410
## GO:0030490 GO:0030490
## GO:0031665 GO:0031665
## GO:0034214 GO:0034214
## GO:0035112 GO:0035112
## GO:0038092 GO:0038092
## GO:0042559 GO:0042559
## GO:0046541 GO:0046541
## GO:0048681 GO:0048681
## GO:0055070 GO:0055070
## GO:0060628 GO:0060628
## GO:0061052 GO:0061052
## GO:0070431 GO:0070431
## GO:0090069 GO:0090069
## GO:0098543 GO:0098543
## GO:0098877 GO:0098877
## GO:0098969 GO:0098969
## GO:1902902 GO:1902902
## GO:1903960 GO:1903960
## GO:1904293 GO:1904293
## GO:2001279 GO:2001279
## GO:0009218 GO:0009218
## GO:0032717 GO:0032717
## GO:0048753 GO:0048753
## GO:0001895 GO:0001895
## GO:0051149 GO:0051149
## GO:0010470 GO:0010470
## GO:0055026 GO:0055026
## GO:0045738 GO:0045738
## GO:0055022 GO:0055022
## GO:0061117 GO:0061117
## GO:0021515 GO:0021515
## GO:0034381 GO:0034381
## GO:0010310 GO:0010310
## GO:0010829 GO:0010829
## GO:0021513 GO:0021513
## GO:0036150 GO:0036150
## GO:0042402 GO:0042402
## GO:0046132 GO:0046132
## GO:0001778 GO:0001778
## GO:0006307 GO:0006307
## GO:0006878 GO:0006878
## GO:0007028 GO:0007028
## GO:0016559 GO:0016559
## GO:0021562 GO:0021562
## GO:0032525 GO:0032525
## GO:0033690 GO:0033690
## GO:0034447 GO:0034447
## GO:0035768 GO:0035768
## GO:0042670 GO:0042670
## GO:0042761 GO:0042761
## GO:0045988 GO:0045988
## GO:0046322 GO:0046322
## GO:0046349 GO:0046349
## GO:0046549 GO:0046549
## GO:0046710 GO:0046710
## GO:0048680 GO:0048680
## GO:0051255 GO:0051255
## GO:0060352 GO:0060352
## GO:0061179 GO:0061179
## GO:0061635 GO:0061635
## GO:0070314 GO:0070314
## GO:0071838 GO:0071838
## GO:0071863 GO:0071863
## GO:0072393 GO:0072393
## GO:0090205 GO:0090205
## GO:0098722 GO:0098722
## GO:1900426 GO:1900426
## GO:1902033 GO:1902033
## GO:1902915 GO:1902915
## GO:2000035 GO:2000035
## GO:2000544 GO:2000544
## GO:2000650 GO:2000650
## GO:0001578 GO:0001578
## GO:0042036 GO:0042036
## GO:0007338 GO:0007338
## GO:0001580 GO:0001580
## GO:0010390 GO:0010390
## GO:0030970 GO:0030970
## GO:1903513 GO:1903513
## GO:0032365 GO:0032365
## GO:0007130 GO:0007130
## GO:0010832 GO:0010832
## GO:0015865 GO:0015865
## GO:0016556 GO:0016556
## GO:0036148 GO:0036148
## GO:0036342 GO:0036342
## GO:0044827 GO:0044827
## GO:0070230 GO:0070230
## GO:2000311 GO:2000311
## GO:0032007 GO:0032007
## GO:0050829 GO:0050829
## GO:0030149 GO:0030149
## GO:0060632 GO:0060632
## GO:1901018 GO:1901018
## GO:0043536 GO:0043536
## GO:0002526 GO:0002526
## GO:0007131 GO:0007131
## GO:0033363 GO:0033363
## GO:0050913 GO:0050913
## GO:0009988 GO:0009988
## GO:0051155 GO:0051155
## GO:0006497 GO:0006497
## GO:0060761 GO:0060761
## GO:0051280 GO:0051280
## GO:0071435 GO:0071435
## GO:0097623 GO:0097623
## GO:1903350 GO:1903350
## GO:1905276 GO:1905276
## GO:2001185 GO:2001185
## GO:0009310 GO:0009310
## GO:0032438 GO:0032438
## GO:0045717 GO:0045717
## GO:0051148 GO:0051148
## GO:0006691 GO:0006691
## GO:0042572 GO:0042572
## GO:0046471 GO:0046471
## GO:1901380 GO:1901380
## GO:1903205 GO:1903205
## GO:1904893 GO:1904893
## GO:0003298 GO:0003298
## GO:0003301 GO:0003301
## GO:0061049 GO:0061049
## GO:0055025 GO:0055025
## GO:0001960 GO:0001960
## GO:0014743 GO:0014743
## GO:0050728 GO:0050728
## GO:0010801 GO:0010801
## GO:0045019 GO:0045019
## GO:1900424 GO:1900424
## GO:1904406 GO:1904406
## GO:2001014 GO:2001014
## GO:0002093 GO:0002093
## GO:0006568 GO:0006568
## GO:0007175 GO:0007175
## GO:0007288 GO:0007288
## GO:0008228 GO:0008228
## GO:0009111 GO:0009111
## GO:0010649 GO:0010649
## GO:0010872 GO:0010872
## GO:0010889 GO:0010889
## GO:0016045 GO:0016045
## GO:0021520 GO:0021520
## GO:0021559 GO:0021559
## GO:0035092 GO:0035092
## GO:0035330 GO:0035330
## GO:0042159 GO:0042159
## GO:0042487 GO:0042487
## GO:0044793 GO:0044793
## GO:0045760 GO:0045760
## GO:0046033 GO:0046033
## GO:0061450 GO:0061450
## GO:0072488 GO:0072488
## GO:0072578 GO:0072578
## GO:0098962 GO:0098962
## GO:0150065 GO:0150065
## GO:1900118 GO:1900118
## GO:1901163 GO:1901163
## GO:2000009 GO:2000009
## GO:2000232 GO:2000232
## GO:0016339 GO:0016339
## GO:0050855 GO:0050855
## GO:0055090 GO:0055090
## GO:0070328 GO:0070328
## GO:0010611 GO:0010611
## GO:0010657 GO:0010657
## GO:0055023 GO:0055023
## GO:0097300 GO:0097300
## GO:0007340 GO:0007340
## GO:0045408 GO:0045408
## GO:0061050 GO:0061050
## GO:0070861 GO:0070861
## GO:2000353 GO:2000353
## GO:0006379 GO:0006379
## GO:0008272 GO:0008272
## GO:0021514 GO:0021514
## GO:0042953 GO:0042953
## GO:0044872 GO:0044872
## GO:0051284 GO:0051284
## GO:0061577 GO:0061577
## GO:0070265 GO:0070265
## GO:0032715 GO:0032715
## GO:0038202 GO:0038202
## GO:2000780 GO:2000780
## GO:0001539 GO:0001539
## GO:0021516 GO:0021516
## GO:0048103 GO:0048103
## GO:0060285 GO:0060285
## GO:2001032 GO:2001032
## GO:0010613 GO:0010613
## GO:0034105 GO:0034105
## GO:0035825 GO:0035825
## GO:0003128 GO:0003128
## GO:0006241 GO:0006241
## GO:0009209 GO:0009209
## GO:0021527 GO:0021527
## GO:0042249 GO:0042249
## GO:0043173 GO:0043173
## GO:0044546 GO:0044546
## GO:0046036 GO:0046036
## GO:0046459 GO:0046459
## GO:0060026 GO:0060026
## GO:0060911 GO:0060911
## GO:0070234 GO:0070234
## GO:0080009 GO:0080009
## GO:0106070 GO:0106070
## GO:1904152 GO:1904152
## GO:2000095 GO:2000095
## GO:0033344 GO:0033344
## GO:0018200 GO:0018200
## GO:0040019 GO:0040019
## GO:0050832 GO:0050832
## GO:0010663 GO:0010663
## GO:0010666 GO:0010666
## GO:0046475 GO:0046475
## GO:0098915 GO:0098915
## GO:0000289 GO:0000289
## GO:0003299 GO:0003299
## GO:0014887 GO:0014887
## GO:0014898 GO:0014898
## GO:0070266 GO:0070266
## GO:1905207 GO:1905207
## GO:0006862 GO:0006862
## GO:0010881 GO:0010881
## GO:0030488 GO:0030488
## GO:0150078 GO:0150078
## GO:0033108 GO:0033108
## GO:0045494 GO:0045494
## GO:0001845 GO:0001845
## GO:0002098 GO:0002098
## GO:0015697 GO:0015697
## GO:0015791 GO:0015791
## GO:0018095 GO:0018095
## GO:0019532 GO:0019532
## GO:0021521 GO:0021521
## GO:0021670 GO:0021670
## GO:0031392 GO:0031392
## GO:0035766 GO:0035766
## GO:0045006 GO:0045006
## GO:0045141 GO:0045141
## GO:0045176 GO:0045176
## GO:0048853 GO:0048853
## GO:0051974 GO:0051974
## GO:0052803 GO:0052803
## GO:0060573 GO:0060573
## GO:0060837 GO:0060837
## GO:0061365 GO:0061365
## GO:0086023 GO:0086023
## GO:0090178 GO:0090178
## GO:1901096 GO:1901096
## GO:1901660 GO:1901660
## GO:1902093 GO:1902093
## GO:1902306 GO:1902306
## GO:1903977 GO:1903977
## GO:1904468 GO:1904468
## GO:1904847 GO:1904847
## GO:0070102 GO:0070102
## GO:1904994 GO:1904994
## GO:0000394 GO:0000394
## GO:0006450 GO:0006450
## GO:0046325 GO:0046325
## GO:0060117 GO:0060117
## GO:1900153 GO:1900153
## GO:1901317 GO:1901317
## GO:1902358 GO:1902358
## GO:0017000 GO:0017000
## GO:0042573 GO:0042573
## GO:0044458 GO:0044458
## GO:0090208 GO:0090208
## GO:0010661 GO:0010661
## GO:0060045 GO:0060045
## GO:0090207 GO:0090207
## GO:0002230 GO:0002230
## GO:0080154 GO:0080154
## GO:0014742 GO:0014742
## GO:0061982 GO:0061982
## GO:0033120 GO:0033120
## GO:0045880 GO:0045880
## GO:0097502 GO:0097502
## GO:1903978 GO:1903978
## GO:0010660 GO:0010660
## GO:0002251 GO:0002251
## GO:0007127 GO:0007127
## GO:0003085 GO:0003085
## GO:0010561 GO:0010561
## GO:0010766 GO:0010766
## GO:0030836 GO:0030836
## GO:0031223 GO:0031223
## GO:0036445 GO:0036445
## GO:0042574 GO:0042574
## GO:0043628 GO:0043628
## GO:0048311 GO:0048311
## GO:0050746 GO:0050746
## GO:0055057 GO:0055057
## GO:0060312 GO:0060312
## GO:0061469 GO:0061469
## GO:0070863 GO:0070863
## GO:1900225 GO:1900225
## GO:1904251 GO:1904251
## GO:2001034 GO:2001034
## GO:2001256 GO:2001256
## GO:0035269 GO:0035269
## GO:0051782 GO:0051782
## GO:1900151 GO:1900151
## GO:0045603 GO:0045603
## GO:2000726 GO:2000726
## GO:0048730 GO:0048730
## GO:0050685 GO:0050685
## GO:0034143 GO:0034143
## GO:0034393 GO:0034393
## GO:0043031 GO:0043031
## GO:1902259 GO:1902259
## GO:2000380 GO:2000380
## GO:0006388 GO:0006388
## GO:0007351 GO:0007351
## GO:0007638 GO:0007638
## GO:0008595 GO:0008595
## GO:0009208 GO:0009208
## GO:0015671 GO:0015671
## GO:0033689 GO:0033689
## GO:0034356 GO:0034356
## GO:0043508 GO:0043508
## GO:0045837 GO:0045837
## GO:0060579 GO:0060579
## GO:0060581 GO:0060581
## GO:0061158 GO:0061158
## GO:1902514 GO:1902514
## GO:0070129 GO:0070129
## GO:0006336 GO:0006336
## GO:0034724 GO:0034724
## GO:0001936 GO:0001936
## GO:0051354 GO:0051354
## GO:0003356 GO:0003356
## GO:0006222 GO:0006222
## GO:0006264 GO:0006264
## GO:0006547 GO:0006547
## GO:0006569 GO:0006569
## GO:0009173 GO:0009173
## GO:0009174 GO:0009174
## GO:0031629 GO:0031629
## GO:0035646 GO:0035646
## GO:0035871 GO:0035871
## GO:0042436 GO:0042436
## GO:0043485 GO:0043485
## GO:0046049 GO:0046049
## GO:0046051 GO:0046051
## GO:0046218 GO:0046218
## GO:0048757 GO:0048757
## GO:0051006 GO:0051006
## GO:0060923 GO:0060923
## GO:0070071 GO:0070071
## GO:0070862 GO:0070862
## GO:0071639 GO:0071639
## GO:0090179 GO:0090179
## GO:0090336 GO:0090336
## GO:0098598 GO:0098598
## GO:1901725 GO:1901725
## GO:2000425 GO:2000425
## GO:0048515 GO:0048515
## GO:0000387 GO:0000387
## GO:2000725 GO:2000725
## GO:0007156 GO:0007156
## GO:0051450 GO:0051450
## GO:1905208 GO:1905208
## GO:0043950 GO:0043950
## GO:0060547 GO:0060547
## GO:1900016 GO:1900016
## GO:0010719 GO:0010719
## GO:0034312 GO:0034312
## GO:0046514 GO:0046514
## GO:0050711 GO:0050711
## GO:0050908 GO:0050908
## GO:0050962 GO:0050962
## GO:2000042 GO:2000042
## GO:0031497 GO:0031497
## GO:0045814 GO:0045814
## GO:0007286 GO:0007286
## GO:0016064 GO:0016064
## GO:0006662 GO:0006662
## GO:0007342 GO:0007342
## GO:0015780 GO:0015780
## GO:0017121 GO:0017121
## GO:0021889 GO:0021889
## GO:0034397 GO:0034397
## GO:0035751 GO:0035751
## GO:0042118 GO:0042118
## GO:0043476 GO:0043476
## GO:0043482 GO:0043482
## GO:0045078 GO:0045078
## GO:0045602 GO:0045602
## GO:0060294 GO:0060294
## GO:0070986 GO:0070986
## GO:0090177 GO:0090177
## GO:0090220 GO:0090220
## GO:0090481 GO:0090481
## GO:1902018 GO:1902018
## GO:0010658 GO:0010658
## GO:0019724 GO:0019724
## GO:0014741 GO:0014741
## GO:0010804 GO:0010804
## GO:0031069 GO:0031069
## GO:1901032 GO:1901032
## GO:1902547 GO:1902547
## GO:1903206 GO:1903206
## GO:2001039 GO:2001039
## GO:0034508 GO:0034508
## GO:0034389 GO:0034389
## GO:0035268 GO:0035268
## GO:0006417 GO:0006417
## GO:0008544 GO:0008544
## GO:0002091 GO:0002091
## GO:0009109 GO:0009109
## GO:0010867 GO:0010867
## GO:0010917 GO:0010917
## GO:0032048 GO:0032048
## GO:0046341 GO:0046341
## GO:0048712 GO:0048712
## GO:0050713 GO:0050713
## GO:1905209 GO:1905209
## GO:0010453 GO:0010453
## GO:0150077 GO:0150077
## GO:1901017 GO:1901017
## GO:1904754 GO:1904754
## GO:2000765 GO:2000765
## GO:0060044 GO:0060044
## GO:0050830 GO:0050830
## GO:0002385 GO:0002385
## GO:0001675 GO:0001675
## GO:0002115 GO:0002115
## GO:0015074 GO:0015074
## GO:0045026 GO:0045026
## GO:0060046 GO:0060046
## GO:0048261 GO:0048261
## GO:0006063 GO:0006063
## GO:0019585 GO:0019585
## GO:0048240 GO:0048240
## GO:1900746 GO:1900746
## GO:2000291 GO:2000291
## GO:0043486 GO:0043486
## GO:0010659 GO:0010659
## GO:0032371 GO:0032371
## GO:0032374 GO:0032374
## GO:0032692 GO:0032692
## GO:0051145 GO:0051145
## GO:0050912 GO:0050912
## GO:0010764 GO:0010764
## GO:0046520 GO:0046520
## GO:0060947 GO:0060947
## GO:0070857 GO:0070857
## GO:0072070 GO:0072070
## GO:0090209 GO:0090209
## GO:0099500 GO:0099500
## GO:0106072 GO:0106072
## GO:2000318 GO:2000318
## GO:0060546 GO:0060546
## GO:2000647 GO:2000647
## GO:0038111 GO:0038111
## GO:0070192 GO:0070192
## GO:0010614 GO:0010614
## GO:0014912 GO:0014912
## GO:0032769 GO:0032769
## GO:0034311 GO:0034311
## GO:0043046 GO:0043046
## GO:0048662 GO:0048662
## GO:0003352 GO:0003352
## GO:0016024 GO:0016024
## GO:0036158 GO:0036158
## GO:0036159 GO:0036159
## GO:0045759 GO:0045759
## GO:0051001 GO:0051001
## GO:0061888 GO:0061888
## GO:0106074 GO:0106074
## GO:1905516 GO:1905516
## GO:0010656 GO:0010656
## GO:0010662 GO:0010662
## GO:0035036 GO:0035036
## GO:0001835 GO:0001835
## GO:0035188 GO:0035188
## GO:0060544 GO:0060544
## GO:0071684 GO:0071684
## GO:0010939 GO:0010939
## GO:0030219 GO:0030219
## GO:0032366 GO:0032366
## GO:0032367 GO:0032367
## GO:0090343 GO:0090343
## GO:0018298 GO:0018298
## GO:0033617 GO:0033617
## GO:0046519 GO:0046519
## GO:1902548 GO:1902548
## GO:0010594 GO:0010594
## GO:2000727 GO:2000727
## GO:0010664 GO:0010664
## GO:0034390 GO:0034390
## GO:0034391 GO:0034391
## GO:1905564 GO:1905564
## GO:0040037 GO:0040037
## GO:0070131 GO:0070131
## GO:1903980 GO:1903980
## GO:1905953 GO:1905953
## GO:0006334 GO:0006334
## GO:0030317 GO:0030317
## GO:0097722 GO:0097722
## GO:0008535 GO:0008535
## GO:0019370 GO:0019370
## GO:0072079 GO:0072079
## GO:2000774 GO:2000774
## GO:1901223 GO:1901223
## GO:0002182 GO:0002182
## GO:0010587 GO:0010587
## GO:0018202 GO:0018202
## GO:0018242 GO:0018242
## GO:0032464 GO:0032464
## GO:0032621 GO:0032621
## GO:0046512 GO:0046512
## GO:0060287 GO:0060287
## GO:0070601 GO:0070601
## GO:1900247 GO:1900247
## GO:0010665 GO:0010665
## GO:0007129 GO:0007129
## GO:0002227 GO:0002227
## GO:0003351 GO:0003351
## GO:0045143 GO:0045143
## GO:0003306 GO:0003306
## GO:0006670 GO:0006670
## GO:0009812 GO:0009812
## GO:0010454 GO:0010454
## GO:0018158 GO:0018158
## GO:0043696 GO:0043696
## GO:0043697 GO:0043697
## GO:1902260 GO:1902260
## GO:2000272 GO:2000272
## GO:0001522 GO:0001522
## GO:0046940 GO:0046940
## GO:0051307 GO:0051307
## GO:0061051 GO:0061051
## GO:1900747 GO:1900747
## GO:1905050 GO:1905050
## GO:0051151 GO:0051151
## GO:0006342 GO:0006342
## GO:1902808 GO:1902808
## GO:0051290 GO:0051290
## GO:0010713 GO:0010713
## GO:0034587 GO:0034587
## GO:0048026 GO:0048026
## GO:0032691 GO:0032691
## GO:0046460 GO:0046460
## GO:0046463 GO:0046463
## GO:0072376 GO:0072376
## GO:0045132 GO:0045132
## GO:0010667 GO:0010667
## GO:0090050 GO:0090050
## GO:0016075 GO:0016075
## GO:0097428 GO:0097428
## GO:1903979 GO:1903979
## GO:2000344 GO:2000344
## GO:0002431 GO:0002431
## GO:0050720 GO:0050720
## GO:0098903 GO:0098903
## GO:1903726 GO:1903726
## GO:0017004 GO:0017004
## GO:1905048 GO:1905048
## GO:1904262 GO:1904262
## GO:0034080 GO:0034080
## GO:0061641 GO:0061641
## GO:0007379 GO:0007379
## GO:0032966 GO:0032966
## GO:1903818 GO:1903818
## GO:0031055 GO:0031055
## GO:1900087 GO:1900087
## GO:0010874 GO:0010874
## GO:0019432 GO:0019432
## GO:0042219 GO:0042219
## GO:0043534 GO:0043534
## GO:0040036 GO:0040036
## GO:0002433 GO:0002433
## GO:0038096 GO:0038096
## GO:0070286 GO:0070286
## GO:0038094 GO:0038094
## GO:0035082 GO:0035082
## GO:0043588 GO:0043588
## GO:0050722 GO:0050722
## GO:1905461 GO:1905461
## GO:0010986 GO:0010986
## GO:1904684 GO:1904684
## GO:0034392 GO:0034392
## GO:1905049 GO:1905049
## GO:1905064 GO:1905064
## GO:0071786 GO:0071786
## GO:0048490 GO:0048490
## GO:0052695 GO:0052695
## GO:0099514 GO:0099514
## GO:0099517 GO:0099517
## GO:0010866 GO:0010866
## GO:0010988 GO:0010988
## GO:0034661 GO:0034661
## GO:0018345 GO:0018345
## GO:0000245 GO:0000245
## GO:0010455 GO:0010455
## GO:0042222 GO:0042222
## GO:0097709 GO:0097709
## GO:1905902 GO:1905902
## GO:0002673 GO:0002673
## GO:1903317 GO:1903317
## GO:1903672 GO:1903672
## GO:1903817 GO:1903817
## GO:0150079 GO:0150079
## GO:0051150 GO:0051150
## GO:0045652 GO:0045652
## GO:0010940 GO:0010940
## GO:0045360 GO:0045360
## GO:1904705 GO:1904705
## GO:1990874 GO:1990874
## GO:0070613 GO:0070613
## GO:1904995 GO:1904995
## GO:1905031 GO:1905031
## GO:0035886 GO:0035886
## GO:0032369 GO:0032369
## GO:0010612 GO:0010612
## GO:1903242 GO:1903242
## GO:1905288 GO:1905288
## GO:1905459 GO:1905459
## GO:0014744 GO:0014744
## GO:1901343 GO:1901343
## GO:0051013 GO:0051013
## GO:0010633 GO:0010633
## GO:1904738 GO:1904738
## GO:1904752 GO:1904752
## GO:0010989 GO:0010989
## GO:0003341 GO:0003341
## GO:0006956 GO:0006956
## GO:0043535 GO:0043535
## GO:2000181 GO:2000181
## GO:0010984 GO:0010984
## GO:0000244 GO:0000244
## GO:1903589 GO:1903589
## GO:0010985 GO:0010985
## GO:2000543 GO:2000543
## GO:1904683 GO:1904683
## GO:0016525 GO:0016525
## GO:0002042 GO:0002042
## GO:0002920 GO:0002920
## GO:0051152 GO:0051152
## GO:1900239 GO:1900239
## GO:1901748 GO:1901748
## GO:1901750 GO:1901750
## GO:0090677 GO:0090677
## GO:1905651 GO:1905651
## GO:0009913 GO:0009913
## GO:1905203 GO:1905203
## GO:0006617 GO:0006617
## GO:0010615 GO:0010615
## GO:1903244 GO:1903244
## GO:2000818 GO:2000818
## GO:0006376 GO:0006376
## GO:1905063 GO:1905063
## GO:1905205 GO:1905205
## GO:2000257 GO:2000257
## GO:0036166 GO:0036166
## GO:0045653 GO:0045653
## GO:1905065 GO:1905065
## GO:0010596 GO:0010596
## GO:0002040 GO:0002040
## GO:0030449 GO:0030449
## GO:0070103 GO:0070103
## GO:1904753 GO:1904753
## GO:1904706 GO:1904706
## GO:0001937 GO:0001937
## GO:0101023 GO:0101023
## GO:1905562 GO:1905562
## GO:0032372 GO:0032372
## GO:0032375 GO:0032375
## GO:0070104 GO:0070104
## GO:0002455 GO:0002455
## GO:0090049 GO:0090049
## GO:0006335 GO:0006335
## GO:0034723 GO:0034723
## GO:0045292 GO:0045292
## GO:0000183 GO:0000183
## GO:0030216 GO:0030216
## GO:0090370 GO:0090370
## GO:0043537 GO:0043537
## GO:0034249 GO:0034249
## GO:0090051 GO:0090051
## GO:0002043 GO:0002043
## GO:0006958 GO:0006958
## GO:1905563 GO:1905563
## GO:1903670 GO:1903670
## GO:0017148 GO:0017148
## GO:1903588 GO:1903588
## GO:1903587 GO:1903587
## GO:0000395 GO:0000395
## GO:1903671 GO:1903671
## GO:0031424 GO:0031424
## GO:0007608 GO:0007608
## GO:0009593 GO:0009593
## GO:0035278 GO:0035278
## GO:0040033 GO:0040033
## GO:0045974 GO:0045974
## GO:0050907 GO:0050907
## GO:0050911 GO:0050911
## Description
## GO:0009991 response to extracellular stimulus
## GO:0048732 gland development
## GO:1901652 response to peptide
## GO:0031667 response to nutrient levels
## GO:0043062 extracellular structure organization
## GO:0050878 regulation of body fluid levels
## GO:0002446 neutrophil mediated immunity
## GO:0009636 response to toxic substance
## GO:0010038 response to metal ion
## GO:0048545 response to steroid hormone
## GO:0048511 rhythmic process
## GO:0002283 neutrophil activation involved in immune response
## GO:0042119 neutrophil activation
## GO:0043312 neutrophil degranulation
## GO:0001101 response to acid chemical
## GO:0070482 response to oxygen levels
## GO:0023061 signal release
## GO:0043434 response to peptide hormone
## GO:0030198 extracellular matrix organization
## GO:0061458 reproductive system development
## GO:0048667 cell morphogenesis involved in neuron differentiation
## GO:1904951 positive regulation of establishment of protein localization
## GO:0006875 cellular metal ion homeostasis
## GO:0048608 reproductive structure development
## GO:0051047 positive regulation of secretion
## GO:0036293 response to decreased oxygen levels
## GO:0055074 calcium ion homeostasis
## GO:0001666 response to hypoxia
## GO:0045785 positive regulation of cell adhesion
## GO:0072507 divalent inorganic cation homeostasis
## GO:0006874 cellular calcium ion homeostasis
## GO:0071900 regulation of protein serine/threonine kinase activity
## GO:1903532 positive regulation of secretion by cell
## GO:0001655 urogenital system development
## GO:0042110 T cell activation
## GO:0046677 response to antibiotic
## GO:0002521 leukocyte differentiation
## GO:0031589 cell-substrate adhesion
## GO:0001501 skeletal system development
## GO:0072503 cellular divalent inorganic cation homeostasis
## GO:0051222 positive regulation of protein transport
## GO:0099177 regulation of trans-synaptic signaling
## GO:0050804 modulation of chemical synaptic transmission
## GO:0061564 axon development
## GO:0043410 positive regulation of MAPK cascade
## GO:0019058 viral life cycle
## GO:0072594 establishment of protein localization to organelle
## GO:0050769 positive regulation of neurogenesis
## GO:1901615 organic hydroxy compound metabolic process
## GO:0048871 multicellular organismal homeostasis
## GO:0007409 axonogenesis
## GO:0007599 hemostasis
## GO:1901653 cellular response to peptide
## GO:0051098 regulation of binding
## GO:0007596 blood coagulation
## GO:0010975 regulation of neuron projection development
## GO:0070997 neuron death
## GO:0043405 regulation of MAP kinase activity
## GO:0090066 regulation of anatomical structure size
## GO:0051493 regulation of cytoskeleton organization
## GO:0051656 establishment of organelle localization
## GO:0032147 activation of protein kinase activity
## GO:0071214 cellular response to abiotic stimulus
## GO:0104004 cellular response to environmental stimulus
## GO:0006936 muscle contraction
## GO:0071902 positive regulation of protein serine/threonine kinase activity
## GO:0007584 response to nutrient
## GO:0050817 coagulation
## GO:0062012 regulation of small molecule metabolic process
## GO:0060627 regulation of vesicle-mediated transport
## GO:0009914 hormone transport
## GO:0002791 regulation of peptide secretion
## GO:0016569 covalent chromatin modification
## GO:1903829 positive regulation of cellular protein localization
## GO:0018108 peptidyl-tyrosine phosphorylation
## GO:0007623 circadian rhythm
## GO:0009314 response to radiation
## GO:0018212 peptidyl-tyrosine modification
## GO:0071496 cellular response to external stimulus
## GO:0022604 regulation of cell morphogenesis
## GO:0097305 response to alcohol
## GO:0030522 intracellular receptor signaling pathway
## GO:0051480 regulation of cytosolic calcium ion concentration
## GO:0002694 regulation of leukocyte activation
## GO:0046879 hormone secretion
## GO:0022407 regulation of cell-cell adhesion
## GO:0032386 regulation of intracellular transport
## GO:0019932 second-messenger-mediated signaling
## GO:0003012 muscle system process
## GO:0016049 cell growth
## GO:0016570 histone modification
## GO:0031346 positive regulation of cell projection organization
## GO:0001503 ossification
## GO:0050708 regulation of protein secretion
## GO:0072001 renal system development
## GO:0044706 multi-multicellular organism process
## GO:0001819 positive regulation of cytokine production
## GO:0035690 cellular response to drug
## GO:0010769 regulation of cell morphogenesis involved in differentiation
## GO:0006979 response to oxidative stress
## GO:0007568 aging
## GO:0001822 kidney development
## GO:1901214 regulation of neuron death
## GO:0043406 positive regulation of MAP kinase activity
## GO:0046883 regulation of hormone secretion
## GO:0048568 embryonic organ development
## GO:0009410 response to xenobiotic stimulus
## GO:0051249 regulation of lymphocyte activation
## GO:0071383 cellular response to steroid hormone stimulus
## GO:0006367 transcription initiation from RNA polymerase II promoter
## GO:0001505 regulation of neurotransmitter levels
## GO:0019882 antigen processing and presentation
## GO:0007204 positive regulation of cytosolic calcium ion concentration
## GO:0007159 leukocyte cell-cell adhesion
## GO:0043900 regulation of multi-organism process
## GO:0060326 cell chemotaxis
## GO:0030098 lymphocyte differentiation
## GO:0007565 female pregnancy
## GO:2001233 regulation of apoptotic signaling pathway
## GO:0022411 cellular component disassembly
## GO:0044282 small molecule catabolic process
## GO:0072522 purine-containing compound biosynthetic process
## GO:0006836 neurotransmitter transport
## GO:0007160 cell-matrix adhesion
## GO:0001659 temperature homeostasis
## GO:0051091 positive regulation of DNA-binding transcription factor activity
## GO:0009612 response to mechanical stimulus
## GO:0034330 cell junction organization
## GO:0016053 organic acid biosynthetic process
## GO:0051169 nuclear transport
## GO:0071375 cellular response to peptide hormone stimulus
## GO:0045666 positive regulation of neuron differentiation
## GO:0046394 carboxylic acid biosynthetic process
## GO:0006164 purine nucleotide biosynthetic process
## GO:0006520 cellular amino acid metabolic process
## GO:0018205 peptidyl-lysine modification
## GO:0070661 leukocyte proliferation
## GO:0006913 nucleocytoplasmic transport
## GO:0008202 steroid metabolic process
## GO:0002237 response to molecule of bacterial origin
## GO:0042391 regulation of membrane potential
## GO:0048880 sensory system development
## GO:0001558 regulation of cell growth
## GO:0045088 regulation of innate immune response
## GO:0002440 production of molecular mediator of immune response
## GO:0097191 extrinsic apoptotic signaling pathway
## GO:0003015 heart process
## GO:0046390 ribose phosphate biosynthetic process
## GO:0042176 regulation of protein catabolic process
## GO:0007611 learning or memory
## GO:0001701 in utero embryonic development
## GO:0032496 response to lipopolysaccharide
## GO:0043010 camera-type eye development
## GO:0032388 positive regulation of intracellular transport
## GO:0072330 monocarboxylic acid biosynthetic process
## GO:0009152 purine ribonucleotide biosynthetic process
## GO:0007264 small GTPase mediated signal transduction
## GO:0044839 cell cycle G2/M phase transition
## GO:0043903 regulation of symbiosis, encompassing mutualism through parasitism
## GO:0009266 response to temperature stimulus
## GO:0006732 coenzyme metabolic process
## GO:0048002 antigen processing and presentation of peptide antigen
## GO:0009150 purine ribonucleotide metabolic process
## GO:0034329 cell junction assembly
## GO:1903522 regulation of blood circulation
## GO:0150063 visual system development
## GO:0001654 eye development
## GO:0022409 positive regulation of cell-cell adhesion
## GO:0009260 ribonucleotide biosynthetic process
## GO:0030900 forebrain development
## GO:0006816 calcium ion transport
## GO:0051402 neuron apoptotic process
## GO:0051188 cofactor biosynthetic process
## GO:0072511 divalent inorganic cation transport
## GO:0032943 mononuclear cell proliferation
## GO:0051090 regulation of DNA-binding transcription factor activity
## GO:0009755 hormone-mediated signaling pathway
## GO:0071241 cellular response to inorganic substance
## GO:0097193 intrinsic apoptotic signaling pathway
## GO:0010976 positive regulation of neuron projection development
## GO:0016055 Wnt signaling pathway
## GO:0046651 lymphocyte proliferation
## GO:0009615 response to virus
## GO:0031647 regulation of protein stability
## GO:0018105 peptidyl-serine phosphorylation
## GO:0198738 cell-cell signaling by wnt
## GO:0070838 divalent metal ion transport
## GO:0002793 positive regulation of peptide secretion
## GO:0060047 heart contraction
## GO:0051235 maintenance of location
## GO:0007265 Ras protein signal transduction
## GO:0071229 cellular response to acid chemical
## GO:0042063 gliogenesis
## GO:0032355 response to estradiol
## GO:0043401 steroid hormone mediated signaling pathway
## GO:0106106 cold-induced thermogenesis
## GO:0120161 regulation of cold-induced thermogenesis
## GO:0035270 endocrine system development
## GO:0050863 regulation of T cell activation
## GO:1990845 adaptive thermogenesis
## GO:1903037 regulation of leukocyte cell-cell adhesion
## GO:0045862 positive regulation of proteolysis
## GO:0006352 DNA-templated transcription, initiation
## GO:0010810 regulation of cell-substrate adhesion
## GO:0050890 cognition
## GO:0001763 morphogenesis of a branching structure
## GO:0000086 G2/M transition of mitotic cell cycle
## GO:0061138 morphogenesis of a branching epithelium
## GO:0019080 viral gene expression
## GO:0007548 sex differentiation
## GO:0050867 positive regulation of cell activation
## GO:0014074 response to purine-containing compound
## GO:0048872 homeostasis of number of cells
## GO:1901617 organic hydroxy compound biosynthetic process
## GO:0009108 coenzyme biosynthetic process
## GO:0009896 positive regulation of catabolic process
## GO:0072331 signal transduction by p53 class mediator
## GO:0050714 positive regulation of protein secretion
## GO:0032868 response to insulin
## GO:0019216 regulation of lipid metabolic process
## GO:0043254 regulation of protein complex assembly
## GO:0019884 antigen processing and presentation of exogenous antigen
## GO:1901293 nucleoside phosphate biosynthetic process
## GO:0006066 alcohol metabolic process
## GO:0031098 stress-activated protein kinase signaling cascade
## GO:2000116 regulation of cysteine-type endopeptidase activity
## GO:2000027 regulation of animal organ morphogenesis
## GO:0030595 leukocyte chemotaxis
## GO:0030168 platelet activation
## GO:0009165 nucleotide biosynthetic process
## GO:0048193 Golgi vesicle transport
## GO:0006090 pyruvate metabolic process
## GO:0045471 response to ethanol
## GO:0002478 antigen processing and presentation of exogenous peptide antigen
## GO:0018209 peptidyl-serine modification
## GO:0045926 negative regulation of growth
## GO:0030323 respiratory tube development
## GO:0050920 regulation of chemotaxis
## GO:0060562 epithelial tube morphogenesis
## GO:0051403 stress-activated MAPK cascade
## GO:0002696 positive regulation of leukocyte activation
## GO:0006605 protein targeting
## GO:0031668 cellular response to extracellular stimulus
## GO:0061448 connective tissue development
## GO:0007163 establishment or maintenance of cell polarity
## GO:0016052 carbohydrate catabolic process
## GO:0032970 regulation of actin filament-based process
## GO:0071248 cellular response to metal ion
## GO:0060541 respiratory system development
## GO:0000302 response to reactive oxygen species
## GO:0045089 positive regulation of innate immune response
## GO:0030072 peptide hormone secretion
## GO:0048863 stem cell differentiation
## GO:0071453 cellular response to oxygen levels
## GO:0043281 regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0050792 regulation of viral process
## GO:0016358 dendrite development
## GO:0033157 regulation of intracellular protein transport
## GO:0009743 response to carbohydrate
## GO:0006402 mRNA catabolic process
## GO:0002064 epithelial cell development
## GO:0030324 lung development
## GO:0051701 interaction with host
## GO:0002685 regulation of leukocyte migration
## GO:0002683 negative regulation of immune system process
## GO:0034504 protein localization to nucleus
## GO:0032535 regulation of cellular component size
## GO:0019083 viral transcription
## GO:0070646 protein modification by small protein removal
## GO:0043523 regulation of neuron apoptotic process
## GO:1903039 positive regulation of leukocyte cell-cell adhesion
## GO:0050900 leukocyte migration
## GO:0006401 RNA catabolic process
## GO:0043161 proteasome-mediated ubiquitin-dependent protein catabolic process
## GO:0010498 proteasomal protein catabolic process
## GO:0140014 mitotic nuclear division
## GO:0043393 regulation of protein binding
## GO:0046683 response to organophosphorus
## GO:0050921 positive regulation of chemotaxis
## GO:0060249 anatomical structure homeostasis
## GO:0009124 nucleoside monophosphate biosynthetic process
## GO:0010639 negative regulation of organelle organization
## GO:0070555 response to interleukin-1
## GO:0045787 positive regulation of cell cycle
## GO:0032103 positive regulation of response to external stimulus
## GO:1901654 response to ketone
## GO:0003018 vascular process in circulatory system
## GO:0009127 purine nucleoside monophosphate biosynthetic process
## GO:0009168 purine ribonucleoside monophosphate biosynthetic process
## GO:0034599 cellular response to oxidative stress
## GO:0007050 cell cycle arrest
## GO:0042113 B cell activation
## GO:0051251 positive regulation of lymphocyte activation
## GO:0071347 cellular response to interleukin-1
## GO:0008217 regulation of blood pressure
## GO:0048015 phosphatidylinositol-mediated signaling
## GO:1902749 regulation of cell cycle G2/M phase transition
## GO:0060537 muscle tissue development
## GO:0008016 regulation of heart contraction
## GO:0002703 regulation of leukocyte mediated immunity
## GO:0050730 regulation of peptidyl-tyrosine phosphorylation
## GO:0048017 inositol lipid-mediated signaling
## GO:0050852 T cell receptor signaling pathway
## GO:0045930 negative regulation of mitotic cell cycle
## GO:0050806 positive regulation of synaptic transmission
## GO:0009156 ribonucleoside monophosphate biosynthetic process
## GO:0006733 oxidoreduction coenzyme metabolic process
## GO:0002367 cytokine production involved in immune response
## GO:0036294 cellular response to decreased oxygen levels
## GO:0051648 vesicle localization
## GO:0043270 positive regulation of ion transport
## GO:0051052 regulation of DNA metabolic process
## GO:0002698 negative regulation of immune effector process
## GO:0019318 hexose metabolic process
## GO:0002474 antigen processing and presentation of peptide antigen via MHC class I
## GO:0033273 response to vitamin
## GO:0017157 regulation of exocytosis
## GO:0045137 development of primary sexual characteristics
## GO:0097529 myeloid leukocyte migration
## GO:0034404 nucleobase-containing small molecule biosynthetic process
## GO:0015711 organic anion transport
## GO:0006914 autophagy
## GO:0061919 process utilizing autophagic mechanism
## GO:0050770 regulation of axonogenesis
## GO:1990778 protein localization to cell periphery
## GO:2001235 positive regulation of apoptotic signaling pathway
## GO:0030217 T cell differentiation
## GO:0002758 innate immune response-activating signal transduction
## GO:0030260 entry into host cell
## GO:0044409 entry into host
## GO:0051806 entry into cell of other organism involved in symbiotic interaction
## GO:0051828 entry into other organism involved in symbiotic interaction
## GO:0003007 heart morphogenesis
## GO:0002699 positive regulation of immune effector process
## GO:0006109 regulation of carbohydrate metabolic process
## GO:0050870 positive regulation of T cell activation
## GO:0071456 cellular response to hypoxia
## GO:0016579 protein deubiquitination
## GO:0002218 activation of innate immune response
## GO:0014706 striated muscle tissue development
## GO:0010770 positive regulation of cell morphogenesis involved in differentiation
## GO:0032956 regulation of actin cytoskeleton organization
## GO:0046661 male sex differentiation
## GO:0051099 positive regulation of binding
## GO:0008406 gonad development
## GO:0050880 regulation of blood vessel size
## GO:0000075 cell cycle checkpoint
## GO:0033044 regulation of chromosome organization
## GO:0051591 response to cAMP
## GO:0031960 response to corticosteroid
## GO:0009416 response to light stimulus
## GO:0048638 regulation of developmental growth
## GO:0010506 regulation of autophagy
## GO:0046434 organophosphate catabolic process
## GO:0031669 cellular response to nutrient levels
## GO:0010001 glial cell differentiation
## GO:0009167 purine ribonucleoside monophosphate metabolic process
## GO:0030308 negative regulation of cell growth
## GO:0009161 ribonucleoside monophosphate metabolic process
## GO:0050821 protein stabilization
## GO:1901292 nucleoside phosphate catabolic process
## GO:0050808 synapse organization
## GO:0009408 response to heat
## GO:0090276 regulation of peptide hormone secretion
## GO:0051650 establishment of vesicle localization
## GO:0042770 signal transduction in response to DNA damage
## GO:0048813 dendrite morphogenesis
## GO:0010948 negative regulation of cell cycle process
## GO:0010959 regulation of metal ion transport
## GO:0051054 positive regulation of DNA metabolic process
## GO:0007187 G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## GO:0051216 cartilage development
## GO:0044262 cellular carbohydrate metabolic process
## GO:0007626 locomotory behavior
## GO:0046718 viral entry into host cell
## GO:0009126 purine nucleoside monophosphate metabolic process
## GO:0022612 gland morphogenesis
## GO:0009166 nucleotide catabolic process
## GO:0009144 purine nucleoside triphosphate metabolic process
## GO:1902107 positive regulation of leukocyte differentiation
## GO:0010389 regulation of G2/M transition of mitotic cell cycle
## GO:0010721 negative regulation of cell development
## GO:0009123 nucleoside monophosphate metabolic process
## GO:0035150 regulation of tube size
## GO:0021700 developmental maturation
## GO:0034612 response to tumor necrosis factor
## GO:1902903 regulation of supramolecular fiber organization
## GO:0050851 antigen receptor-mediated signaling pathway
## GO:0014065 phosphatidylinositol 3-kinase signaling
## GO:0043620 regulation of DNA-templated transcription in response to stress
## GO:0001890 placenta development
## GO:0034976 response to endoplasmic reticulum stress
## GO:0031331 positive regulation of cellular catabolic process
## GO:0006096 glycolytic process
## GO:0007254 JNK cascade
## GO:0072524 pyridine-containing compound metabolic process
## GO:0007612 learning
## GO:0061008 hepaticobiliary system development
## GO:0048754 branching morphogenesis of an epithelial tube
## GO:0031032 actomyosin structure organization
## GO:0051961 negative regulation of nervous system development
## GO:0042445 hormone metabolic process
## GO:0002576 platelet degranulation
## GO:0006754 ATP biosynthetic process
## GO:0030902 hindbrain development
## GO:0090316 positive regulation of intracellular protein transport
## GO:0042866 pyruvate biosynthetic process
## GO:0019362 pyridine nucleotide metabolic process
## GO:0046496 nicotinamide nucleotide metabolic process
## GO:0000226 microtubule cytoskeleton organization
## GO:0006260 DNA replication
## GO:0008361 regulation of cell size
## GO:0042180 cellular ketone metabolic process
## GO:0030048 actin filament-based movement
## GO:0009205 purine ribonucleoside triphosphate metabolic process
## GO:0002262 myeloid cell homeostasis
## GO:0007411 axon guidance
## GO:0003205 cardiac chamber development
## GO:0070507 regulation of microtubule cytoskeleton organization
## GO:0051092 positive regulation of NF-kappaB transcription factor activity
## GO:1903708 positive regulation of hemopoiesis
## GO:0042326 negative regulation of phosphorylation
## GO:0071356 cellular response to tumor necrosis factor
## GO:1901216 positive regulation of neuron death
## GO:0007178 transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0009141 nucleoside triphosphate metabolic process
## GO:0071559 response to transforming growth factor beta
## GO:0009199 ribonucleoside triphosphate metabolic process
## GO:0097485 neuron projection guidance
## GO:0002687 positive regulation of leukocyte migration
## GO:0001889 liver development
## GO:0009145 purine nucleoside triphosphate biosynthetic process
## GO:0120162 positive regulation of cold-induced thermogenesis
## GO:0030073 insulin secretion
## GO:0060070 canonical Wnt signaling pathway
## GO:0050731 positive regulation of peptidyl-tyrosine phosphorylation
## GO:0043902 positive regulation of multi-organism process
## GO:0000187 activation of MAPK activity
## GO:0034332 adherens junction organization
## GO:0007015 actin filament organization
## GO:0006790 sulfur compound metabolic process
## GO:0035296 regulation of tube diameter
## GO:0051170 import into nucleus
## GO:0097746 regulation of blood vessel diameter
## GO:0007162 negative regulation of cell adhesion
## GO:1903362 regulation of cellular protein catabolic process
## GO:0006757 ATP generation from ADP
## GO:0048013 ephrin receptor signaling pathway
## GO:0002700 regulation of production of molecular mediator of immune response
## GO:0030879 mammary gland development
## GO:0046546 development of primary male sexual characteristics
## GO:0009206 purine ribonucleoside triphosphate biosynthetic process
## GO:0003206 cardiac chamber morphogenesis
## GO:0060337 type I interferon signaling pathway
## GO:0071357 cellular response to type I interferon
## GO:0070302 regulation of stress-activated protein kinase signaling cascade
## GO:0007044 cell-substrate junction assembly
## GO:0010821 regulation of mitochondrion organization
## GO:0035966 response to topologically incorrect protein
## GO:0060560 developmental growth involved in morphogenesis
## GO:0070663 regulation of leukocyte proliferation
## GO:0009895 negative regulation of catabolic process
## GO:0051924 regulation of calcium ion transport
## GO:0046777 protein autophosphorylation
## GO:0008584 male gonad development
## GO:0034660 ncRNA metabolic process
## GO:0002688 regulation of leukocyte chemotaxis
## GO:0006941 striated muscle contraction
## GO:0046034 ATP metabolic process
## GO:0046822 regulation of nucleocytoplasmic transport
## GO:0034340 response to type I interferon
## GO:0035264 multicellular organism growth
## GO:0016054 organic acid catabolic process
## GO:0046395 carboxylic acid catabolic process
## GO:0090596 sensory organ morphogenesis
## GO:0032872 regulation of stress-activated MAPK cascade
## GO:0043618 regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0048167 regulation of synaptic plasticity
## GO:0017038 protein import
## GO:0042098 T cell proliferation
## GO:0071478 cellular response to radiation
## GO:0050768 negative regulation of neurogenesis
## GO:0006006 glucose metabolic process
## GO:1990823 response to leukemia inhibitory factor
## GO:1990830 cellular response to leukemia inhibitory factor
## GO:0032944 regulation of mononuclear cell proliferation
## GO:0034284 response to monosaccharide
## GO:1902105 regulation of leukocyte differentiation
## GO:0009201 ribonucleoside triphosphate biosynthetic process
## GO:0006457 protein folding
## GO:0007272 ensheathment of neurons
## GO:0008366 axon ensheathment
## GO:0051592 response to calcium ion
## GO:1901215 negative regulation of neuron death
## GO:0014066 regulation of phosphatidylinositol 3-kinase signaling
## GO:0006606 protein import into nucleus
## GO:0050670 regulation of lymphocyte proliferation
## GO:0071560 cellular response to transforming growth factor beta stimulus
## GO:0045927 positive regulation of growth
## GO:0007093 mitotic cell cycle checkpoint
## GO:0031330 negative regulation of cellular catabolic process
## GO:0046031 ADP metabolic process
## GO:0071695 anatomical structure maturation
## GO:1901796 regulation of signal transduction by p53 class mediator
## GO:0072593 reactive oxygen species metabolic process
## GO:0048562 embryonic organ morphogenesis
## GO:1903706 regulation of hemopoiesis
## GO:0046887 positive regulation of hormone secretion
## GO:0030099 myeloid cell differentiation
## GO:1902850 microtubule cytoskeleton organization involved in mitosis
## GO:0006289 nucleotide-excision repair
## GO:0030518 intracellular steroid hormone receptor signaling pathway
## GO:0006694 steroid biosynthetic process
## GO:0019079 viral genome replication
## GO:0021543 pallium development
## GO:0070371 ERK1 and ERK2 cascade
## GO:0032869 cellular response to insulin stimulus
## GO:0030330 DNA damage response, signal transduction by p53 class mediator
## GO:0043279 response to alkaloid
## GO:0035637 multicellular organismal signaling
## GO:0060348 bone development
## GO:1900542 regulation of purine nucleotide metabolic process
## GO:0070498 interleukin-1-mediated signaling pathway
## GO:1905475 regulation of protein localization to membrane
## GO:0048705 skeletal system morphogenesis
## GO:0060401 cytosolic calcium ion transport
## GO:0046328 regulation of JNK cascade
## GO:0050796 regulation of insulin secretion
## GO:0006475 internal protein amino acid acetylation
## GO:0006140 regulation of nucleotide metabolic process
## GO:0010811 positive regulation of cell-substrate adhesion
## GO:0005996 monosaccharide metabolic process
## GO:0072659 protein localization to plasma membrane
## GO:0001508 action potential
## GO:0042752 regulation of circadian rhythm
## GO:0006110 regulation of glycolytic process
## GO:1900046 regulation of hemostasis
## GO:0009746 response to hexose
## GO:1900371 regulation of purine nucleotide biosynthetic process
## GO:0035967 cellular response to topologically incorrect protein
## GO:0051196 regulation of coenzyme metabolic process
## GO:0007517 muscle organ development
## GO:0071216 cellular response to biotic stimulus
## GO:0042552 myelination
## GO:0051258 protein polymerization
## GO:0051384 response to glucocorticoid
## GO:0007005 mitochondrion organization
## GO:0098781 ncRNA transcription
## GO:0043491 protein kinase B signaling
## GO:0009142 nucleoside triphosphate biosynthetic process
## GO:1903311 regulation of mRNA metabolic process
## GO:0030193 regulation of blood coagulation
## GO:0031099 regeneration
## GO:0001952 regulation of cell-matrix adhesion
## GO:0034605 cellular response to heat
## GO:0007229 integrin-mediated signaling pathway
## GO:0051495 positive regulation of cytoskeleton organization
## GO:0051607 defense response to virus
## GO:0042446 hormone biosynthetic process
## GO:0043470 regulation of carbohydrate catabolic process
## GO:0045665 negative regulation of neuron differentiation
## GO:0052547 regulation of peptidase activity
## GO:1901990 regulation of mitotic cell cycle phase transition
## GO:0048524 positive regulation of viral process
## GO:0007188 adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## GO:0043488 regulation of mRNA stability
## GO:0051588 regulation of neurotransmitter transport
## GO:0000077 DNA damage checkpoint
## GO:0009135 purine nucleoside diphosphate metabolic process
## GO:0009179 purine ribonucleoside diphosphate metabolic process
## GO:1905330 regulation of morphogenesis of an epithelium
## GO:0006631 fatty acid metabolic process
## GO:0061572 actin filament bundle organization
## GO:0042590 antigen processing and presentation of exogenous peptide antigen via MHC class I
## GO:0030100 regulation of endocytosis
## GO:0003014 renal system process
## GO:0031570 DNA integrity checkpoint
## GO:0002456 T cell mediated immunity
## GO:0002718 regulation of cytokine production involved in immune response
## GO:0060218 hematopoietic stem cell differentiation
## GO:0048592 eye morphogenesis
## GO:0060402 calcium ion transport into cytosol
## GO:0006986 response to unfolded protein
## GO:0007269 neurotransmitter secretion
## GO:0032922 circadian regulation of gene expression
## GO:0010952 positive regulation of peptidase activity
## GO:0032886 regulation of microtubule-based process
## GO:0048565 digestive tract development
## GO:0060048 cardiac muscle contraction
## GO:1902036 regulation of hematopoietic stem cell differentiation
## GO:0006473 protein acetylation
## GO:0051017 actin filament bundle assembly
## GO:0072073 kidney epithelium development
## GO:0018394 peptidyl-lysine acetylation
## GO:0010212 response to ionizing radiation
## GO:0007389 pattern specification process
## GO:0008277 regulation of G protein-coupled receptor signaling pathway
## GO:0018393 internal peptidyl-lysine acetylation
## GO:0030811 regulation of nucleotide catabolic process
## GO:0061418 regulation of transcription from RNA polymerase II promoter in response to hypoxia
## GO:0071260 cellular response to mechanical stimulus
## GO:1901987 regulation of cell cycle phase transition
## GO:0021537 telencephalon development
## GO:0006970 response to osmotic stress
## GO:0030808 regulation of nucleotide biosynthetic process
## GO:1903578 regulation of ATP metabolic process
## GO:0071219 cellular response to molecule of bacterial origin
## GO:0051056 regulation of small GTPase mediated signal transduction
## GO:1990868 response to chemokine
## GO:1990869 cellular response to chemokine
## GO:0016051 carbohydrate biosynthetic process
## GO:0046939 nucleotide phosphorylation
## GO:0009185 ribonucleoside diphosphate metabolic process
## GO:2001056 positive regulation of cysteine-type endopeptidase activity
## GO:0009749 response to glucose
## GO:0034765 regulation of ion transmembrane transport
## GO:0048588 developmental cell growth
## GO:0050777 negative regulation of immune response
## GO:0043280 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0016573 histone acetylation
## GO:2001236 regulation of extrinsic apoptotic signaling pathway
## GO:0002573 myeloid leukocyte differentiation
## GO:0061013 regulation of mRNA catabolic process
## GO:0002690 positive regulation of leukocyte chemotaxis
## GO:0014068 positive regulation of phosphatidylinositol 3-kinase signaling
## GO:0006403 RNA localization
## GO:0030010 establishment of cell polarity
## GO:0060359 response to ammonium ion
## GO:0019935 cyclic-nucleotide-mediated signaling
## GO:0038127 ERBB signaling pathway
## GO:1901605 alpha-amino acid metabolic process
## GO:0099643 signal release from synapse
## GO:0015849 organic acid transport
## GO:0046942 carboxylic acid transport
## GO:0034333 adherens junction assembly
## GO:1901888 regulation of cell junction assembly
## GO:2001169 regulation of ATP biosynthetic process
## GO:0043112 receptor metabolic process
## GO:0030258 lipid modification
## GO:0045732 positive regulation of protein catabolic process
## GO:0031532 actin cytoskeleton reorganization
## GO:2001252 positive regulation of chromosome organization
## GO:0002479 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## GO:0031100 animal organ regeneration
## GO:0034614 cellular response to reactive oxygen species
## GO:0006165 nucleoside diphosphate phosphorylation
## GO:1903510 mucopolysaccharide metabolic process
## GO:0070372 regulation of ERK1 and ERK2 cascade
## GO:0072525 pyridine-containing compound biosynthetic process
## GO:0032526 response to retinoic acid
## GO:0030521 androgen receptor signaling pathway
## GO:0032233 positive regulation of actin filament bundle assembly
## GO:0071222 cellular response to lipopolysaccharide
## GO:1901136 carbohydrate derivative catabolic process
## GO:0006888 ER to Golgi vesicle-mediated transport
## GO:0051783 regulation of nuclear division
## GO:0051101 regulation of DNA binding
## GO:0001933 negative regulation of protein phosphorylation
## GO:0071466 cellular response to xenobiotic stimulus
## GO:1903050 regulation of proteolysis involved in cellular protein catabolic process
## GO:0031503 protein-containing complex localization
## GO:0009308 amine metabolic process
## GO:0042593 glucose homeostasis
## GO:0006644 phospholipid metabolic process
## GO:0070098 chemokine-mediated signaling pathway
## GO:0051260 protein homooligomerization
## GO:0032092 positive regulation of protein binding
## GO:0045621 positive regulation of lymphocyte differentiation
## GO:0048285 organelle fission
## GO:0070252 actin-mediated cell contraction
## GO:2001234 negative regulation of apoptotic signaling pathway
## GO:0030111 regulation of Wnt signaling pathway
## GO:0043487 regulation of RNA stability
## GO:0043200 response to amino acid
## GO:0034620 cellular response to unfolded protein
## GO:0042698 ovulation cycle
## GO:1902652 secondary alcohol metabolic process
## GO:0055123 digestive system development
## GO:0050773 regulation of dendrite development
## GO:0042594 response to starvation
## GO:0006283 transcription-coupled nucleotide-excision repair
## GO:0048771 tissue remodeling
## GO:1902905 positive regulation of supramolecular fiber organization
## GO:0046660 female sex differentiation
## GO:0043687 post-translational protein modification
## GO:0019233 sensory perception of pain
## GO:0052548 regulation of endopeptidase activity
## GO:0071897 DNA biosynthetic process
## GO:0031214 biomineral tissue development
## GO:0002819 regulation of adaptive immune response
## GO:0007088 regulation of mitotic nuclear division
## GO:0022406 membrane docking
## GO:0043524 negative regulation of neuron apoptotic process
## GO:0034341 response to interferon-gamma
## GO:0051897 positive regulation of protein kinase B signaling
## GO:0019722 calcium-mediated signaling
## GO:0019359 nicotinamide nucleotide biosynthetic process
## GO:0019363 pyridine nucleotide biosynthetic process
## GO:0072006 nephron development
## GO:0033500 carbohydrate homeostasis
## GO:0042737 drug catabolic process
## GO:1902275 regulation of chromatin organization
## GO:0051651 maintenance of location in cell
## GO:0003002 regionalization
## GO:0097530 granulocyte migration
## GO:0002705 positive regulation of leukocyte mediated immunity
## GO:0071346 cellular response to interferon-gamma
## GO:0044106 cellular amine metabolic process
## GO:0050866 negative regulation of cell activation
## GO:0030534 adult behavior
## GO:0032392 DNA geometric change
## GO:0007052 mitotic spindle organization
## GO:0070588 calcium ion transmembrane transport
## GO:0043087 regulation of GTPase activity
## GO:0051236 establishment of RNA localization
## GO:0007045 cell-substrate adherens junction assembly
## GO:0046849 bone remodeling
## GO:0048041 focal adhesion assembly
## GO:0021987 cerebral cortex development
## GO:0030968 endoplasmic reticulum unfolded protein response
## GO:0015837 amine transport
## GO:0042310 vasoconstriction
## GO:0051952 regulation of amine transport
## GO:0070664 negative regulation of leukocyte proliferation
## GO:0061387 regulation of extent of cell growth
## GO:0051048 negative regulation of secretion
## GO:0070374 positive regulation of ERK1 and ERK2 cascade
## GO:0034101 erythrocyte homeostasis
## GO:0042542 response to hydrogen peroxide
## GO:0043467 regulation of generation of precursor metabolites and energy
## GO:0046578 regulation of Ras protein signal transduction
## GO:0009952 anterior/posterior pattern specification
## GO:1903305 regulation of regulated secretory pathway
## GO:0051250 negative regulation of lymphocyte activation
## GO:0002695 negative regulation of leukocyte activation
## GO:0045185 maintenance of protein location
## GO:0070542 response to fatty acid
## GO:1901532 regulation of hematopoietic progenitor cell differentiation
## GO:0060828 regulation of canonical Wnt signaling pathway
## GO:0022037 metencephalon development
## GO:0099003 vesicle-mediated transport in synapse
## GO:0033238 regulation of cellular amine metabolic process
## GO:0031334 positive regulation of protein complex assembly
## GO:0007249 I-kappaB kinase/NF-kappaB signaling
## GO:0010822 positive regulation of mitochondrion organization
## GO:0014031 mesenchymal cell development
## GO:0007051 spindle organization
## GO:0071236 cellular response to antibiotic
## GO:1903900 regulation of viral life cycle
## GO:0008203 cholesterol metabolic process
## GO:0007200 phospholipase C-activating G protein-coupled receptor signaling pathway
## GO:0010977 negative regulation of neuron projection development
## GO:0051100 negative regulation of binding
## GO:0099504 synaptic vesicle cycle
## GO:0090150 establishment of protein localization to membrane
## GO:0034764 positive regulation of transmembrane transport
## GO:0002244 hematopoietic progenitor cell differentiation
## GO:0071621 granulocyte chemotaxis
## GO:0021761 limbic system development
## GO:0002369 T cell cytokine production
## GO:0001818 negative regulation of cytokine production
## GO:0000280 nuclear division
## GO:1903531 negative regulation of secretion by cell
## GO:0050818 regulation of coagulation
## GO:0030038 contractile actin filament bundle assembly
## GO:0043149 stress fiber assembly
## GO:0055067 monovalent inorganic cation homeostasis
## GO:0051668 localization within membrane
## GO:0050657 nucleic acid transport
## GO:0050658 RNA transport
## GO:0046782 regulation of viral transcription
## GO:0033077 T cell differentiation in thymus
## GO:0050673 epithelial cell proliferation
## GO:0030203 glycosaminoglycan metabolic process
## GO:0009132 nucleoside diphosphate metabolic process
## GO:0045582 positive regulation of T cell differentiation
## GO:2001020 regulation of response to DNA damage stimulus
## GO:1904062 regulation of cation transmembrane transport
## GO:0046165 alcohol biosynthetic process
## GO:0006937 regulation of muscle contraction
## GO:0030183 B cell differentiation
## GO:0001504 neurotransmitter uptake
## GO:0010771 negative regulation of cell morphogenesis involved in differentiation
## GO:0070585 protein localization to mitochondrion
## GO:0001892 embryonic placenta development
## GO:0019748 secondary metabolic process
## GO:0033209 tumor necrosis factor-mediated signaling pathway
## GO:0061136 regulation of proteasomal protein catabolic process
## GO:0016311 dephosphorylation
## GO:0030282 bone mineralization
## GO:0002706 regulation of lymphocyte mediated immunity
## GO:0030218 erythrocyte differentiation
## GO:0008286 insulin receptor signaling pathway
## GO:1905477 positive regulation of protein localization to membrane
## GO:0030177 positive regulation of Wnt signaling pathway
## GO:0016125 sterol metabolic process
## GO:0016073 snRNA metabolic process
## GO:0046686 response to cadmium ion
## GO:0030278 regulation of ossification
## GO:0034446 substrate adhesion-dependent cell spreading
## GO:0010876 lipid localization
## GO:0072163 mesonephric epithelium development
## GO:0072164 mesonephric tubule development
## GO:0050772 positive regulation of axonogenesis
## GO:0072347 response to anesthetic
## GO:0051896 regulation of protein kinase B signaling
## GO:0097237 cellular response to toxic substance
## GO:0061041 regulation of wound healing
## GO:0001823 mesonephros development
## GO:1903034 regulation of response to wounding
## GO:0001954 positive regulation of cell-matrix adhesion
## GO:0051496 positive regulation of stress fiber assembly
## GO:0097366 response to bronchodilator
## GO:0099173 postsynapse organization
## GO:0015696 ammonium transport
## GO:0021782 glial cell development
## GO:0030326 embryonic limb morphogenesis
## GO:0035113 embryonic appendage morphogenesis
## GO:0051928 positive regulation of calcium ion transport
## GO:0032231 regulation of actin filament bundle assembly
## GO:0051168 nuclear export
## GO:2000377 regulation of reactive oxygen species metabolic process
## GO:0015980 energy derivation by oxidation of organic compounds
## GO:0006022 aminoglycan metabolic process
## GO:0001657 ureteric bud development
## GO:0021549 cerebellum development
## GO:0006413 translational initiation
## GO:0033555 multicellular organismal response to stress
## GO:0044272 sulfur compound biosynthetic process
## GO:0006354 DNA-templated transcription, elongation
## GO:0002221 pattern recognition receptor signaling pathway
## GO:0014032 neural crest cell development
## GO:0006766 vitamin metabolic process
## GO:0051289 protein homotetramerization
## GO:0051193 regulation of cofactor metabolic process
## GO:0003151 outflow tract morphogenesis
## GO:0045619 regulation of lymphocyte differentiation
## GO:0042129 regulation of T cell proliferation
## GO:0015893 drug transport
## GO:0048010 vascular endothelial growth factor receptor signaling pathway
## GO:0045807 positive regulation of endocytosis
## GO:0140056 organelle localization by membrane tethering
## GO:1901991 negative regulation of mitotic cell cycle phase transition
## GO:0110053 regulation of actin filament organization
## GO:0090100 positive regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0007369 gastrulation
## GO:0010565 regulation of cellular ketone metabolic process
## GO:0048675 axon extension
## GO:0045165 cell fate commitment
## GO:0003229 ventricular cardiac muscle tissue development
## GO:0010332 response to gamma radiation
## GO:0043122 regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0043547 positive regulation of GTPase activity
## GO:2001251 negative regulation of chromosome organization
## GO:1990138 neuron projection extension
## GO:0072655 establishment of protein localization to mitochondrion
## GO:0051817 modification of morphology or physiology of other organism involved in symbiotic interaction
## GO:0032945 negative regulation of mononuclear cell proliferation
## GO:0048864 stem cell development
## GO:0050672 negative regulation of lymphocyte proliferation
## GO:0046824 positive regulation of nucleocytoplasmic transport
## GO:0006869 lipid transport
## GO:0045834 positive regulation of lipid metabolic process
## GO:0097756 negative regulation of blood vessel diameter
## GO:1900034 regulation of cellular response to heat
## GO:0098801 regulation of renal system process
## GO:0008630 intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0007259 JAK-STAT cascade
## GO:0031345 negative regulation of cell projection organization
## GO:0018958 phenol-containing compound metabolic process
## GO:0032984 protein-containing complex disassembly
## GO:0007179 transforming growth factor beta receptor signaling pathway
## GO:1901988 negative regulation of cell cycle phase transition
## GO:0046545 development of primary female sexual characteristics
## GO:0046330 positive regulation of JNK cascade
## GO:0043543 protein acylation
## GO:0002220 innate immune response activating cell surface receptor signaling pathway
## GO:0007422 peripheral nervous system development
## GO:0001738 morphogenesis of a polarized epithelium
## GO:0071322 cellular response to carbohydrate stimulus
## GO:0048736 appendage development
## GO:0060173 limb development
## GO:0001570 vasculogenesis
## GO:0033143 regulation of intracellular steroid hormone receptor signaling pathway
## GO:0007588 excretion
## GO:0045123 cellular extravasation
## GO:0001649 osteoblast differentiation
## GO:0045444 fat cell differentiation
## GO:0002822 regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0090263 positive regulation of canonical Wnt signaling pathway
## GO:0016050 vesicle organization
## GO:0003231 cardiac ventricle development
## GO:0043123 positive regulation of I-kappaB kinase/NF-kappaB signaling
## GO:0008585 female gonad development
## GO:0045069 regulation of viral genome replication
## GO:0010950 positive regulation of endopeptidase activity
## GO:0090068 positive regulation of cell cycle process
## GO:0035107 appendage morphogenesis
## GO:0035108 limb morphogenesis
## GO:0003208 cardiac ventricle morphogenesis
## GO:0033135 regulation of peptidyl-serine phosphorylation
## GO:0007173 epidermal growth factor receptor signaling pathway
## GO:0015672 monovalent inorganic cation transport
## GO:0015931 nucleobase-containing compound transport
## GO:0001894 tissue homeostasis
## GO:0010675 regulation of cellular carbohydrate metabolic process
## GO:0031056 regulation of histone modification
## GO:0044773 mitotic DNA damage checkpoint
## GO:0043901 negative regulation of multi-organism process
## GO:0016236 macroautophagy
## GO:0031644 regulation of neurological system process
## GO:0008306 associative learning
## GO:0098727 maintenance of cell number
## GO:0036498 IRE1-mediated unfolded protein response
## GO:0035567 non-canonical Wnt signaling pathway
## GO:0042476 odontogenesis
## GO:0097553 calcium ion transmembrane import into cytosol
## GO:0060996 dendritic spine development
## GO:0110020 regulation of actomyosin structure organization
## GO:0002697 regulation of immune effector process
## GO:1902115 regulation of organelle assembly
## GO:0070304 positive regulation of stress-activated protein kinase signaling cascade
## GO:0002377 immunoglobulin production
## GO:0000184 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## GO:0006997 nucleus organization
## GO:1902930 regulation of alcohol biosynthetic process
## GO:0002065 columnar/cuboidal epithelial cell differentiation
## GO:2000278 regulation of DNA biosynthetic process
## GO:0009301 snRNA transcription
## GO:0006611 protein export from nucleus
## GO:2001242 regulation of intrinsic apoptotic signaling pathway
## GO:0050663 cytokine secretion
## GO:0042254 ribosome biogenesis
## GO:0040014 regulation of multicellular organism growth
## GO:0061180 mammary gland epithelium development
## GO:1903391 regulation of adherens junction organization
## GO:0009100 glycoprotein metabolic process
## GO:0006890 retrograde vesicle-mediated transport, Golgi to ER
## GO:0021954 central nervous system neuron development
## GO:0032508 DNA duplex unwinding
## GO:0030307 positive regulation of cell growth
## GO:0032606 type I interferon production
## GO:0021915 neural tube development
## GO:0032874 positive regulation of stress-activated MAPK cascade
## GO:0002886 regulation of myeloid leukocyte mediated immunity
## GO:0046148 pigment biosynthetic process
## GO:0071320 cellular response to cAMP
## GO:0002702 positive regulation of production of molecular mediator of immune response
## GO:0044070 regulation of anion transport
## GO:0032623 interleukin-2 production
## GO:0032507 maintenance of protein location in cell
## GO:0044786 cell cycle DNA replication
## GO:0045576 mast cell activation
## GO:0006470 protein dephosphorylation
## GO:0002223 stimulatory C-type lectin receptor signaling pathway
## GO:0003279 cardiac septum development
## GO:0002504 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## GO:1905269 positive regulation of chromatin organization
## GO:0048593 camera-type eye morphogenesis
## GO:0034470 ncRNA processing
## GO:0009267 cellular response to starvation
## GO:0060041 retina development in camera-type eye
## GO:0050886 endocrine process
## GO:0010256 endomembrane system organization
## GO:0042795 snRNA transcription by RNA polymerase II
## GO:0050715 positive regulation of cytokine secretion
## GO:0002285 lymphocyte activation involved in immune response
## GO:0019827 stem cell population maintenance
## GO:0048639 positive regulation of developmental growth
## GO:0055078 sodium ion homeostasis
## GO:0031058 positive regulation of histone modification
## GO:0015850 organic hydroxy compound transport
## GO:0015844 monoamine transport
## GO:0045580 regulation of T cell differentiation
## GO:0006919 activation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0048738 cardiac muscle tissue development
## GO:0007219 Notch signaling pathway
## GO:2000736 regulation of stem cell differentiation
## GO:0071156 regulation of cell cycle arrest
## GO:0002495 antigen processing and presentation of peptide antigen via MHC class II
## GO:0002709 regulation of T cell mediated immunity
## GO:0051893 regulation of focal adhesion assembly
## GO:0090109 regulation of cell-substrate junction assembly
## GO:0060485 mesenchyme development
## GO:0006839 mitochondrial transport
## GO:0006368 transcription elongation from RNA polymerase II promoter
## GO:0008654 phospholipid biosynthetic process
## GO:0051492 regulation of stress fiber assembly
## GO:0001736 establishment of planar polarity
## GO:0007164 establishment of tissue polarity
## GO:0032479 regulation of type I interferon production
## GO:0046486 glycerolipid metabolic process
## GO:0002279 mast cell activation involved in immune response
## GO:0010463 mesenchymal cell proliferation
## GO:0071675 regulation of mononuclear cell migration
## GO:0071300 cellular response to retinoic acid
## GO:0098739 import across plasma membrane
## GO:0001656 metanephros development
## GO:0060333 interferon-gamma-mediated signaling pathway
## GO:1901655 cellular response to ketone
## GO:0006650 glycerophospholipid metabolic process
## GO:0042133 neurotransmitter metabolic process
## GO:0034440 lipid oxidation
## GO:0046794 transport of virus
## GO:0001764 neuron migration
## GO:1900047 negative regulation of hemostasis
## GO:0043583 ear development
## GO:0001885 endothelial cell development
## GO:0042306 regulation of protein import into nucleus
## GO:0016072 rRNA metabolic process
## GO:0009411 response to UV
## GO:0071479 cellular response to ionizing radiation
## GO:0048814 regulation of dendrite morphogenesis
## GO:0046631 alpha-beta T cell activation
## GO:0050707 regulation of cytokine secretion
## GO:0061337 cardiac conduction
## GO:0044774 mitotic DNA integrity checkpoint
## GO:0060191 regulation of lipase activity
## GO:0061045 negative regulation of wound healing
## GO:0031623 receptor internalization
## GO:0002027 regulation of heart rate
## GO:0060135 maternal process involved in female pregnancy
## GO:0022408 negative regulation of cell-cell adhesion
## GO:0030850 prostate gland development
## GO:0035850 epithelial cell differentiation involved in kidney development
## GO:0000956 nuclear-transcribed mRNA catabolic process
## GO:0050856 regulation of T cell receptor signaling pathway
## GO:0048706 embryonic skeletal system development
## GO:1900180 regulation of protein localization to nucleus
## GO:0090257 regulation of muscle system process
## GO:0038061 NIK/NF-kappaB signaling
## GO:0097164 ammonium ion metabolic process
## GO:0030195 negative regulation of blood coagulation
## GO:0060395 SMAD protein signal transduction
## GO:2001238 positive regulation of extrinsic apoptotic signaling pathway
## GO:0000070 mitotic sister chromatid segregation
## GO:1903557 positive regulation of tumor necrosis factor superfamily cytokine production
## GO:0061005 cell differentiation involved in kidney development
## GO:0009060 aerobic respiration
## GO:0043574 peroxisomal transport
## GO:0002724 regulation of T cell cytokine production
## GO:2000758 positive regulation of peptidyl-lysine acetylation
## GO:0019933 cAMP-mediated signaling
## GO:0062013 positive regulation of small molecule metabolic process
## GO:0072009 nephron epithelium development
## GO:0106027 neuron projection organization
## GO:0097696 STAT cascade
## GO:0044242 cellular lipid catabolic process
## GO:0019395 fatty acid oxidation
## GO:0001909 leukocyte mediated cytotoxicity
## GO:0019886 antigen processing and presentation of exogenous peptide antigen via MHC class II
## GO:1902750 negative regulation of cell cycle G2/M phase transition
## GO:0046474 glycerophospholipid biosynthetic process
## GO:0006026 aminoglycan catabolic process
## GO:0043967 histone H4 acetylation
## GO:0071277 cellular response to calcium ion
## GO:0051028 mRNA transport
## GO:0046425 regulation of JAK-STAT cascade
## GO:0098542 defense response to other organism
## GO:0030516 regulation of axon extension
## GO:0043300 regulation of leukocyte degranulation
## GO:0043303 mast cell degranulation
## GO:0071326 cellular response to monosaccharide stimulus
## GO:0007613 memory
## GO:0032370 positive regulation of lipid transport
## GO:1904589 regulation of protein import
## GO:0048469 cell maturation
## GO:0046890 regulation of lipid biosynthetic process
## GO:0007031 peroxisome organization
## GO:0001755 neural crest cell migration
## GO:0042181 ketone biosynthetic process
## GO:0031333 negative regulation of protein complex assembly
## GO:0060078 regulation of postsynaptic membrane potential
## GO:0002200 somatic diversification of immune receptors
## GO:0006625 protein targeting to peroxisome
## GO:0072662 protein localization to peroxisome
## GO:0072663 establishment of protein localization to peroxisome
## GO:0055010 ventricular cardiac muscle tissue morphogenesis
## GO:0006968 cellular defense response
## GO:0019229 regulation of vasoconstriction
## GO:0009791 post-embryonic development
## GO:0070167 regulation of biomineral tissue development
## GO:0046928 regulation of neurotransmitter secretion
## GO:0071774 response to fibroblast growth factor
## GO:0070050 neuron cellular homeostasis
## GO:1903747 regulation of establishment of protein localization to mitochondrion
## GO:0015800 acidic amino acid transport
## GO:0016999 antibiotic metabolic process
## GO:0071331 cellular response to hexose stimulus
## GO:0050807 regulation of synapse organization
## GO:0016241 regulation of macroautophagy
## GO:0032271 regulation of protein polymerization
## GO:0008344 adult locomotory behavior
## GO:1904019 epithelial cell apoptotic process
## GO:0015718 monocarboxylic acid transport
## GO:2000058 regulation of ubiquitin-dependent protein catabolic process
## GO:0060071 Wnt signaling pathway, planar cell polarity pathway
## GO:0021766 hippocampus development
## GO:0046189 phenol-containing compound biosynthetic process
## GO:0043525 positive regulation of neuron apoptotic process
## GO:0045453 bone resorption
## GO:0075733 intracellular transport of virus
## GO:0003073 regulation of systemic arterial blood pressure
## GO:0010517 regulation of phospholipase activity
## GO:0046785 microtubule polymerization
## GO:0006633 fatty acid biosynthetic process
## GO:0061351 neural precursor cell proliferation
## GO:2000117 negative regulation of cysteine-type endopeptidase activity
## GO:0007589 body fluid secretion
## GO:0097711 ciliary basal body-plasma membrane docking
## GO:0006900 vesicle budding from membrane
## GO:0090277 positive regulation of peptide hormone secretion
## GO:0016042 lipid catabolic process
## GO:0033673 negative regulation of kinase activity
## GO:0071634 regulation of transforming growth factor beta production
## GO:0033260 nuclear DNA replication
## GO:1903364 positive regulation of cellular protein catabolic process
## GO:0006661 phosphatidylinositol biosynthetic process
## GO:0014033 neural crest cell differentiation
## GO:0002224 toll-like receptor signaling pathway
## GO:0006027 glycosaminoglycan catabolic process
## GO:0006521 regulation of cellular amino acid metabolic process
## GO:0032835 glomerulus development
## GO:0030705 cytoskeleton-dependent intracellular transport
## GO:0072395 signal transduction involved in cell cycle checkpoint
## GO:1903320 regulation of protein modification by small protein conjugation or removal
## GO:0032963 collagen metabolic process
## GO:0048762 mesenchymal cell differentiation
## GO:0032760 positive regulation of tumor necrosis factor production
## GO:1905954 positive regulation of lipid localization
## GO:0007043 cell-cell junction assembly
## GO:0010522 regulation of calcium ion transport into cytosol
## GO:0042136 neurotransmitter biosynthetic process
## GO:0031341 regulation of cell killing
## GO:0045921 positive regulation of exocytosis
## GO:0031109 microtubule polymerization or depolymerization
## GO:0045778 positive regulation of ossification
## GO:0048839 inner ear development
## GO:0051208 sequestering of calcium ion
## GO:0033138 positive regulation of peptidyl-serine phosphorylation
## GO:0006911 phagocytosis, engulfment
## GO:0045773 positive regulation of axon extension
## GO:0050434 positive regulation of viral transcription
## GO:0045216 cell-cell junction organization
## GO:0071333 cellular response to glucose stimulus
## GO:0046717 acid secretion
## GO:0032102 negative regulation of response to external stimulus
## GO:0050803 regulation of synapse structure or activity
## GO:0048146 positive regulation of fibroblast proliferation
## GO:0008360 regulation of cell shape
## GO:0014075 response to amine
## GO:0031648 protein destabilization
## GO:0060711 labyrinthine layer development
## GO:0061614 pri-miRNA transcription by RNA polymerase II
## GO:1990089 response to nerve growth factor
## GO:0090175 regulation of establishment of planar polarity
## GO:0002701 negative regulation of production of molecular mediator of immune response
## GO:0042092 type 2 immune response
## GO:0001678 cellular glucose homeostasis
## GO:0006939 smooth muscle contraction
## GO:0002768 immune response-regulating cell surface receptor signaling pathway
## GO:0021536 diencephalon development
## GO:0044766 multi-organism transport
## GO:0072401 signal transduction involved in DNA integrity checkpoint
## GO:0072422 signal transduction involved in DNA damage checkpoint
## GO:1902579 multi-organism localization
## GO:0002062 chondrocyte differentiation
## GO:0060411 cardiac septum morphogenesis
## GO:0006835 dicarboxylic acid transport
## GO:0046364 monosaccharide biosynthetic process
## GO:0031145 anaphase-promoting complex-dependent catabolic process
## GO:0051899 membrane depolarization
## GO:0017156 calcium ion regulated exocytosis
## GO:0035066 positive regulation of histone acetylation
## GO:0051209 release of sequestered calcium ion into cytosol
## GO:0051283 negative regulation of sequestering of calcium ion
## GO:0002088 lens development in camera-type eye
## GO:0071674 mononuclear cell migration
## GO:1903524 positive regulation of blood circulation
## GO:0008637 apoptotic mitochondrial changes
## GO:0006261 DNA-dependent DNA replication
## GO:0090090 negative regulation of canonical Wnt signaling pathway
## GO:0002067 glandular epithelial cell differentiation
## GO:0002448 mast cell mediated immunity
## GO:0051146 striated muscle cell differentiation
## GO:1902117 positive regulation of organelle assembly
## GO:1903169 regulation of calcium ion transmembrane transport
## GO:0010464 regulation of mesenchymal cell proliferation
## GO:0097306 cellular response to alcohol
## GO:1904894 positive regulation of STAT cascade
## GO:0110110 positive regulation of animal organ morphogenesis
## GO:0051348 negative regulation of transferase activity
## GO:0050679 positive regulation of epithelial cell proliferation
## GO:0042108 positive regulation of cytokine biosynthetic process
## GO:0010524 positive regulation of calcium ion transport into cytosol
## GO:0019226 transmission of nerve impulse
## GO:0032663 regulation of interleukin-2 production
## GO:0051937 catecholamine transport
## GO:0006364 rRNA processing
## GO:0071887 leukocyte apoptotic process
## GO:0099565 chemical synaptic transmission, postsynaptic
## GO:0022898 regulation of transmembrane transporter activity
## GO:0006469 negative regulation of protein kinase activity
## GO:0051282 regulation of sequestering of calcium ion
## GO:0033683 nucleotide-excision repair, DNA incision
## GO:0042596 fear response
## GO:0060079 excitatory postsynaptic potential
## GO:0000186 activation of MAPKK activity
## GO:0000819 sister chromatid segregation
## GO:0042100 B cell proliferation
## GO:0002708 positive regulation of lymphocyte mediated immunity
## GO:0032434 regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0050864 regulation of B cell activation
## GO:0071622 regulation of granulocyte chemotaxis
## GO:0031016 pancreas development
## GO:0072332 intrinsic apoptotic signaling pathway by p53 class mediator
## GO:1901224 positive regulation of NIK/NF-kappaB signaling
## GO:0048144 fibroblast proliferation
## GO:0060021 roof of mouth development
## GO:1903035 negative regulation of response to wounding
## GO:0043154 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## GO:0008625 extrinsic apoptotic signaling pathway via death domain receptors
## GO:0016331 morphogenesis of embryonic epithelium
## GO:0035821 modification of morphology or physiology of other organism
## GO:0051494 negative regulation of cytoskeleton organization
## GO:0048048 embryonic eye morphogenesis
## GO:0051954 positive regulation of amine transport
## GO:0072350 tricarboxylic acid metabolic process
## GO:1901890 positive regulation of cell junction assembly
## GO:0001704 formation of primary germ layer
## GO:0071166 ribonucleoprotein complex localization
## GO:0006275 regulation of DNA replication
## GO:2000241 regulation of reproductive process
## GO:0006360 transcription by RNA polymerase I
## GO:0046365 monosaccharide catabolic process
## GO:0042177 negative regulation of protein catabolic process
## GO:0001906 cell killing
## GO:1904375 regulation of protein localization to cell periphery
## GO:0042130 negative regulation of T cell proliferation
## GO:0006635 fatty acid beta-oxidation
## GO:0042440 pigment metabolic process
## GO:2000573 positive regulation of DNA biosynthetic process
## GO:0022600 digestive system process
## GO:0042692 muscle cell differentiation
## GO:0022613 ribonucleoprotein complex biogenesis
## GO:0045861 negative regulation of proteolysis
## GO:0044344 cellular response to fibroblast growth factor stimulus
## GO:0050764 regulation of phagocytosis
## GO:0060349 bone morphogenesis
## GO:0007266 Rho protein signal transduction
## GO:0046488 phosphatidylinositol metabolic process
## GO:0048145 regulation of fibroblast proliferation
## GO:0001667 ameboidal-type cell migration
## GO:0002704 negative regulation of leukocyte mediated immunity
## GO:0042220 response to cocaine
## GO:0032481 positive regulation of type I interferon production
## GO:0060291 long-term synaptic potentiation
## GO:1900182 positive regulation of protein localization to nucleus
## GO:0045445 myoblast differentiation
## GO:0048644 muscle organ morphogenesis
## GO:0071158 positive regulation of cell cycle arrest
## GO:0002209 behavioral defense response
## GO:0002711 positive regulation of T cell mediated immunity
## GO:0007431 salivary gland development
## GO:0016572 histone phosphorylation
## GO:0071604 transforming growth factor beta production
## GO:0001836 release of cytochrome c from mitochondria
## GO:0010518 positive regulation of phospholipase activity
## GO:0032890 regulation of organic acid transport
## GO:0060688 regulation of morphogenesis of a branching structure
## GO:0090183 regulation of kidney development
## GO:1903749 positive regulation of establishment of protein localization to mitochondrion
## GO:2000756 regulation of peptidyl-lysine acetylation
## GO:0071426 ribonucleoprotein complex export from nucleus
## GO:0031018 endocrine pancreas development
## GO:0044060 regulation of endocrine process
## GO:1990090 cellular response to nerve growth factor stimulus
## GO:0006479 protein methylation
## GO:0008213 protein alkylation
## GO:0051302 regulation of cell division
## GO:0000209 protein polyubiquitination
## GO:0032640 tumor necrosis factor production
## GO:1903555 regulation of tumor necrosis factor superfamily cytokine production
## GO:0007098 centrosome cycle
## GO:0034113 heterotypic cell-cell adhesion
## GO:0046635 positive regulation of alpha-beta T cell activation
## GO:0016571 histone methylation
## GO:0051346 negative regulation of hydrolase activity
## GO:0031111 negative regulation of microtubule polymerization or depolymerization
## GO:0038128 ERBB2 signaling pathway
## GO:0097479 synaptic vesicle localization
## GO:0030856 regulation of epithelial cell differentiation
## GO:0032680 regulation of tumor necrosis factor production
## GO:0002720 positive regulation of cytokine production involved in immune response
## GO:0019319 hexose biosynthetic process
## GO:0010972 negative regulation of G2/M transition of mitotic cell cycle
## GO:0046427 positive regulation of JAK-STAT cascade
## GO:0048704 embryonic skeletal system morphogenesis
## GO:0031110 regulation of microtubule polymerization or depolymerization
## GO:0050868 negative regulation of T cell activation
## GO:1903533 regulation of protein targeting
## GO:0009063 cellular amino acid catabolic process
## GO:0072329 monocarboxylic acid catabolic process
## GO:0007492 endoderm development
## GO:0071706 tumor necrosis factor superfamily cytokine production
## GO:0034109 homotypic cell-cell adhesion
## GO:0048708 astrocyte differentiation
## GO:0097061 dendritic spine organization
## GO:0090092 regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0071772 response to BMP
## GO:0071773 cellular response to BMP stimulus
## GO:0016079 synaptic vesicle exocytosis
## GO:0070849 response to epidermal growth factor
## GO:0120163 negative regulation of cold-induced thermogenesis
## GO:0006405 RNA export from nucleus
## GO:0031023 microtubule organizing center organization
## GO:0030178 negative regulation of Wnt signaling pathway
## GO:0001662 behavioral fear response
## GO:0006296 nucleotide-excision repair, DNA incision, 5'-to lesion
## GO:0008207 C21-steroid hormone metabolic process
## GO:0014037 Schwann cell differentiation
## GO:1904892 regulation of STAT cascade
## GO:0006942 regulation of striated muscle contraction
## GO:0014047 glutamate secretion
## GO:0006310 DNA recombination
## GO:0032409 regulation of transporter activity
## GO:0002719 negative regulation of cytokine production involved in immune response
## GO:0042759 long-chain fatty acid biosynthetic process
## GO:0044062 regulation of excretion
## GO:0060561 apoptotic process involved in morphogenesis
## GO:0061842 microtubule organizing center localization
## GO:0032412 regulation of ion transmembrane transporter activity
## GO:0006024 glycosaminoglycan biosynthetic process
## GO:0001658 branching involved in ureteric bud morphogenesis
## GO:0002562 somatic diversification of immune receptors via germline recombination within a single locus
## GO:0016444 somatic cell DNA recombination
## GO:0030593 neutrophil chemotaxis
## GO:0051785 positive regulation of nuclear division
## GO:0098656 anion transmembrane transport
## GO:0021953 central nervous system neuron differentiation
## GO:0044783 G1 DNA damage checkpoint
## GO:0002831 regulation of response to biotic stimulus
## GO:0035065 regulation of histone acetylation
## GO:1900024 regulation of substrate adhesion-dependent cell spreading
## GO:0001776 leukocyte homeostasis
## GO:0051781 positive regulation of cell division
## GO:0032259 methylation
## GO:0008154 actin polymerization or depolymerization
## GO:0050805 negative regulation of synaptic transmission
## GO:0060415 muscle tissue morphogenesis
## GO:0007193 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## GO:1990266 neutrophil migration
## GO:0042107 cytokine metabolic process
## GO:0046632 alpha-beta T cell differentiation
## GO:0048525 negative regulation of viral process
## GO:0070301 cellular response to hydrogen peroxide
## GO:0006805 xenobiotic metabolic process
## GO:0045017 glycerolipid biosynthetic process
## GO:0050810 regulation of steroid biosynthetic process
## GO:0120034 positive regulation of plasma membrane bounded cell projection assembly
## GO:0019320 hexose catabolic process
## GO:0031663 lipopolysaccharide-mediated signaling pathway
## GO:0032615 interleukin-12 production
## GO:0048008 platelet-derived growth factor receptor signaling pathway
## GO:0034754 cellular hormone metabolic process
## GO:0006984 ER-nucleus signaling pathway
## GO:0048538 thymus development
## GO:0060324 face development
## GO:0090199 regulation of release of cytochrome c from mitochondria
## GO:0120032 regulation of plasma membrane bounded cell projection assembly
## GO:0098693 regulation of synaptic vesicle cycle
## GO:1901184 regulation of ERBB signaling pathway
## GO:0045333 cellular respiration
## GO:0003158 endothelium development
## GO:0019218 regulation of steroid metabolic process
## GO:0034767 positive regulation of ion transmembrane transport
## GO:0042417 dopamine metabolic process
## GO:0050892 intestinal absorption
## GO:0090184 positive regulation of kidney development
## GO:1901985 positive regulation of protein acetylation
## GO:1903146 regulation of autophagy of mitochondrion
## GO:0007215 glutamate receptor signaling pathway
## GO:1903902 positive regulation of viral life cycle
## GO:0071482 cellular response to light stimulus
## GO:0006575 cellular modified amino acid metabolic process
## GO:0008380 RNA splicing
## GO:0000079 regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0042089 cytokine biosynthetic process
## GO:0031571 mitotic G1 DNA damage checkpoint
## GO:0044819 mitotic G1/S transition checkpoint
## GO:0055008 cardiac muscle tissue morphogenesis
## GO:0008211 glucocorticoid metabolic process
## GO:0030325 adrenal gland development
## GO:0051642 centrosome localization
## GO:0097581 lamellipodium organization
## GO:0043244 regulation of protein complex disassembly
## GO:0099175 regulation of postsynapse organization
## GO:0032418 lysosome localization
## GO:1903052 positive regulation of proteolysis involved in cellular protein catabolic process
## GO:0048194 Golgi vesicle budding
## GO:0050771 negative regulation of axonogenesis
## GO:0030500 regulation of bone mineralization
## GO:0031670 cellular response to nutrient
## GO:0043507 positive regulation of JUN kinase activity
## GO:0002821 positive regulation of adaptive immune response
## GO:0048709 oligodendrocyte differentiation
## GO:0032609 interferon-gamma production
## GO:0002828 regulation of type 2 immune response
## GO:0034694 response to prostaglandin
## GO:0060491 regulation of cell projection assembly
## GO:0046634 regulation of alpha-beta T cell activation
## GO:0097755 positive regulation of blood vessel diameter
## GO:0002820 negative regulation of adaptive immune response
## GO:0022602 ovulation cycle process
## GO:0045839 negative regulation of mitotic nuclear division
## GO:2000379 positive regulation of reactive oxygen species metabolic process
## GO:0006094 gluconeogenesis
## GO:0032602 chemokine production
## GO:2000177 regulation of neural precursor cell proliferation
## GO:0070527 platelet aggregation
## GO:0032946 positive regulation of mononuclear cell proliferation
## GO:0048489 synaptic vesicle transport
## GO:0097480 establishment of synaptic vesicle localization
## GO:0006023 aminoglycan biosynthetic process
## GO:0000082 G1/S transition of mitotic cell cycle
## GO:0007618 mating
## GO:0061028 establishment of endothelial barrier
## GO:0071470 cellular response to osmotic stress
## GO:1902893 regulation of pri-miRNA transcription by RNA polymerase II
## GO:2000273 positive regulation of signaling receptor activity
## GO:0016925 protein sumoylation
## GO:0022617 extracellular matrix disassembly
## GO:0045913 positive regulation of carbohydrate metabolic process
## GO:0030865 cortical cytoskeleton organization
## GO:0045070 positive regulation of viral genome replication
## GO:2000310 regulation of NMDA receptor activity
## GO:0038034 signal transduction in absence of ligand
## GO:0097192 extrinsic apoptotic signaling pathway in absence of ligand
## GO:0060675 ureteric bud morphogenesis
## GO:0090114 COPII-coated vesicle budding
## GO:0015698 inorganic anion transport
## GO:0006612 protein targeting to membrane
## GO:0051261 protein depolymerization
## GO:0010970 transport along microtubule
## GO:0099111 microtubule-based transport
## GO:0035272 exocrine system development
## GO:0050678 regulation of epithelial cell proliferation
## GO:0002824 positive regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0001841 neural tube formation
## GO:2001237 negative regulation of extrinsic apoptotic signaling pathway
## GO:0043506 regulation of JUN kinase activity
## GO:0050671 positive regulation of lymphocyte proliferation
## GO:1901657 glycosyl compound metabolic process
## GO:0032655 regulation of interleukin-12 production
## GO:0050819 negative regulation of coagulation
## GO:0045682 regulation of epidermis development
## GO:0002888 positive regulation of myeloid leukocyte mediated immunity
## GO:0006101 citrate metabolic process
## GO:0006294 nucleotide-excision repair, preincision complex assembly
## GO:0033006 regulation of mast cell activation involved in immune response
## GO:0045980 negative regulation of nucleotide metabolic process
## GO:0071480 cellular response to gamma radiation
## GO:0097327 response to antineoplastic agent
## GO:0002437 inflammatory response to antigenic stimulus
## GO:0048483 autonomic nervous system development
## GO:1900274 regulation of phospholipase C activity
## GO:0002429 immune response-activating cell surface receptor signaling pathway
## GO:0072431 signal transduction involved in mitotic G1 DNA damage checkpoint
## GO:1902400 intracellular signal transduction involved in G1 DNA damage checkpoint
## GO:0006892 post-Golgi vesicle-mediated transport
## GO:0007601 visual perception
## GO:0055001 muscle cell development
## GO:0014013 regulation of gliogenesis
## GO:0043627 response to estrogen
## GO:0033627 cell adhesion mediated by integrin
## GO:0014020 primary neural tube formation
## GO:0006446 regulation of translational initiation
## GO:0031146 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## GO:1900006 positive regulation of dendrite development
## GO:0014823 response to activity
## GO:0097194 execution phase of apoptosis
## GO:0030049 muscle filament sliding
## GO:0033003 regulation of mast cell activation
## GO:0033275 actin-myosin filament sliding
## GO:1904591 positive regulation of protein import
## GO:0055002 striated muscle cell development
## GO:0007435 salivary gland morphogenesis
## GO:0045777 positive regulation of blood pressure
## GO:2000249 regulation of actin cytoskeleton reorganization
## GO:0002286 T cell activation involved in immune response
## GO:0002761 regulation of myeloid leukocyte differentiation
## GO:0032648 regulation of interferon-beta production
## GO:0043392 negative regulation of DNA binding
## GO:0044273 sulfur compound catabolic process
## GO:0045840 positive regulation of mitotic nuclear division
## GO:0048546 digestive tract morphogenesis
## GO:0061647 histone H3-K9 modification
## GO:1903727 positive regulation of phospholipid metabolic process
## GO:0043414 macromolecule methylation
## GO:0006626 protein targeting to mitochondrion
## GO:0042058 regulation of epidermal growth factor receptor signaling pathway
## GO:0061326 renal tubule development
## GO:0010508 positive regulation of autophagy
## GO:0051784 negative regulation of nuclear division
## GO:0060350 endochondral bone morphogenesis
## GO:0006865 amino acid transport
## GO:0030509 BMP signaling pathway
## GO:0070665 positive regulation of leukocyte proliferation
## GO:0000715 nucleotide-excision repair, DNA damage recognition
## GO:0035584 calcium-mediated signaling using intracellular calcium source
## GO:0035813 regulation of renal sodium excretion
## GO:0042359 vitamin D metabolic process
## GO:0043302 positive regulation of leukocyte degranulation
## GO:0098810 neurotransmitter reuptake
## GO:0010927 cellular component assembly involved in morphogenesis
## GO:0006977 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## GO:0071398 cellular response to fatty acid
## GO:0006775 fat-soluble vitamin metabolic process
## GO:0010828 positive regulation of glucose transmembrane transport
## GO:0060443 mammary gland morphogenesis
## GO:0071364 cellular response to epidermal growth factor stimulus
## GO:0035148 tube formation
## GO:0035019 somatic stem cell population maintenance
## GO:0043462 regulation of ATPase activity
## GO:0034968 histone lysine methylation
## GO:0032024 positive regulation of insulin secretion
## GO:0043647 inositol phosphate metabolic process
## GO:0086003 cardiac muscle cell contraction
## GO:0001910 regulation of leukocyte mediated cytotoxicity
## GO:0008209 androgen metabolic process
## GO:0050869 negative regulation of B cell activation
## GO:0052312 modulation of transcription in other organism involved in symbiotic interaction
## GO:0060765 regulation of androgen receptor signaling pathway
## GO:0070306 lens fiber cell differentiation
## GO:1900543 negative regulation of purine nucleotide metabolic process
## GO:0045931 positive regulation of mitotic cell cycle
## GO:1904029 regulation of cyclin-dependent protein kinase activity
## GO:0007631 feeding behavior
## GO:0016482 cytosolic transport
## GO:0034250 positive regulation of cellular amide metabolic process
## GO:0006284 base-excision repair
## GO:0042769 DNA damage response, detection of DNA damage
## GO:0051985 negative regulation of chromosome segregation
## GO:0010507 negative regulation of autophagy
## GO:0006397 mRNA processing
## GO:0045815 positive regulation of gene expression, epigenetic
## GO:0045912 negative regulation of carbohydrate metabolic process
## GO:0061383 trabecula morphogenesis
## GO:0072698 protein localization to microtubule cytoskeleton
## GO:0009062 fatty acid catabolic process
## GO:0030316 osteoclast differentiation
## GO:2001243 negative regulation of intrinsic apoptotic signaling pathway
## GO:0050953 sensory perception of light stimulus
## GO:0001913 T cell mediated cytotoxicity
## GO:0002756 MyD88-independent toll-like receptor signaling pathway
## GO:0006409 tRNA export from nucleus
## GO:0010039 response to iron ion
## GO:0042554 superoxide anion generation
## GO:0051031 tRNA transport
## GO:0071431 tRNA-containing ribonucleoprotein complex export from nucleus
## GO:0006029 proteoglycan metabolic process
## GO:0006476 protein deacetylation
## GO:0032642 regulation of chemokine production
## GO:0045639 positive regulation of myeloid cell differentiation
## GO:0006584 catecholamine metabolic process
## GO:0009712 catechol-containing compound metabolic process
## GO:2000677 regulation of transcription regulatory region DNA binding
## GO:0019751 polyol metabolic process
## GO:1902904 negative regulation of supramolecular fiber organization
## GO:0002312 B cell activation involved in immune response
## GO:0060998 regulation of dendritic spine development
## GO:1901879 regulation of protein depolymerization
## GO:1901983 regulation of protein acetylation
## GO:0000422 autophagy of mitochondrion
## GO:0016445 somatic diversification of immunoglobulins
## GO:0042982 amyloid precursor protein metabolic process
## GO:0060997 dendritic spine morphogenesis
## GO:0061726 mitochondrion disassembly
## GO:0006901 vesicle coating
## GO:0010812 negative regulation of cell-substrate adhesion
## GO:0051705 multi-organism behavior
## GO:0072171 mesonephric tubule morphogenesis
## GO:0061097 regulation of protein tyrosine kinase activity
## GO:0007519 skeletal muscle tissue development
## GO:0033013 tetrapyrrole metabolic process
## GO:0072413 signal transduction involved in mitotic cell cycle checkpoint
## GO:1902402 signal transduction involved in mitotic DNA damage checkpoint
## GO:1902403 signal transduction involved in mitotic DNA integrity checkpoint
## GO:0051262 protein tetramerization
## GO:0010863 positive regulation of phospholipase C activity
## GO:0021983 pituitary gland development
## GO:0032456 endocytic recycling
## GO:0050954 sensory perception of mechanical stimulus
## GO:0032373 positive regulation of sterol transport
## GO:0032376 positive regulation of cholesterol transport
## GO:0032928 regulation of superoxide anion generation
## GO:0035455 response to interferon-alpha
## GO:0035743 CD4-positive, alpha-beta T cell cytokine production
## GO:0072010 glomerular epithelium development
## GO:0072080 nephron tubule development
## GO:1903076 regulation of protein localization to plasma membrane
## GO:0044843 cell cycle G1/S phase transition
## GO:0006099 tricarboxylic acid cycle
## GO:0009651 response to salt stress
## GO:0032201 telomere maintenance via semi-conservative replication
## GO:0043304 regulation of mast cell degranulation
## GO:0043921 modulation by host of viral transcription
## GO:0052472 modulation by host of symbiont transcription
## GO:0072378 blood coagulation, fibrin clot formation
## GO:1903008 organelle disassembly
## GO:0031638 zymogen activation
## GO:0060986 endocrine hormone secretion
## GO:0030212 hyaluronan metabolic process
## GO:0030574 collagen catabolic process
## GO:0033046 negative regulation of sister chromatid segregation
## GO:0034405 response to fluid shear stress
## GO:0042307 positive regulation of protein import into nucleus
## GO:0051932 synaptic transmission, GABAergic
## GO:2000648 positive regulation of stem cell proliferation
## GO:0007498 mesoderm development
## GO:0072175 epithelial tube formation
## GO:0006903 vesicle targeting
## GO:0006406 mRNA export from nucleus
## GO:0050905 neuromuscular process
## GO:0062014 negative regulation of small molecule metabolic process
## GO:0071427 mRNA-containing ribonucleoprotein complex export from nucleus
## GO:1903038 negative regulation of leukocyte cell-cell adhesion
## GO:0030041 actin filament polymerization
## GO:0009116 nucleoside metabolic process
## GO:0030104 water homeostasis
## GO:0055072 iron ion homeostasis
## GO:0086001 cardiac muscle cell action potential
## GO:0022900 electron transport chain
## GO:0060538 skeletal muscle organ development
## GO:0001975 response to amphetamine
## GO:0071276 cellular response to cadmium ion
## GO:0031343 positive regulation of cell killing
## GO:0044380 protein localization to cytoskeleton
## GO:0048199 vesicle targeting, to, from or within Golgi
## GO:0060193 positive regulation of lipase activity
## GO:0042475 odontogenesis of dentin-containing tooth
## GO:0061035 regulation of cartilage development
## GO:0032091 negative regulation of protein binding
## GO:0006643 membrane lipid metabolic process
## GO:0001541 ovarian follicle development
## GO:0061025 membrane fusion
## GO:0043966 histone H3 acetylation
## GO:0071384 cellular response to corticosteroid stimulus
## GO:0055117 regulation of cardiac muscle contraction
## GO:0009101 glycoprotein biosynthetic process
## GO:0008631 intrinsic apoptotic signaling pathway in response to oxidative stress
## GO:0010677 negative regulation of cellular carbohydrate metabolic process
## GO:0050432 catecholamine secretion
## GO:0098659 inorganic cation import across plasma membrane
## GO:0099587 inorganic ion import across plasma membrane
## GO:0010906 regulation of glucose metabolic process
## GO:0003197 endocardial cushion development
## GO:0033628 regulation of cell adhesion mediated by integrin
## GO:0046850 regulation of bone remodeling
## GO:0090287 regulation of cellular response to growth factor stimulus
## GO:0007620 copulation
## GO:0097734 extracellular exosome biogenesis
## GO:0002053 positive regulation of mesenchymal cell proliferation
## GO:0019934 cGMP-mediated signaling
## GO:0048668 collateral sprouting
## GO:0071624 positive regulation of granulocyte chemotaxis
## GO:1903579 negative regulation of ATP metabolic process
## GO:0006007 glucose catabolic process
## GO:0006734 NADH metabolic process
## GO:0009187 cyclic nucleotide metabolic process
## GO:0010742 macrophage derived foam cell differentiation
## GO:0031076 embryonic camera-type eye development
## GO:0033144 negative regulation of intracellular steroid hormone receptor signaling pathway
## GO:0070670 response to interleukin-4
## GO:0086091 regulation of heart rate by cardiac conduction
## GO:0090077 foam cell differentiation
## GO:0090218 positive regulation of lipid kinase activity
## GO:0097064 ncRNA export from nucleus
## GO:1900026 positive regulation of substrate adhesion-dependent cell spreading
## GO:0006767 water-soluble vitamin metabolic process
## GO:1904064 positive regulation of cation transmembrane transport
## GO:0050795 regulation of behavior
## GO:0071103 DNA conformation change
## GO:0031396 regulation of protein ubiquitination
## GO:0007595 lactation
## GO:0031529 ruffle organization
## GO:0043113 receptor clustering
## GO:1903793 positive regulation of anion transport
## GO:0048207 vesicle targeting, rough ER to cis-Golgi
## GO:0048208 COPII vesicle coating
## GO:0071242 cellular response to ammonium ion
## GO:1904888 cranial skeletal system development
## GO:0000041 transition metal ion transport
## GO:0043473 pigmentation
## GO:0015872 dopamine transport
## GO:0030866 cortical actin cytoskeleton organization
## GO:0045920 negative regulation of exocytosis
## GO:0051955 regulation of amino acid transport
## GO:1903393 positive regulation of adherens junction organization
## GO:1905508 protein localization to microtubule organizing center
## GO:0003170 heart valve development
## GO:0031646 positive regulation of neurological system process
## GO:0046888 negative regulation of hormone secretion
## GO:2001023 regulation of response to drug
## GO:0033047 regulation of mitotic sister chromatid segregation
## GO:0035418 protein localization to synapse
## GO:1901606 alpha-amino acid catabolic process
## GO:0045446 endothelial cell differentiation
## GO:0055076 transition metal ion homeostasis
## GO:0006814 sodium ion transport
## GO:0014015 positive regulation of gliogenesis
## GO:0002823 negative regulation of adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0019835 cytolysis
## GO:0031279 regulation of cyclase activity
## GO:0042987 amyloid precursor protein catabolic process
## GO:0050435 amyloid-beta metabolic process
## GO:0071824 protein-DNA complex subunit organization
## GO:1903409 reactive oxygen species biosynthetic process
## GO:0001676 long-chain fatty acid metabolic process
## GO:0007030 Golgi organization
## GO:0007189 adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:0043624 cellular protein complex disassembly
## GO:0018107 peptidyl-threonine phosphorylation
## GO:0035335 peptidyl-tyrosine dephosphorylation
## GO:0048661 positive regulation of smooth muscle cell proliferation
## GO:0007586 digestion
## GO:0009581 detection of external stimulus
## GO:0035710 CD4-positive, alpha-beta T cell activation
## GO:0051225 spindle assembly
## GO:0071230 cellular response to amino acid stimulus
## GO:0006361 transcription initiation from RNA polymerase I promoter
## GO:0007257 activation of JUN kinase activity
## GO:0033048 negative regulation of mitotic sister chromatid segregation
## GO:0045740 positive regulation of DNA replication
## GO:0060416 response to growth hormone
## GO:0090322 regulation of superoxide metabolic process
## GO:0110111 negative regulation of animal organ morphogenesis
## GO:0007622 rhythmic behavior
## GO:0010171 body morphogenesis
## GO:0060389 pathway-restricted SMAD protein phosphorylation
## GO:0021885 forebrain cell migration
## GO:0050766 positive regulation of phagocytosis
## GO:0003179 heart valve morphogenesis
## GO:0007632 visual behavior
## GO:0051353 positive regulation of oxidoreductase activity
## GO:0090307 mitotic spindle assembly
## GO:0031294 lymphocyte costimulation
## GO:0009582 detection of abiotic stimulus
## GO:0045667 regulation of osteoblast differentiation
## GO:1903322 positive regulation of protein modification by small protein conjugation or removal
## GO:0006706 steroid catabolic process
## GO:0042730 fibrinolysis
## GO:0048596 embryonic camera-type eye morphogenesis
## GO:0050901 leukocyte tethering or rolling
## GO:0051894 positive regulation of focal adhesion assembly
## GO:0070897 transcription preinitiation complex assembly
## GO:1900739 regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:1900740 positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0001843 neural tube closure
## GO:1903725 regulation of phospholipid metabolic process
## GO:0016126 sterol biosynthetic process
## GO:0048678 response to axon injury
## GO:0002577 regulation of antigen processing and presentation
## GO:0002726 positive regulation of T cell cytokine production
## GO:0009713 catechol-containing compound biosynthetic process
## GO:0031280 negative regulation of cyclase activity
## GO:0033189 response to vitamin A
## GO:0042423 catecholamine biosynthetic process
## GO:0051580 regulation of neurotransmitter uptake
## GO:0071731 response to nitric oxide
## GO:1902170 cellular response to reactive nitrogen species
## GO:1990182 exosomal secretion
## GO:0009303 rRNA transcription
## GO:0010543 regulation of platelet activation
## GO:0010743 regulation of macrophage derived foam cell differentiation
## GO:0010862 positive regulation of pathway-restricted SMAD protein phosphorylation
## GO:0032743 positive regulation of interleukin-2 production
## GO:0060603 mammary gland duct morphogenesis
## GO:0061082 myeloid leukocyte cytokine production
## GO:0071539 protein localization to centrosome
## GO:0090022 regulation of neutrophil chemotaxis
## GO:2000142 regulation of DNA-templated transcription, initiation
## GO:0032649 regulation of interferon-gamma production
## GO:0060840 artery development
## GO:2000060 positive regulation of ubiquitin-dependent protein catabolic process
## GO:0000096 sulfur amino acid metabolic process
## GO:0050433 regulation of catecholamine secretion
## GO:0035303 regulation of dephosphorylation
## GO:0000723 telomere maintenance
## GO:0006665 sphingolipid metabolic process
## GO:0033866 nucleoside bisphosphate biosynthetic process
## GO:0034030 ribonucleoside bisphosphate biosynthetic process
## GO:0034033 purine nucleoside bisphosphate biosynthetic process
## GO:0045669 positive regulation of osteoblast differentiation
## GO:0042035 regulation of cytokine biosynthetic process
## GO:0043242 negative regulation of protein complex disassembly
## GO:0046637 regulation of alpha-beta T cell differentiation
## GO:0003044 regulation of systemic arterial blood pressure mediated by a chemical signal
## GO:0035094 response to nicotine
## GO:0051602 response to electrical stimulus
## GO:0097028 dendritic cell differentiation
## GO:0060759 regulation of response to cytokine stimulus
## GO:0001838 embryonic epithelial tube formation
## GO:0032272 negative regulation of protein polymerization
## GO:0034394 protein localization to cell surface
## GO:1903901 negative regulation of viral life cycle
## GO:0031113 regulation of microtubule polymerization
## GO:0044764 multi-organism cellular process
## GO:0046638 positive regulation of alpha-beta T cell differentiation
## GO:0048168 regulation of neuronal synaptic plasticity
## GO:0048512 circadian behavior
## GO:0021675 nerve development
## GO:0043367 CD4-positive, alpha-beta T cell differentiation
## GO:0002381 immunoglobulin production involved in immunoglobulin mediated immune response
## GO:0031295 T cell costimulation
## GO:0001837 epithelial to mesenchymal transition
## GO:0002712 regulation of B cell mediated immunity
## GO:0002889 regulation of immunoglobulin mediated immune response
## GO:0030239 myofibril assembly
## GO:0072132 mesenchyme morphogenesis
## GO:1901607 alpha-amino acid biosynthetic process
## GO:0009452 7-methylguanosine RNA capping
## GO:0014072 response to isoquinoline alkaloid
## GO:0021955 central nervous system neuron axonogenesis
## GO:0036260 RNA capping
## GO:0043276 anoikis
## GO:0043278 response to morphine
## GO:0048566 embryonic digestive tract development
## GO:0060428 lung epithelium development
## GO:0072595 maintenance of protein localization in organelle
## GO:1901030 positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1902622 regulation of neutrophil migration
## GO:0032755 positive regulation of interleukin-6 production
## GO:0051702 interaction with symbiont
## GO:0006855 drug transmembrane transport
## GO:1904427 positive regulation of calcium ion transmembrane transport
## GO:0035265 organ growth
## GO:0072089 stem cell proliferation
## GO:0002407 dendritic cell chemotaxis
## GO:0003181 atrioventricular valve morphogenesis
## GO:0009299 mRNA transcription
## GO:0035812 renal sodium excretion
## GO:0050687 negative regulation of defense response to virus
## GO:0090023 positive regulation of neutrophil chemotaxis
## GO:0008543 fibroblast growth factor receptor signaling pathway
## GO:1904035 regulation of epithelial cell apoptotic process
## GO:0000083 regulation of transcription involved in G1/S transition of mitotic cell cycle
## GO:0001844 protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## GO:0010737 protein kinase A signaling
## GO:0014044 Schwann cell development
## GO:0035666 TRIF-dependent toll-like receptor signaling pathway
## GO:0060993 kidney morphogenesis
## GO:0030809 negative regulation of nucleotide biosynthetic process
## GO:0035994 response to muscle stretch
## GO:0051023 regulation of immunoglobulin secretion
## GO:0072311 glomerular epithelial cell differentiation
## GO:1900372 negative regulation of purine nucleotide biosynthetic process
## GO:1902644 tertiary alcohol metabolic process
## GO:0002707 negative regulation of lymphocyte mediated immunity
## GO:0033280 response to vitamin D
## GO:0051931 regulation of sensory perception
## GO:0016197 endosomal transport
## GO:0007605 sensory perception of sound
## GO:0002637 regulation of immunoglobulin production
## GO:0007585 respiratory gaseous exchange
## GO:0035249 synaptic transmission, glutamatergic
## GO:0043550 regulation of lipid kinase activity
## GO:2001244 positive regulation of intrinsic apoptotic signaling pathway
## GO:0000018 regulation of DNA recombination
## GO:2001057 reactive nitrogen species metabolic process
## GO:0017158 regulation of calcium ion-dependent exocytosis
## GO:0050848 regulation of calcium-mediated signaling
## GO:0010324 membrane invagination
## GO:0008652 cellular amino acid biosynthetic process
## GO:0051881 regulation of mitochondrial membrane potential
## GO:0042088 T-helper 1 type immune response
## GO:0002763 positive regulation of myeloid leukocyte differentiation
## GO:0071385 cellular response to glucocorticoid stimulus
## GO:0099132 ATP hydrolysis coupled cation transmembrane transport
## GO:0042471 ear morphogenesis
## GO:0021695 cerebellar cortex development
## GO:0045687 positive regulation of glial cell differentiation
## GO:0048806 genitalia development
## GO:1904036 negative regulation of epithelial cell apoptotic process
## GO:2000107 negative regulation of leukocyte apoptotic process
## GO:0008347 glial cell migration
## GO:0032608 interferon-beta production
## GO:0035176 social behavior
## GO:0051703 intraspecies interaction between organisms
## GO:0051966 regulation of synaptic transmission, glutamatergic
## GO:0055081 anion homeostasis
## GO:0070671 response to interleukin-12
## GO:2000179 positive regulation of neural precursor cell proliferation
## GO:0030004 cellular monovalent inorganic cation homeostasis
## GO:0032637 interleukin-8 production
## GO:1903363 negative regulation of cellular protein catabolic process
## GO:0006353 DNA-templated transcription, termination
## GO:0070509 calcium ion import
## GO:0035601 protein deacylation
## GO:0060606 tube closure
## GO:0007041 lysosomal transport
## GO:0048640 negative regulation of developmental growth
## GO:0006370 7-methylguanosine mRNA capping
## GO:0032094 response to food
## GO:0042339 keratan sulfate metabolic process
## GO:0043516 regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0071353 cellular response to interleukin-4
## GO:1902100 negative regulation of metaphase/anaphase transition of cell cycle
## GO:1905819 negative regulation of chromosome separation
## GO:0030832 regulation of actin filament length
## GO:0007059 chromosome segregation
## GO:0006801 superoxide metabolic process
## GO:0003281 ventricular septum development
## GO:0006809 nitric oxide biosynthetic process
## GO:0006885 regulation of pH
## GO:1902803 regulation of synaptic vesicle transport
## GO:0051053 negative regulation of DNA metabolic process
## GO:0000375 RNA splicing, via transesterification reactions
## GO:0002753 cytoplasmic pattern recognition receptor signaling pathway
## GO:0043388 positive regulation of DNA binding
## GO:0015908 fatty acid transport
## GO:0042102 positive regulation of T cell proliferation
## GO:0001945 lymph vessel development
## GO:0006297 nucleotide-excision repair, DNA gap filling
## GO:0010288 response to lead ion
## GO:0010758 regulation of macrophage chemotaxis
## GO:0031114 regulation of microtubule depolymerization
## GO:0071526 semaphorin-plexin signaling pathway
## GO:0072215 regulation of metanephros development
## GO:0034698 response to gonadotropin
## GO:0039694 viral RNA genome replication
## GO:0040001 establishment of mitotic spindle localization
## GO:0044550 secondary metabolite biosynthetic process
## GO:0045737 positive regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0048384 retinoic acid receptor signaling pathway
## GO:0051294 establishment of spindle orientation
## GO:0061615 glycolytic process through fructose-6-phosphate
## GO:0061620 glycolytic process through glucose-6-phosphate
## GO:0001990 regulation of systemic arterial blood pressure by hormone
## GO:0006778 porphyrin-containing compound metabolic process
## GO:0045124 regulation of bone resorption
## GO:0046326 positive regulation of glucose import
## GO:0051567 histone H3-K9 methylation
## GO:0051590 positive regulation of neurotransmitter transport
## GO:0051930 regulation of sensory perception of pain
## GO:1905314 semi-lunar valve development
## GO:1901222 regulation of NIK/NF-kappaB signaling
## GO:0006695 cholesterol biosynthetic process
## GO:1902653 secondary alcohol biosynthetic process
## GO:0001959 regulation of cytokine-mediated signaling pathway
## GO:0035023 regulation of Rho protein signal transduction
## GO:0022029 telencephalon cell migration
## GO:0030888 regulation of B cell proliferation
## GO:1902041 regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:0042509 regulation of tyrosine phosphorylation of STAT protein
## GO:0061333 renal tubule morphogenesis
## GO:0072028 nephron morphogenesis
## GO:0008064 regulation of actin polymerization or depolymerization
## GO:0014003 oligodendrocyte development
## GO:0019048 modulation by virus of host morphology or physiology
## GO:0031641 regulation of myelination
## GO:1903580 positive regulation of ATP metabolic process
## GO:0035384 thioester biosynthetic process
## GO:0071616 acyl-CoA biosynthetic process
## GO:0045727 positive regulation of translation
## GO:1901800 positive regulation of proteasomal protein catabolic process
## GO:0006704 glucocorticoid biosynthetic process
## GO:0007194 negative regulation of adenylate cyclase activity
## GO:0010224 response to UV-B
## GO:0017085 response to insecticide
## GO:0032930 positive regulation of superoxide anion generation
## GO:0043923 positive regulation by host of viral transcription
## GO:0055003 cardiac myofibril assembly
## GO:0061318 renal filtration cell differentiation
## GO:0072112 glomerular visceral epithelial cell differentiation
## GO:2000811 negative regulation of anoikis
## GO:2001267 regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0009064 glutamine family amino acid metabolic process
## GO:0050891 multicellular organismal water homeostasis
## GO:0061515 myeloid cell development
## GO:0016447 somatic recombination of immunoglobulin gene segments
## GO:0045981 positive regulation of nucleotide metabolic process
## GO:0050879 multicellular organismal movement
## GO:0050881 musculoskeletal movement
## GO:0071349 cellular response to interleukin-12
## GO:1900544 positive regulation of purine nucleotide metabolic process
## GO:0006998 nuclear envelope organization
## GO:0035987 endodermal cell differentiation
## GO:0042551 neuron maturation
## GO:0045058 T cell selection
## GO:0043409 negative regulation of MAPK cascade
## GO:0050729 positive regulation of inflammatory response
## GO:0007260 tyrosine phosphorylation of STAT protein
## GO:0031112 positive regulation of microtubule polymerization or depolymerization
## GO:0032228 regulation of synaptic transmission, GABAergic
## GO:0033028 myeloid cell apoptotic process
## GO:0043552 positive regulation of phosphatidylinositol 3-kinase activity
## GO:0045745 positive regulation of G protein-coupled receptor signaling pathway
## GO:0045841 negative regulation of mitotic metaphase/anaphase transition
## GO:0046688 response to copper ion
## GO:0060317 cardiac epithelial to mesenchymal transition
## GO:0061384 heart trabecula morphogenesis
## GO:0071295 cellular response to vitamin
## GO:0097421 liver regeneration
## GO:2000816 negative regulation of mitotic sister chromatid separation
## GO:2001171 positive regulation of ATP biosynthetic process
## GO:0002294 CD4-positive, alpha-beta T cell differentiation involved in immune response
## GO:2000300 regulation of synaptic vesicle exocytosis
## GO:0007569 cell aging
## GO:0005976 polysaccharide metabolic process
## GO:1902106 negative regulation of leukocyte differentiation
## GO:0010827 regulation of glucose transmembrane transport
## GO:0051279 regulation of release of sequestered calcium ion into cytosol
## GO:0033619 membrane protein proteolysis
## GO:0061098 positive regulation of protein tyrosine kinase activity
## GO:0086002 cardiac muscle cell action potential involved in contraction
## GO:1900449 regulation of glutamate receptor signaling pathway
## GO:1901880 negative regulation of protein depolymerization
## GO:0003091 renal water homeostasis
## GO:0008038 neuron recognition
## GO:0033762 response to glucagon
## GO:0046825 regulation of protein export from nucleus
## GO:0050982 detection of mechanical stimulus
## GO:2000516 positive regulation of CD4-positive, alpha-beta T cell activation
## GO:0018210 peptidyl-threonine modification
## GO:0007004 telomere maintenance via telomerase
## GO:0002026 regulation of the force of heart contraction
## GO:0003148 outflow tract septum morphogenesis
## GO:0006735 NADH regeneration
## GO:0009112 nucleobase metabolic process
## GO:0009261 ribonucleotide catabolic process
## GO:0035116 embryonic hindlimb morphogenesis
## GO:0035883 enteroendocrine cell differentiation
## GO:0035902 response to immobilization stress
## GO:0036475 neuron death in response to oxidative stress
## GO:0045761 regulation of adenylate cyclase activity
## GO:0045907 positive regulation of vasoconstriction
## GO:0046885 regulation of hormone biosynthetic process
## GO:0060512 prostate gland morphogenesis
## GO:0061621 canonical glycolysis
## GO:0061718 glucose catabolic process to pyruvate
## GO:1902624 positive regulation of neutrophil migration
## GO:2000171 negative regulation of dendrite development
## GO:0048747 muscle fiber development
## GO:0097345 mitochondrial outer membrane permeabilization
## GO:1901799 negative regulation of proteasomal protein catabolic process
## GO:0000717 nucleotide-excision repair, DNA duplex unwinding
## GO:0006582 melanin metabolic process
## GO:0030318 melanocyte differentiation
## GO:0034695 response to prostaglandin E
## GO:0035809 regulation of urine volume
## GO:0048305 immunoglobulin secretion
## GO:0048799 animal organ maturation
## GO:0051195 negative regulation of cofactor metabolic process
## GO:0051654 establishment of mitochondrion localization
## GO:0060390 regulation of SMAD protein signal transduction
## GO:0060444 branching involved in mammary gland duct morphogenesis
## GO:0071378 cellular response to growth hormone stimulus
## GO:1903306 negative regulation of regulated secretory pathway
## GO:0001912 positive regulation of leukocyte mediated cytotoxicity
## GO:0006509 membrane protein ectodomain proteolysis
## GO:0030810 positive regulation of nucleotide biosynthetic process
## GO:0033574 response to testosterone
## GO:0051281 positive regulation of release of sequestered calcium ion into cytosol
## GO:1900373 positive regulation of purine nucleotide biosynthetic process
## GO:0031050 dsRNA processing
## GO:0044003 modification by symbiont of host morphology or physiology
## GO:0070918 production of small RNA involved in gene silencing by RNA
## GO:0071825 protein-lipid complex subunit organization
## GO:1905268 negative regulation of chromatin organization
## GO:0002548 monocyte chemotaxis
## GO:0021795 cerebral cortex cell migration
## GO:0035196 production of miRNAs involved in gene silencing by miRNA
## GO:0048701 embryonic cranial skeleton morphogenesis
## GO:0060393 regulation of pathway-restricted SMAD protein phosphorylation
## GO:0071827 plasma lipoprotein particle organization
## GO:0042472 inner ear morphogenesis
## GO:0007006 mitochondrial membrane organization
## GO:0018022 peptidyl-lysine methylation
## GO:0046209 nitric oxide metabolic process
## GO:0061053 somite development
## GO:0030101 natural killer cell activation
## GO:0050854 regulation of antigen receptor-mediated signaling pathway
## GO:0140029 exocytic process
## GO:0098732 macromolecule deacylation
## GO:1904950 negative regulation of establishment of protein localization
## GO:0000377 RNA splicing, via transesterification reactions with bulged adenosine as nucleophile
## GO:0000398 mRNA splicing, via spliceosome
## GO:0043484 regulation of RNA splicing
## GO:0033045 regulation of sister chromatid segregation
## GO:1902476 chloride transmembrane transport
## GO:0045071 negative regulation of viral genome replication
## GO:0070059 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## GO:1901616 organic hydroxy compound catabolic process
## GO:0002830 positive regulation of type 2 immune response
## GO:0010875 positive regulation of cholesterol efflux
## GO:0010919 regulation of inositol phosphate biosynthetic process
## GO:0019372 lipoxygenase pathway
## GO:0022616 DNA strand elongation
## GO:0030214 hyaluronan catabolic process
## GO:0031958 corticosteroid receptor signaling pathway
## GO:0034116 positive regulation of heterotypic cell-cell adhesion
## GO:0042448 progesterone metabolic process
## GO:0044849 estrous cycle
## GO:0051482 positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## GO:0071732 cellular response to nitric oxide
## GO:0071871 response to epinephrine
## GO:0097067 cellular response to thyroid hormone stimulus
## GO:1903541 regulation of exosomal secretion
## GO:2001170 negative regulation of ATP biosynthetic process
## GO:0034644 cellular response to UV
## GO:0051851 modification by host of symbiont morphology or physiology
## GO:0072088 nephron epithelium morphogenesis
## GO:0006363 termination of RNA polymerase I transcription
## GO:0007099 centriole replication
## GO:0030431 sleep
## GO:0030513 positive regulation of BMP signaling pathway
## GO:0051204 protein insertion into mitochondrial membrane
## GO:0051385 response to mineralocorticoid
## GO:1901019 regulation of calcium ion transmembrane transporter activity
## GO:0032722 positive regulation of chemokine production
## GO:0043255 regulation of carbohydrate biosynthetic process
## GO:0032613 interleukin-10 production
## GO:0032781 positive regulation of ATPase activity
## GO:0072384 organelle transport along microtubule
## GO:0001893 maternal placenta development
## GO:0003203 endocardial cushion morphogenesis
## GO:0007528 neuromuscular junction development
## GO:0021587 cerebellum morphogenesis
## GO:0035137 hindlimb morphogenesis
## GO:0048246 macrophage chemotaxis
## GO:0071312 cellular response to alkaloid
## GO:1901998 toxin transport
## GO:0002204 somatic recombination of immunoglobulin genes involved in immune response
## GO:0002208 somatic diversification of immunoglobulins involved in immune response
## GO:0007091 metaphase/anaphase transition of mitotic cell cycle
## GO:0008542 visual learning
## GO:0009066 aspartate family amino acid metabolic process
## GO:0010965 regulation of mitotic sister chromatid separation
## GO:0035722 interleukin-12-mediated signaling pathway
## GO:0045190 isotype switching
## GO:0030501 positive regulation of bone mineralization
## GO:0038179 neurotrophin signaling pathway
## GO:0045823 positive regulation of heart contraction
## GO:0009409 response to cold
## GO:0042771 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:0045103 intermediate filament-based process
## GO:1901028 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## GO:1902373 negative regulation of mRNA catabolic process
## GO:0035304 regulation of protein dephosphorylation
## GO:0003171 atrioventricular valve development
## GO:0006700 C21-steroid hormone biosynthetic process
## GO:0006779 porphyrin-containing compound biosynthetic process
## GO:0007205 protein kinase C-activating G protein-coupled receptor signaling pathway
## GO:0007263 nitric oxide mediated signal transduction
## GO:0009154 purine ribonucleotide catabolic process
## GO:0022011 myelination in peripheral nervous system
## GO:0032292 peripheral nervous system axon ensheathment
## GO:0032967 positive regulation of collagen biosynthetic process
## GO:0034114 regulation of heterotypic cell-cell adhesion
## GO:0039528 cytoplasmic pattern recognition receptor signaling pathway in response to virus
## GO:0050820 positive regulation of coagulation
## GO:0060142 regulation of syncytium formation by plasma membrane fusion
## GO:0060706 cell differentiation involved in embryonic placenta development
## GO:0061437 renal system vasculature development
## GO:0061440 kidney vasculature development
## GO:0070168 negative regulation of biomineral tissue development
## GO:0070911 global genome nucleotide-excision repair
## GO:0072202 cell differentiation involved in metanephros development
## GO:1902175 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:1903203 regulation of oxidative stress-induced neuron death
## GO:1904353 regulation of telomere capping
## GO:0090130 tissue migration
## GO:1903312 negative regulation of mRNA metabolic process
## GO:0098661 inorganic anion transmembrane transport
## GO:0006293 nucleotide-excision repair, preincision complex stabilization
## GO:0006295 nucleotide-excision repair, DNA incision, 3'-to lesion
## GO:0007026 negative regulation of microtubule depolymerization
## GO:0015813 L-glutamate transmembrane transport
## GO:0019228 neuronal action potential
## GO:0032469 endoplasmic reticulum calcium ion homeostasis
## GO:0035162 embryonic hemopoiesis
## GO:0042438 melanin biosynthetic process
## GO:0043090 amino acid import
## GO:0046827 positive regulation of protein export from nucleus
## GO:0048485 sympathetic nervous system development
## GO:0060396 growth hormone receptor signaling pathway
## GO:0060479 lung cell differentiation
## GO:0071379 cellular response to prostaglandin stimulus
## GO:0042093 T-helper cell differentiation
## GO:0051057 positive regulation of small GTPase mediated signal transduction
## GO:0046916 cellular transition metal ion homeostasis
## GO:1905897 regulation of response to endoplasmic reticulum stress
## GO:0006338 chromatin remodeling
## GO:0006813 potassium ion transport
## GO:0006909 phagocytosis
## GO:0010823 negative regulation of mitochondrion organization
## GO:0046173 polyol biosynthetic process
## GO:1904645 response to amyloid-beta
## GO:0032635 interleukin-6 production
## GO:0007034 vacuolar transport
## GO:0001569 branching involved in blood vessel morphogenesis
## GO:0006362 transcription elongation from RNA polymerase I promoter
## GO:0007094 mitotic spindle assembly checkpoint
## GO:0031572 G2 DNA damage checkpoint
## GO:0031577 spindle checkpoint
## GO:0032728 positive regulation of interferon-beta production
## GO:0046596 regulation of viral entry into host cell
## GO:0071173 spindle assembly checkpoint
## GO:0071174 mitotic spindle checkpoint
## GO:0090659 walking behavior
## GO:1902895 positive regulation of pri-miRNA transcription by RNA polymerase II
## GO:0071901 negative regulation of protein serine/threonine kinase activity
## GO:0043666 regulation of phosphoprotein phosphatase activity
## GO:0002028 regulation of sodium ion transport
## GO:0002532 production of molecular mediator involved in inflammatory response
## GO:0006081 cellular aldehyde metabolic process
## GO:2001021 negative regulation of response to DNA damage stimulus
## GO:0007602 phototransduction
## GO:0010718 positive regulation of epithelial to mesenchymal transition
## GO:0060425 lung morphogenesis
## GO:0099024 plasma membrane invagination
## GO:1901861 regulation of muscle tissue development
## GO:0010566 regulation of ketone biosynthetic process
## GO:0030812 negative regulation of nucleotide catabolic process
## GO:0033540 fatty acid beta-oxidation using acyl-CoA oxidase
## GO:0035815 positive regulation of renal sodium excretion
## GO:0042362 fat-soluble vitamin biosynthetic process
## GO:0042535 positive regulation of tumor necrosis factor biosynthetic process
## GO:0042921 glucocorticoid receptor signaling pathway
## GO:0042994 cytoplasmic sequestering of transcription factor
## GO:0043518 negative regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0044406 adhesion of symbiont to host
## GO:0046184 aldehyde biosynthetic process
## GO:0051198 negative regulation of coenzyme metabolic process
## GO:0051883 killing of cells in other organism involved in symbiotic interaction
## GO:1903543 positive regulation of exosomal secretion
## GO:2000369 regulation of clathrin-dependent endocytosis
## GO:0002287 alpha-beta T cell activation involved in immune response
## GO:0002293 alpha-beta T cell differentiation involved in immune response
## GO:0016575 histone deacetylation
## GO:0030032 lamellipodium assembly
## GO:0042733 embryonic digit morphogenesis
## GO:0048645 animal organ formation
## GO:0070988 demethylation
## GO:1904377 positive regulation of protein localization to cell periphery
## GO:0032273 positive regulation of protein polymerization
## GO:0032330 regulation of chondrocyte differentiation
## GO:0032480 negative regulation of type I interferon production
## GO:0032757 positive regulation of interleukin-8 production
## GO:0070169 positive regulation of biomineral tissue development
## GO:0018149 peptide cross-linking
## GO:0032148 activation of protein kinase B activity
## GO:0032435 negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0032735 positive regulation of interleukin-12 production
## GO:0035088 establishment or maintenance of apical/basal cell polarity
## GO:0061245 establishment or maintenance of bipolar cell polarity
## GO:0071392 cellular response to estradiol stimulus
## GO:0002792 negative regulation of peptide secretion
## GO:0030833 regulation of actin filament polymerization
## GO:0009119 ribonucleoside metabolic process
## GO:0032731 positive regulation of interleukin-1 beta production
## GO:0045104 intermediate filament cytoskeleton organization
## GO:0051489 regulation of filopodium assembly
## GO:0060999 positive regulation of dendritic spine development
## GO:1900271 regulation of long-term synaptic potentiation
## GO:0072091 regulation of stem cell proliferation
## GO:0032350 regulation of hormone metabolic process
## GO:0043331 response to dsRNA
## GO:0072583 clathrin-dependent endocytosis
## GO:0034502 protein localization to chromosome
## GO:2000106 regulation of leukocyte apoptotic process
## GO:0072078 nephron tubule morphogenesis
## GO:1903509 liposaccharide metabolic process
## GO:0006879 cellular iron ion homeostasis
## GO:0035904 aorta development
## GO:0045604 regulation of epidermal cell differentiation
## GO:0006821 chloride transport
## GO:2001022 positive regulation of response to DNA damage stimulus
## GO:0001702 gastrulation with mouth forming second
## GO:0002068 glandular epithelial cell development
## GO:0003071 renal system process involved in regulation of systemic arterial blood pressure
## GO:0003309 type B pancreatic cell differentiation
## GO:0009065 glutamine family amino acid catabolic process
## GO:0010460 positive regulation of heart rate
## GO:0030194 positive regulation of blood coagulation
## GO:0032104 regulation of response to extracellular stimulus
## GO:0032107 regulation of response to nutrient levels
## GO:0032616 interleukin-13 production
## GO:0060740 prostate gland epithelium morphogenesis
## GO:0090025 regulation of monocyte chemotaxis
## GO:1900048 positive regulation of hemostasis
## GO:0006282 regulation of DNA repair
## GO:1903828 negative regulation of cellular protein localization
## GO:0051224 negative regulation of protein transport
## GO:0019915 lipid storage
## GO:0034308 primary alcohol metabolic process
## GO:0034637 cellular carbohydrate biosynthetic process
## GO:1903036 positive regulation of response to wounding
## GO:0010634 positive regulation of epithelial cell migration
## GO:0003323 type B pancreatic cell development
## GO:0014046 dopamine secretion
## GO:0014059 regulation of dopamine secretion
## GO:0030878 thyroid gland development
## GO:0042053 regulation of dopamine metabolic process
## GO:0042069 regulation of catecholamine metabolic process
## GO:0045821 positive regulation of glycolytic process
## GO:0046823 negative regulation of nucleocytoplasmic transport
## GO:0060231 mesenchymal to epithelial transition
## GO:0060487 lung epithelial cell differentiation
## GO:0060713 labyrinthine layer morphogenesis
## GO:0071636 positive regulation of transforming growth factor beta production
## GO:0098743 cell aggregation
## GO:0044784 metaphase/anaphase transition of cell cycle
## GO:0051306 mitotic sister chromatid separation
## GO:0043271 negative regulation of ion transport
## GO:0002260 lymphocyte homeostasis
## GO:0006940 regulation of smooth muscle contraction
## GO:0010676 positive regulation of cellular carbohydrate metabolic process
## GO:0006664 glycolipid metabolic process
## GO:0006929 substrate-dependent cell migration
## GO:0021602 cranial nerve morphogenesis
## GO:0034205 amyloid-beta formation
## GO:0048873 homeostasis of number of cells within a tissue
## GO:0072606 interleukin-8 secretion
## GO:0000910 cytokinesis
## GO:0042531 positive regulation of tyrosine phosphorylation of STAT protein
## GO:0050918 positive chemotaxis
## GO:0070227 lymphocyte apoptotic process
## GO:1903051 negative regulation of proteolysis involved in cellular protein catabolic process
## GO:2001257 regulation of cation channel activity
## GO:0032570 response to progesterone
## GO:0043039 tRNA aminoacylation
## GO:0001709 cell fate determination
## GO:0007080 mitotic metaphase plate congression
## GO:0031057 negative regulation of histone modification
## GO:0048066 developmental pigmentation
## GO:0050873 brown fat cell differentiation
## GO:0051653 spindle localization
## GO:0090224 regulation of spindle organization
## GO:0032892 positive regulation of organic acid transport
## GO:0097242 amyloid-beta clearance
## GO:1901186 positive regulation of ERBB signaling pathway
## GO:1902742 apoptotic process involved in development
## GO:0007416 synapse assembly
## GO:0086065 cell communication involved in cardiac conduction
## GO:0044091 membrane biogenesis
## GO:0045684 positive regulation of epidermis development
## GO:0048488 synaptic vesicle endocytosis
## GO:0060236 regulation of mitotic spindle organization
## GO:0072665 protein localization to vacuole
## GO:0140238 presynaptic endocytosis
## GO:0033002 muscle cell proliferation
## GO:0033865 nucleoside bisphosphate metabolic process
## GO:0033875 ribonucleoside bisphosphate metabolic process
## GO:0034032 purine nucleoside bisphosphate metabolic process
## GO:0045685 regulation of glial cell differentiation
## GO:0002523 leukocyte migration involved in inflammatory response
## GO:0006837 serotonin transport
## GO:0014857 regulation of skeletal muscle cell proliferation
## GO:0019883 antigen processing and presentation of endogenous antigen
## GO:0030207 chondroitin sulfate catabolic process
## GO:0030889 negative regulation of B cell proliferation
## GO:0033151 V(D)J recombination
## GO:0035810 positive regulation of urine volume
## GO:0042033 chemokine biosynthetic process
## GO:0042447 hormone catabolic process
## GO:0045064 T-helper 2 cell differentiation
## GO:0046068 cGMP metabolic process
## GO:0048569 post-embryonic animal organ development
## GO:0050755 chemokine metabolic process
## GO:0050862 positive regulation of T cell receptor signaling pathway
## GO:0060732 positive regulation of inositol phosphate biosynthetic process
## GO:0070669 response to interleukin-2
## GO:0070672 response to interleukin-15
## GO:0072216 positive regulation of metanephros development
## GO:0099509 regulation of presynaptic cytosolic calcium ion concentration
## GO:2001212 regulation of vasculogenesis
## GO:0048016 inositol phosphate-mediated signaling
## GO:1905818 regulation of chromosome separation
## GO:0022404 molting cycle process
## GO:0022405 hair cycle process
## GO:0043648 dicarboxylic acid metabolic process
## GO:0072676 lymphocyte migration
## GO:0090132 epithelium migration
## GO:0000132 establishment of mitotic spindle orientation
## GO:0001914 regulation of T cell mediated cytotoxicity
## GO:0010640 regulation of platelet-derived growth factor receptor signaling pathway
## GO:0032528 microvillus organization
## GO:0032897 negative regulation of viral transcription
## GO:0032958 inositol phosphate biosynthetic process
## GO:0033081 regulation of T cell differentiation in thymus
## GO:0046639 negative regulation of alpha-beta T cell differentiation
## GO:0060343 trabecula formation
## GO:0072012 glomerulus vasculature development
## GO:2000209 regulation of anoikis
## GO:0010631 epithelial cell migration
## GO:0016202 regulation of striated muscle tissue development
## GO:0010921 regulation of phosphatase activity
## GO:0043433 negative regulation of DNA-binding transcription factor activity
## GO:0090303 positive regulation of wound healing
## GO:0120193 tight junction organization
## GO:2000514 regulation of CD4-positive, alpha-beta T cell activation
## GO:0002686 negative regulation of leukocyte migration
## GO:0032653 regulation of interleukin-10 production
## GO:0045933 positive regulation of muscle contraction
## GO:1903307 positive regulation of regulated secretory pathway
## GO:0031398 positive regulation of protein ubiquitination
## GO:0048332 mesoderm morphogenesis
## GO:0050688 regulation of defense response to virus
## GO:0002292 T cell differentiation involved in immune response
## GO:0016239 positive regulation of macroautophagy
## GO:1900076 regulation of cellular response to insulin stimulus
## GO:0048259 regulation of receptor-mediated endocytosis
## GO:1903825 organic acid transmembrane transport
## GO:1905039 carboxylic acid transmembrane transport
## GO:0030071 regulation of mitotic metaphase/anaphase transition
## GO:0046164 alcohol catabolic process
## GO:0051205 protein insertion into membrane
## GO:0072523 purine-containing compound catabolic process
## GO:1903214 regulation of protein targeting to mitochondrion
## GO:0001502 cartilage condensation
## GO:0002544 chronic inflammatory response
## GO:0010738 regulation of protein kinase A signaling
## GO:0032495 response to muramyl dipeptide
## GO:0034104 negative regulation of tissue remodeling
## GO:0034643 establishment of mitochondrion localization, microtubule-mediated
## GO:0045061 thymic T cell selection
## GO:0046599 regulation of centriole replication
## GO:0047497 mitochondrion transport along microtubule
## GO:0048670 regulation of collateral sprouting
## GO:0050860 negative regulation of T cell receptor signaling pathway
## GO:0051546 keratinocyte migration
## GO:0060716 labyrinthine layer blood vessel development
## GO:0070987 error-free translesion synthesis
## GO:0089718 amino acid import across plasma membrane
## GO:0090201 negative regulation of release of cytochrome c from mitochondria
## GO:1902074 response to salt
## GO:0006112 energy reserve metabolic process
## GO:0002066 columnar/cuboidal epithelial cell development
## GO:0031102 neuron projection regeneration
## GO:0051310 metaphase plate congression
## GO:0120192 tight junction assembly
## GO:0098813 nuclear chromosome segregation
## GO:0001964 startle response
## GO:0006482 protein demethylation
## GO:0006972 hyperosmotic response
## GO:0007628 adult walking behavior
## GO:0008214 protein dealkylation
## GO:0010165 response to X-ray
## GO:0018146 keratan sulfate biosynthetic process
## GO:0021884 forebrain neuron development
## GO:0031116 positive regulation of microtubule polymerization
## GO:0032770 positive regulation of monooxygenase activity
## GO:0033032 regulation of myeloid cell apoptotic process
## GO:0034367 protein-containing complex remodeling
## GO:0034368 protein-lipid complex remodeling
## GO:0034369 plasma lipoprotein particle remodeling
## GO:0042634 regulation of hair cycle
## GO:0048265 response to pain
## GO:0060292 long-term synaptic depression
## GO:0085029 extracellular matrix assembly
## GO:0090200 positive regulation of release of cytochrome c from mitochondria
## GO:1902932 positive regulation of alcohol biosynthetic process
## GO:0008037 cell recognition
## GO:0048844 artery morphogenesis
## GO:0001756 somitogenesis
## GO:0032729 positive regulation of interferon-gamma production
## GO:0003176 aortic valve development
## GO:0006356 regulation of transcription by RNA polymerase I
## GO:0016486 peptide hormone processing
## GO:0046685 response to arsenic-containing substance
## GO:0060674 placenta blood vessel development
## GO:0086019 cell-cell signaling involved in cardiac conduction
## GO:1904031 positive regulation of cyclin-dependent protein kinase activity
## GO:0015682 ferric iron transport
## GO:0033572 transferrin transport
## GO:0043114 regulation of vascular permeability
## GO:0045911 positive regulation of DNA recombination
## GO:0046636 negative regulation of alpha-beta T cell activation
## GO:0051293 establishment of spindle localization
## GO:0051973 positive regulation of telomerase activity
## GO:0072512 trivalent inorganic cation transport
## GO:0090313 regulation of protein targeting to membrane
## GO:1905332 positive regulation of morphogenesis of an epithelium
## GO:0006383 transcription by RNA polymerase III
## GO:0021545 cranial nerve development
## GO:0045744 negative regulation of G protein-coupled receptor signaling pathway
## GO:0046579 positive regulation of Ras protein signal transduction
## GO:0051058 negative regulation of small GTPase mediated signal transduction
## GO:0035051 cardiocyte differentiation
## GO:1901568 fatty acid derivative metabolic process
## GO:0042303 molting cycle
## GO:0042633 hair cycle
## GO:0010951 negative regulation of endopeptidase activity
## GO:0001708 cell fate specification
## GO:0010833 telomere maintenance via telomere lengthening
## GO:0032204 regulation of telomere maintenance
## GO:0032677 regulation of interleukin-8 production
## GO:0006687 glycosphingolipid metabolic process
## GO:0030858 positive regulation of epithelial cell differentiation
## GO:0006953 acute-phase response
## GO:0043370 regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0051291 protein heterooligomerization
## GO:0070972 protein localization to endoplasmic reticulum
## GO:0017015 regulation of transforming growth factor beta receptor signaling pathway
## GO:0036473 cell death in response to oxidative stress
## GO:0006119 oxidative phosphorylation
## GO:0006458 'de novo' protein folding
## GO:0007413 axonal fasciculation
## GO:0007530 sex determination
## GO:0009404 toxin metabolic process
## GO:0032703 negative regulation of interleukin-2 production
## GO:0050926 regulation of positive chemotaxis
## GO:0051570 regulation of histone H3-K9 methylation
## GO:0060143 positive regulation of syncytium formation by plasma membrane fusion
## GO:0060445 branching involved in salivary gland morphogenesis
## GO:0071157 negative regulation of cell cycle arrest
## GO:0071677 positive regulation of mononuclear cell migration
## GO:0106030 neuron projection fasciculation
## GO:0006206 pyrimidine nucleobase metabolic process
## GO:0006705 mineralocorticoid biosynthetic process
## GO:0006883 cellular sodium ion homeostasis
## GO:0007320 insemination
## GO:0007494 midgut development
## GO:0008212 mineralocorticoid metabolic process
## GO:0009635 response to herbicide
## GO:0009650 UV protection
## GO:0010745 negative regulation of macrophage derived foam cell differentiation
## GO:0014842 regulation of skeletal muscle satellite cell proliferation
## GO:0020027 hemoglobin metabolic process
## GO:0032530 regulation of microvillus organization
## GO:0032536 regulation of cell projection size
## GO:0033008 positive regulation of mast cell activation involved in immune response
## GO:0033127 regulation of histone phosphorylation
## GO:0034374 low-density lipoprotein particle remodeling
## GO:0035723 interleukin-15-mediated signaling pathway
## GO:0035745 T-helper 2 cell cytokine production
## GO:0042790 nucleolar large rRNA transcription by RNA polymerase I
## GO:0043306 positive regulation of mast cell degranulation
## GO:0045073 regulation of chemokine biosynthetic process
## GO:0045820 negative regulation of glycolytic process
## GO:0047484 regulation of response to osmotic stress
## GO:0048291 isotype switching to IgG isotypes
## GO:0048308 organelle inheritance
## GO:0048313 Golgi inheritance
## GO:0051938 L-glutamate import
## GO:0060347 heart trabecula formation
## GO:0060397 JAK-STAT cascade involved in growth hormone signaling pathway
## GO:0071350 cellular response to interleukin-15
## GO:0071352 cellular response to interleukin-2
## GO:0071872 cellular response to epinephrine stimulus
## GO:0097152 mesenchymal cell apoptotic process
## GO:1901836 regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:1902894 negative regulation of pri-miRNA transcription by RNA polymerase II
## GO:0051341 regulation of oxidoreductase activity
## GO:0046605 regulation of centrosome cycle
## GO:0070830 bicellular tight junction assembly
## GO:1903078 positive regulation of protein localization to plasma membrane
## GO:0050850 positive regulation of calcium-mediated signaling
## GO:0051339 regulation of lyase activity
## GO:1904646 cellular response to amyloid-beta
## GO:0048634 regulation of muscle organ development
## GO:0032436 positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## GO:0019217 regulation of fatty acid metabolic process
## GO:0001942 hair follicle development
## GO:0035773 insulin secretion involved in cellular response to glucose stimulus
## GO:2000243 positive regulation of reproductive process
## GO:0050709 negative regulation of protein secretion
## GO:0006720 isoprenoid metabolic process
## GO:0006195 purine nucleotide catabolic process
## GO:0021575 hindbrain morphogenesis
## GO:0030204 chondroitin sulfate metabolic process
## GO:0032784 regulation of DNA-templated transcription, elongation
## GO:0071548 response to dexamethasone
## GO:2000008 regulation of protein localization to cell surface
## GO:0055013 cardiac muscle cell development
## GO:0033559 unsaturated fatty acid metabolic process
## GO:0001958 endochondral ossification
## GO:0003081 regulation of systemic arterial blood pressure by renin-angiotensin
## GO:0006298 mismatch repair
## GO:0010714 positive regulation of collagen metabolic process
## GO:0036075 replacement ossification
## GO:0036336 dendritic cell migration
## GO:0050858 negative regulation of antigen receptor-mediated signaling pathway
## GO:1901661 quinone metabolic process
## GO:2000191 regulation of fatty acid transport
## GO:2001025 positive regulation of response to drug
## GO:0044264 cellular polysaccharide metabolic process
## GO:1900407 regulation of cellular response to oxidative stress
## GO:0000731 DNA synthesis involved in DNA repair
## GO:0001706 endoderm formation
## GO:0002931 response to ischemia
## GO:0014009 glial cell proliferation
## GO:0036465 synaptic vesicle recycling
## GO:0045540 regulation of cholesterol biosynthetic process
## GO:0086009 membrane repolarization
## GO:0106118 regulation of sterol biosynthetic process
## GO:1905517 macrophage migration
## GO:0007157 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0007603 phototransduction, visible light
## GO:0050775 positive regulation of dendrite morphogenesis
## GO:0060323 head morphogenesis
## GO:0061077 chaperone-mediated protein folding
## GO:0071402 cellular response to lipoprotein particle stimulus
## GO:0001779 natural killer cell differentiation
## GO:0007221 positive regulation of transcription of Notch receptor target
## GO:0007271 synaptic transmission, cholinergic
## GO:0007597 blood coagulation, intrinsic pathway
## GO:0009309 amine biosynthetic process
## GO:0010107 potassium ion import
## GO:0010888 negative regulation of lipid storage
## GO:0032288 myelin assembly
## GO:0033005 positive regulation of mast cell activation
## GO:0034063 stress granule assembly
## GO:0036303 lymph vessel morphogenesis
## GO:0042789 mRNA transcription by RNA polymerase II
## GO:0044320 cellular response to leptin stimulus
## GO:0046641 positive regulation of alpha-beta T cell proliferation
## GO:0060749 mammary gland alveolus development
## GO:0061377 mammary gland lobule development
## GO:0070633 transepithelial transport
## GO:0070932 histone H3 deacetylation
## GO:0070977 bone maturation
## GO:0071371 cellular response to gonadotropin stimulus
## GO:1901739 regulation of myoblast fusion
## GO:1902176 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## GO:0045742 positive regulation of epidermal growth factor receptor signaling pathway
## GO:0061036 positive regulation of cartilage development
## GO:1901976 regulation of cell cycle checkpoint
## GO:1902230 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:0001707 mesoderm formation
## GO:0019674 NAD metabolic process
## GO:0043407 negative regulation of MAP kinase activity
## GO:0015909 long-chain fatty acid transport
## GO:0015914 phospholipid transport
## GO:0031060 regulation of histone methylation
## GO:0045670 regulation of osteoclast differentiation
## GO:0046128 purine ribonucleoside metabolic process
## GO:1905710 positive regulation of membrane permeability
## GO:2000378 negative regulation of reactive oxygen species metabolic process
## GO:0007009 plasma membrane organization
## GO:1903844 regulation of cellular response to transforming growth factor beta stimulus
## GO:0043038 amino acid activation
## GO:0061912 selective autophagy
## GO:1902099 regulation of metaphase/anaphase transition of cell cycle
## GO:0045637 regulation of myeloid cell differentiation
## GO:0048284 organelle fusion
## GO:0055006 cardiac cell development
## GO:0090559 regulation of membrane permeability
## GO:0031123 RNA 3'-end processing
## GO:1904659 glucose transmembrane transport
## GO:0032675 regulation of interleukin-6 production
## GO:0042278 purine nucleoside metabolic process
## GO:0000768 syncytium formation by plasma membrane fusion
## GO:0030166 proteoglycan biosynthetic process
## GO:0032210 regulation of telomere maintenance via telomerase
## GO:0043551 regulation of phosphatidylinositol 3-kinase activity
## GO:0050994 regulation of lipid catabolic process
## GO:0140253 cell-cell fusion
## GO:0046324 regulation of glucose import
## GO:2000401 regulation of lymphocyte migration
## GO:0035725 sodium ion transmembrane transport
## GO:0006418 tRNA aminoacylation for protein translation
## GO:0009069 serine family amino acid metabolic process
## GO:0009311 oligosaccharide metabolic process
## GO:0017001 antibiotic catabolic process
## GO:0045429 positive regulation of nitric oxide biosynthetic process
## GO:0050654 chondroitin sulfate proteoglycan metabolic process
## GO:0061001 regulation of dendritic spine morphogenesis
## GO:0006541 glutamine metabolic process
## GO:0006783 heme biosynthetic process
## GO:0009110 vitamin biosynthetic process
## GO:0010226 response to lithium ion
## GO:0030813 positive regulation of nucleotide catabolic process
## GO:0031342 negative regulation of cell killing
## GO:0031639 plasminogen activation
## GO:0032634 interleukin-5 production
## GO:0032656 regulation of interleukin-13 production
## GO:0042094 interleukin-2 biosynthetic process
## GO:0044321 response to leptin
## GO:0048714 positive regulation of oligodendrocyte differentiation
## GO:0050927 positive regulation of positive chemotaxis
## GO:0051197 positive regulation of coenzyme metabolic process
## GO:0051220 cytoplasmic sequestering of protein
## GO:0051350 negative regulation of lyase activity
## GO:0051457 maintenance of protein location in nucleus
## GO:0072643 interferon-gamma secretion
## GO:0140112 extracellular vesicle biogenesis
## GO:1901522 positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## GO:1903429 regulation of cell maturation
## GO:0050871 positive regulation of B cell activation
## GO:0007223 Wnt signaling pathway, calcium modulating pathway
## GO:0007520 myoblast fusion
## GO:0042149 cellular response to glucose starvation
## GO:0043277 apoptotic cell clearance
## GO:0071867 response to monoamine
## GO:0071869 response to catecholamine
## GO:0097178 ruffle assembly
## GO:0048260 positive regulation of receptor-mediated endocytosis
## GO:0090102 cochlea development
## GO:0009798 axis specification
## GO:0043297 apical junction assembly
## GO:0090181 regulation of cholesterol metabolic process
## GO:0006826 iron ion transport
## GO:0007019 microtubule depolymerization
## GO:0010259 multicellular organism aging
## GO:0032212 positive regulation of telomere maintenance via telomerase
## GO:0071868 cellular response to monoamine stimulus
## GO:0071870 cellular response to catecholamine stimulus
## GO:1901385 regulation of voltage-gated calcium channel activity
## GO:2000403 positive regulation of lymphocyte migration
## GO:0002507 tolerance induction
## GO:0002691 regulation of cellular extravasation
## GO:0016577 histone demethylation
## GO:0033598 mammary gland epithelial cell proliferation
## GO:0042044 fluid transport
## GO:0060037 pharyngeal system development
## GO:0060351 cartilage development involved in endochondral bone morphogenesis
## GO:0061217 regulation of mesonephros development
## GO:0071377 cellular response to glucagon stimulus
## GO:0086010 membrane depolarization during action potential
## GO:0098868 bone growth
## GO:0006613 cotranslational protein targeting to membrane
## GO:0000460 maturation of 5.8S rRNA
## GO:0002468 dendritic cell antigen processing and presentation
## GO:0002517 T cell tolerance induction
## GO:0002566 somatic diversification of immune receptors via somatic mutation
## GO:0003084 positive regulation of systemic arterial blood pressure
## GO:0006491 N-glycan processing
## GO:0019374 galactolipid metabolic process
## GO:0031115 negative regulation of microtubule polymerization
## GO:0032252 secretory granule localization
## GO:0033197 response to vitamin E
## GO:0033605 positive regulation of catecholamine secretion
## GO:0034309 primary alcohol biosynthetic process
## GO:0036005 response to macrophage colony-stimulating factor
## GO:0036006 cellular response to macrophage colony-stimulating factor stimulus
## GO:0038110 interleukin-2-mediated signaling pathway
## GO:0042340 keratan sulfate catabolic process
## GO:0042368 vitamin D biosynthetic process
## GO:0042416 dopamine biosynthetic process
## GO:0043301 negative regulation of leukocyte degranulation
## GO:0044650 adhesion of symbiont to host cell
## GO:0045472 response to ether
## GO:0046112 nucleobase biosynthetic process
## GO:0048302 regulation of isotype switching to IgG isotypes
## GO:0051481 negative regulation of cytosolic calcium ion concentration
## GO:0051608 histamine transport
## GO:0051873 killing by host of symbiont cells
## GO:0060391 positive regulation of SMAD protein signal transduction
## GO:0060442 branching involved in prostate gland morphogenesis
## GO:0060900 embryonic camera-type eye formation
## GO:0070486 leukocyte aggregation
## GO:0070493 thrombin-activated receptor signaling pathway
## GO:0071472 cellular response to salt stress
## GO:0097284 hepatocyte apoptotic process
## GO:0098712 L-glutamate import across plasma membrane
## GO:0099640 axo-dendritic protein transport
## GO:1902337 regulation of apoptotic process involved in morphogenesis
## GO:2001053 regulation of mesenchymal cell apoptotic process
## GO:0006471 protein ADP-ribosylation
## GO:0007202 activation of phospholipase C activity
## GO:0016056 rhodopsin mediated signaling pathway
## GO:0019098 reproductive behavior
## GO:0042168 heme metabolic process
## GO:0043372 positive regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0045197 establishment or maintenance of epithelial cell apical/basal polarity
## GO:0050690 regulation of defense response to virus by virus
## GO:0060325 face morphogenesis
## GO:0060338 regulation of type I interferon-mediated signaling pathway
## GO:0090314 positive regulation of protein targeting to membrane
## GO:1902991 regulation of amyloid precursor protein catabolic process
## GO:1904837 beta-catenin-TCF complex assembly
## GO:1903779 regulation of cardiac conduction
## GO:0032465 regulation of cytokinesis
## GO:0001974 blood vessel remodeling
## GO:0002833 positive regulation of response to biotic stimulus
## GO:0030199 collagen fibril organization
## GO:0046580 negative regulation of Ras protein signal transduction
## GO:0060412 ventricular septum morphogenesis
## GO:0072604 interleukin-6 secretion
## GO:0042116 macrophage activation
## GO:0006906 vesicle fusion
## GO:0003198 epithelial to mesenchymal transition involved in endocardial cushion formation
## GO:0009067 aspartate family amino acid biosynthetic process
## GO:0030540 female genitalia development
## GO:0031000 response to caffeine
## GO:0033145 positive regulation of intracellular steroid hormone receptor signaling pathway
## GO:0034375 high-density lipoprotein particle remodeling
## GO:0036270 response to diuretic
## GO:0042401 cellular biogenic amine biosynthetic process
## GO:0045187 regulation of circadian sleep/wake cycle, sleep
## GO:0051788 response to misfolded protein
## GO:0051957 positive regulation of amino acid transport
## GO:0060438 trachea development
## GO:0060644 mammary gland epithelial cell differentiation
## GO:0061298 retina vasculature development in camera-type eye
## GO:0061323 cell proliferation involved in heart morphogenesis
## GO:0071280 cellular response to copper ion
## GO:0072673 lamellipodium morphogenesis
## GO:1990573 potassium ion import across plasma membrane
## GO:2000136 regulation of cell proliferation involved in heart morphogenesis
## GO:2000831 regulation of steroid hormone secretion
## GO:0021879 forebrain neuron differentiation
## GO:0043954 cellular component maintenance
## GO:1901185 negative regulation of ERBB signaling pathway
## GO:0042267 natural killer cell mediated cytotoxicity
## GO:0046530 photoreceptor cell differentiation
## GO:0072678 T cell migration
## GO:0007033 vacuole organization
## GO:0002639 positive regulation of immunoglobulin production
## GO:0014002 astrocyte development
## GO:0033173 calcineurin-NFAT signaling cascade
## GO:0072210 metanephric nephron development
## GO:1903053 regulation of extracellular matrix organization
## GO:2000404 regulation of T cell migration
## GO:0031124 mRNA 3'-end processing
## GO:0002181 cytoplasmic translation
## GO:0002460 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## GO:0055007 cardiac muscle cell differentiation
## GO:0035794 positive regulation of mitochondrial membrane permeability
## GO:0048857 neural nucleus development
## GO:0048659 smooth muscle cell proliferation
## GO:0031103 axon regeneration
## GO:0034656 nucleobase-containing small molecule catabolic process
## GO:0051972 regulation of telomerase activity
## GO:0006949 syncytium formation
## GO:0070936 protein K48-linked ubiquitination
## GO:0098586 cellular response to virus
## GO:0098900 regulation of action potential
## GO:0002714 positive regulation of B cell mediated immunity
## GO:0002891 positive regulation of immunoglobulin mediated immune response
## GO:0003009 skeletal muscle contraction
## GO:0043029 T cell homeostasis
## GO:0045214 sarcomere organization
## GO:0048278 vesicle docking
## GO:1904358 positive regulation of telomere maintenance via telomere lengthening
## GO:1905898 positive regulation of response to endoplasmic reticulum stress
## GO:0000724 double-strand break repair via homologous recombination
## GO:0032411 positive regulation of transporter activity
## GO:0045047 protein targeting to ER
## GO:0050000 chromosome localization
## GO:0051303 establishment of chromosome localization
## GO:0000423 mitophagy
## GO:0002089 lens morphogenesis in camera-type eye
## GO:0003177 pulmonary valve development
## GO:0015721 bile acid and bile salt transport
## GO:0030728 ovulation
## GO:0032674 regulation of interleukin-5 production
## GO:0034204 lipid translocation
## GO:0035024 negative regulation of Rho protein signal transduction
## GO:0036344 platelet morphogenesis
## GO:0036499 PERK-mediated unfolded protein response
## GO:0039531 regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0042454 ribonucleoside catabolic process
## GO:0045332 phospholipid translocation
## GO:0050802 circadian sleep/wake cycle, sleep
## GO:0051589 negative regulation of neurotransmitter transport
## GO:0055093 response to hyperoxia
## GO:0060260 regulation of transcription initiation from RNA polymerase II promoter
## GO:0071711 basement membrane organization
## GO:0072111 cell proliferation involved in kidney development
## GO:1902667 regulation of axon guidance
## GO:1903055 positive regulation of extracellular matrix organization
## GO:2000144 positive regulation of DNA-templated transcription, initiation
## GO:0065004 protein-DNA complex assembly
## GO:0003338 metanephros morphogenesis
## GO:0006084 acetyl-CoA metabolic process
## GO:0006308 DNA catabolic process
## GO:0007616 long-term memory
## GO:0009225 nucleotide-sugar metabolic process
## GO:0043928 exonucleolytic nuclear-transcribed mRNA catabolic process involved in deadenylation-dependent decay
## GO:0048011 neurotrophin TRK receptor signaling pathway
## GO:0055094 response to lipoprotein particle
## GO:0098751 bone cell development
## GO:1901797 negative regulation of signal transduction by p53 class mediator
## GO:2000352 negative regulation of endothelial cell apoptotic process
## GO:0030641 regulation of cellular pH
## GO:0045428 regulation of nitric oxide biosynthetic process
## GO:0010043 response to zinc ion
## GO:0097720 calcineurin-mediated signaling
## GO:0032200 telomere organization
## GO:0030520 intracellular estrogen receptor signaling pathway
## GO:0046626 regulation of insulin receptor signaling pathway
## GO:0046847 filopodium assembly
## GO:0010575 positive regulation of vascular endothelial growth factor production
## GO:0021696 cerebellar cortex morphogenesis
## GO:0033014 tetrapyrrole biosynthetic process
## GO:0043457 regulation of cellular respiration
## GO:0070528 protein kinase C signaling
## GO:0070536 protein K63-linked deubiquitination
## GO:0071549 cellular response to dexamethasone stimulus
## GO:2000036 regulation of stem cell population maintenance
## GO:2000778 positive regulation of interleukin-6 secretion
## GO:0060271 cilium assembly
## GO:0001963 synaptic transmission, dopaminergic
## GO:0006517 protein deglycosylation
## GO:0014829 vascular smooth muscle contraction
## GO:0035640 exploration behavior
## GO:0048169 regulation of long-term neuronal synaptic plasticity
## GO:0060669 embryonic placenta morphogenesis
## GO:0070076 histone lysine demethylation
## GO:0097066 response to thyroid hormone
## GO:2000482 regulation of interleukin-8 secretion
## GO:0032206 positive regulation of telomere maintenance
## GO:0045620 negative regulation of lymphocyte differentiation
## GO:0046323 glucose import
## GO:0002449 lymphocyte mediated immunity
## GO:1905952 regulation of lipid localization
## GO:0033146 regulation of intracellular estrogen receptor signaling pathway
## GO:0043403 skeletal muscle tissue regeneration
## GO:0048286 lung alveolus development
## GO:0051453 regulation of intracellular pH
## GO:0007018 microtubule-based movement
## GO:0030510 regulation of BMP signaling pathway
## GO:0046889 positive regulation of lipid biosynthetic process
## GO:0015748 organophosphate ester transport
## GO:0001821 histamine secretion
## GO:0001867 complement activation, lectin pathway
## GO:0002483 antigen processing and presentation of endogenous peptide antigen
## GO:0002604 regulation of dendritic cell antigen processing and presentation
## GO:0002923 regulation of humoral immune response mediated by circulating immunoglobulin
## GO:0003093 regulation of glomerular filtration
## GO:0003157 endocardium development
## GO:0006681 galactosylceramide metabolic process
## GO:0006702 androgen biosynthetic process
## GO:0007100 mitotic centrosome separation
## GO:0007216 G protein-coupled glutamate receptor signaling pathway
## GO:0009071 serine family amino acid catabolic process
## GO:0009437 carnitine metabolic process
## GO:0009950 dorsal/ventral axis specification
## GO:0010623 programmed cell death involved in cell development
## GO:0016446 somatic hypermutation of immunoglobulin genes
## GO:0019042 viral latency
## GO:0019371 cyclooxygenase pathway
## GO:0021534 cell proliferation in hindbrain
## GO:0031581 hemidesmosome assembly
## GO:0031915 positive regulation of synaptic plasticity
## GO:0032276 regulation of gonadotropin secretion
## GO:0032351 negative regulation of hormone metabolic process
## GO:0032494 response to peptidoglycan
## GO:0032908 regulation of transforming growth factor beta1 production
## GO:0033089 positive regulation of T cell differentiation in thymus
## GO:0033860 regulation of NAD(P)H oxidase activity
## GO:0034776 response to histamine
## GO:0035404 histone-serine phosphorylation
## GO:0035457 cellular response to interferon-alpha
## GO:0039532 negative regulation of viral-induced cytoplasmic pattern recognition receptor signaling pathway
## GO:0042501 serine phosphorylation of STAT protein
## GO:0043247 telomere maintenance in response to DNA damage
## GO:0045059 positive thymic T cell selection
## GO:0045628 regulation of T-helper 2 cell differentiation
## GO:0046886 positive regulation of hormone biosynthetic process
## GO:0050667 homocysteine metabolic process
## GO:0051024 positive regulation of immunoglobulin secretion
## GO:0051573 negative regulation of histone H3-K9 methylation
## GO:0060433 bronchus development
## GO:0061307 cardiac neural crest cell differentiation involved in heart development
## GO:0061308 cardiac neural crest cell development involved in heart development
## GO:0070278 extracellular matrix constituent secretion
## GO:0070471 uterine smooth muscle contraction
## GO:0070757 interleukin-35-mediated signaling pathway
## GO:0071679 commissural neuron axon guidance
## GO:0072310 glomerular epithelial cell development
## GO:0072611 interleukin-13 secretion
## GO:0090042 tubulin deacetylation
## GO:0090085 regulation of protein deubiquitination
## GO:0099566 regulation of postsynaptic cytosolic calcium ion concentration
## GO:1904263 positive regulation of TORC1 signaling
## GO:1905383 protein localization to presynapse
## GO:2000551 regulation of T-helper 2 cell cytokine production
## GO:2000615 regulation of histone H3-K9 acetylation
## GO:2001241 positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:2001269 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## GO:0090174 organelle membrane fusion
## GO:0006636 unsaturated fatty acid biosynthetic process
## GO:0002832 negative regulation of response to biotic stimulus
## GO:0006301 postreplication repair
## GO:0042059 negative regulation of epidermal growth factor receptor signaling pathway
## GO:0045646 regulation of erythrocyte differentiation
## GO:1903115 regulation of actin filament-based movement
## GO:2000059 negative regulation of ubiquitin-dependent protein catabolic process
## GO:0001780 neutrophil homeostasis
## GO:0001916 positive regulation of T cell mediated cytotoxicity
## GO:0001977 renal system process involved in regulation of blood volume
## GO:0002076 osteoblast development
## GO:0006086 acetyl-CoA biosynthetic process from pyruvate
## GO:0006555 methionine metabolic process
## GO:0010934 macrophage cytokine production
## GO:0015919 peroxisomal membrane transport
## GO:0030033 microvillus assembly
## GO:0030252 growth hormone secretion
## GO:0031643 positive regulation of myelination
## GO:0032354 response to follicle-stimulating hormone
## GO:0032695 negative regulation of interleukin-12 production
## GO:0033033 negative regulation of myeloid cell apoptotic process
## GO:0035459 cargo loading into vesicle
## GO:0035970 peptidyl-threonine dephosphorylation
## GO:0045623 negative regulation of T-helper cell differentiation
## GO:0048385 regulation of retinoic acid receptor signaling pathway
## GO:0050774 negative regulation of dendrite morphogenesis
## GO:0055075 potassium ion homeostasis
## GO:0055119 relaxation of cardiac muscle
## GO:0061548 ganglion development
## GO:0070293 renal absorption
## GO:0072224 metanephric glomerulus development
## GO:0090493 catecholamine uptake
## GO:0099010 modification of postsynaptic structure
## GO:0099170 postsynaptic modulation of chemical synaptic transmission
## GO:2000251 positive regulation of actin cytoskeleton reorganization
## GO:0048660 regulation of smooth muscle cell proliferation
## GO:0034219 carbohydrate transmembrane transport
## GO:0003156 regulation of animal organ formation
## GO:0010573 vascular endothelial growth factor production
## GO:0048255 mRNA stabilization
## GO:1905521 regulation of macrophage migration
## GO:0006278 RNA-dependent DNA biosynthetic process
## GO:0042246 tissue regeneration
## GO:0098773 skin epidermis development
## GO:0090305 nucleic acid phosphodiester bond hydrolysis
## GO:0006614 SRP-dependent cotranslational protein targeting to membrane
## GO:0038093 Fc receptor signaling pathway
## GO:0010466 negative regulation of peptidase activity
## GO:0045824 negative regulation of innate immune response
## GO:0010883 regulation of lipid storage
## GO:0034198 cellular response to amino acid starvation
## GO:0043616 keratinocyte proliferation
## GO:1902743 regulation of lamellipodium organization
## GO:1904407 positive regulation of nitric oxide metabolic process
## GO:2001239 regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0007190 activation of adenylate cyclase activity
## GO:0030261 chromosome condensation
## GO:0032633 interleukin-4 production
## GO:0032733 positive regulation of interleukin-10 production
## GO:0040018 positive regulation of multicellular organism growth
## GO:0043368 positive T cell selection
## GO:0046949 fatty-acyl-CoA biosynthetic process
## GO:0050931 pigment cell differentiation
## GO:0061462 protein localization to lysosome
## GO:0071709 membrane assembly
## GO:1903955 positive regulation of protein targeting to mitochondrion
## GO:0030901 midbrain development
## GO:0045851 pH reduction
## GO:0099072 regulation of postsynaptic membrane neurotransmitter receptor levels
## GO:0006721 terpenoid metabolic process
## GO:0045995 regulation of embryonic development
## GO:0045598 regulation of fat cell differentiation
## GO:0000725 recombinational repair
## GO:0002052 positive regulation of neuroblast proliferation
## GO:0002320 lymphoid progenitor cell differentiation
## GO:0002374 cytokine secretion involved in immune response
## GO:0009081 branched-chain amino acid metabolic process
## GO:0009083 branched-chain amino acid catabolic process
## GO:0015874 norepinephrine transport
## GO:0030220 platelet formation
## GO:0031498 chromatin disassembly
## GO:0032727 positive regulation of interferon-alpha production
## GO:0032816 positive regulation of natural killer cell activation
## GO:0032986 protein-DNA complex disassembly
## GO:0033630 positive regulation of cell adhesion mediated by integrin
## GO:0035357 peroxisome proliferator activated receptor signaling pathway
## GO:0035929 steroid hormone secretion
## GO:0039529 RIG-I signaling pathway
## GO:0043371 negative regulation of CD4-positive, alpha-beta T cell differentiation
## GO:0043984 histone H4-K16 acetylation
## GO:0051797 regulation of hair follicle development
## GO:0061162 establishment of monopolar cell polarity
## GO:0070584 mitochondrion morphogenesis
## GO:0086014 atrial cardiac muscle cell action potential
## GO:0086026 atrial cardiac muscle cell to AV node cell signaling
## GO:0086066 atrial cardiac muscle cell to AV node cell communication
## GO:0097062 dendritic spine maintenance
## GO:0098780 response to mitochondrial depolarisation
## GO:1903204 negative regulation of oxidative stress-induced neuron death
## GO:1903599 positive regulation of autophagy of mitochondrion
## GO:0006637 acyl-CoA metabolic process
## GO:0035383 thioester metabolic process
## GO:0051983 regulation of chromosome segregation
## GO:0000305 response to oxygen radical
## GO:0000737 DNA catabolic process, endonucleolytic
## GO:0001773 myeloid dendritic cell activation
## GO:0003180 aortic valve morphogenesis
## GO:0030511 positive regulation of transforming growth factor beta receptor signaling pathway
## GO:0032607 interferon-alpha production
## GO:0032814 regulation of natural killer cell activation
## GO:0036296 response to increased oxygen levels
## GO:0042311 vasodilation
## GO:0050974 detection of mechanical stimulus involved in sensory perception
## GO:0070198 protein localization to chromosome, telomeric region
## GO:1902745 positive regulation of lamellipodium organization
## GO:1903846 positive regulation of cellular response to transforming growth factor beta stimulus
## GO:1990776 response to angiotensin
## GO:2000406 positive regulation of T cell migration
## GO:0008645 hexose transmembrane transport
## GO:0072599 establishment of protein localization to endoplasmic reticulum
## GO:0009880 embryonic pattern specification
## GO:1902686 mitochondrial outer membrane permeabilization involved in programmed cell death
## GO:0003272 endocardial cushion formation
## GO:0006688 glycosphingolipid biosynthetic process
## GO:0008210 estrogen metabolic process
## GO:0021680 cerebellar Purkinje cell layer development
## GO:0021952 central nervous system projection neuron axonogenesis
## GO:0022410 circadian sleep/wake cycle process
## GO:0032800 receptor biosynthetic process
## GO:0032925 regulation of activin receptor signaling pathway
## GO:0036003 positive regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0045724 positive regulation of cilium assembly
## GO:0046697 decidualization
## GO:0050996 positive regulation of lipid catabolic process
## GO:0062009 secondary palate development
## GO:0070199 establishment of protein localization to chromosome
## GO:1901889 negative regulation of cell junction assembly
## GO:0006672 ceramide metabolic process
## GO:0031062 positive regulation of histone methylation
## GO:0042269 regulation of natural killer cell mediated cytotoxicity
## GO:0045616 regulation of keratinocyte differentiation
## GO:0046834 lipid phosphorylation
## GO:0048713 regulation of oligodendrocyte differentiation
## GO:0090279 regulation of calcium ion import
## GO:1902229 regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## GO:2000826 regulation of heart morphogenesis
## GO:0006486 protein glycosylation
## GO:0043413 macromolecule glycosylation
## GO:0008593 regulation of Notch signaling pathway
## GO:0030837 negative regulation of actin filament polymerization
## GO:0070231 T cell apoptotic process
## GO:1990928 response to amino acid starvation
## GO:0043500 muscle adaptation
## GO:0034103 regulation of tissue remodeling
## GO:1903321 negative regulation of protein modification by small protein conjugation or removal
## GO:0002228 natural killer cell mediated immunity
## GO:0006487 protein N-linked glycosylation
## GO:0021872 forebrain generation of neurons
## GO:0009953 dorsal/ventral pattern formation
## GO:0031397 negative regulation of protein ubiquitination
## GO:0019076 viral release from host cell
## GO:0030224 monocyte differentiation
## GO:0035890 exit from host
## GO:0035891 exit from host cell
## GO:0045622 regulation of T-helper cell differentiation
## GO:0048333 mesodermal cell differentiation
## GO:0052126 movement in host environment
## GO:0052192 movement in environment of other organism involved in symbiotic interaction
## GO:0098534 centriole assembly
## GO:1903131 mononuclear cell differentiation
## GO:0050684 regulation of mRNA processing
## GO:0000271 polysaccharide biosynthetic process
## GO:0046620 regulation of organ growth
## GO:0003254 regulation of membrane depolarization
## GO:0008333 endosome to lysosome transport
## GO:0060563 neuroepithelial cell differentiation
## GO:1902369 negative regulation of RNA catabolic process
## GO:0036503 ERAD pathway
## GO:0051181 cofactor transport
## GO:0051646 mitochondrion localization
## GO:0086004 regulation of cardiac muscle cell contraction
## GO:0090311 regulation of protein deacetylation
## GO:0015749 monosaccharide transmembrane transport
## GO:0072527 pyrimidine-containing compound metabolic process
## GO:0001946 lymphangiogenesis
## GO:0002693 positive regulation of cellular extravasation
## GO:0006474 N-terminal protein amino acid acetylation
## GO:0006895 Golgi to endosome transport
## GO:0009415 response to water
## GO:0010759 positive regulation of macrophage chemotaxis
## GO:0010819 regulation of T cell chemotaxis
## GO:0014856 skeletal muscle cell proliferation
## GO:0015732 prostaglandin transport
## GO:0032105 negative regulation of response to extracellular stimulus
## GO:0032108 negative regulation of response to nutrient levels
## GO:0032274 gonadotropin secretion
## GO:0032352 positive regulation of hormone metabolic process
## GO:0032486 Rap protein signal transduction
## GO:0032736 positive regulation of interleukin-13 production
## GO:0034349 glial cell apoptotic process
## GO:0034616 response to laminar fluid shear stress
## GO:0035864 response to potassium ion
## GO:0043931 ossification involved in bone maturation
## GO:0044144 modulation of growth of symbiont involved in interaction with host
## GO:0046629 gamma-delta T cell activation
## GO:0048012 hepatocyte growth factor receptor signaling pathway
## GO:0048268 clathrin coat assembly
## GO:0051709 regulation of killing of cells of other organism
## GO:0060134 prepulse inhibition
## GO:0060766 negative regulation of androgen receptor signaling pathway
## GO:0070262 peptidyl-serine dephosphorylation
## GO:0071218 cellular response to misfolded protein
## GO:0071380 cellular response to prostaglandin E stimulus
## GO:0072109 glomerular mesangium development
## GO:0072160 nephron tubule epithelial cell differentiation
## GO:0090197 positive regulation of chemokine secretion
## GO:0098840 protein transport along microtubule
## GO:0098856 intestinal lipid absorption
## GO:0099118 microtubule-based protein transport
## GO:0099590 neurotransmitter receptor internalization
## GO:1900119 positive regulation of execution phase of apoptosis
## GO:1900451 positive regulation of glutamate receptor signaling pathway
## GO:1901741 positive regulation of myoblast fusion
## GO:1905153 regulation of membrane invagination
## GO:2000484 positive regulation of interleukin-8 secretion
## GO:2001028 positive regulation of endothelial cell chemotaxis
## GO:0008643 carbohydrate transport
## GO:1902600 proton transmembrane transport
## GO:0000281 mitotic cytokinesis
## GO:0051298 centrosome duplication
## GO:0003382 epithelial cell morphogenesis
## GO:0006904 vesicle docking involved in exocytosis
## GO:0016601 Rac protein signal transduction
## GO:0030262 apoptotic nuclear changes
## GO:0033198 response to ATP
## GO:0035767 endothelial cell chemotaxis
## GO:0035774 positive regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0043330 response to exogenous dsRNA
## GO:0044068 modulation by symbiont of host cellular process
## GO:0045987 positive regulation of smooth muscle contraction
## GO:1900077 negative regulation of cellular response to insulin stimulus
## GO:0046470 phosphatidylcholine metabolic process
## GO:0043266 regulation of potassium ion transport
## GO:0000338 protein deneddylation
## GO:0001553 luteinization
## GO:0001886 endothelial cell morphogenesis
## GO:0002664 regulation of T cell tolerance induction
## GO:0002713 negative regulation of B cell mediated immunity
## GO:0002887 negative regulation of myeloid leukocyte mediated immunity
## GO:0002890 negative regulation of immunoglobulin mediated immune response
## GO:0006188 IMP biosynthetic process
## GO:0006563 L-serine metabolic process
## GO:0006596 polyamine biosynthetic process
## GO:0006971 hypotonic response
## GO:0007016 cytoskeletal anchoring at plasma membrane
## GO:0009162 deoxyribonucleoside monophosphate metabolic process
## GO:0009263 deoxyribonucleotide biosynthetic process
## GO:0010739 positive regulation of protein kinase A signaling
## GO:0010749 regulation of nitric oxide mediated signal transduction
## GO:0019062 virion attachment to host cell
## GO:0021548 pons development
## GO:0021924 cell proliferation in external granule layer
## GO:0021930 cerebellar granule cell precursor proliferation
## GO:0021936 regulation of cerebellar granule cell precursor proliferation
## GO:0030647 aminoglycoside antibiotic metabolic process
## GO:0032070 regulation of deoxyribonuclease activity
## GO:0032275 luteinizing hormone secretion
## GO:0032341 aldosterone metabolic process
## GO:0032342 aldosterone biosynthetic process
## GO:0032353 negative regulation of hormone biosynthetic process
## GO:0032488 Cdc42 protein signal transduction
## GO:0035865 cellular response to potassium ion
## GO:0036376 sodium ion export across plasma membrane
## GO:0036500 ATF6-mediated unfolded protein response
## GO:0045060 negative thymic T cell selection
## GO:0045080 positive regulation of chemokine biosynthetic process
## GO:0045647 negative regulation of erythrocyte differentiation
## GO:0046040 IMP metabolic process
## GO:0046501 protoporphyrinogen IX metabolic process
## GO:0048304 positive regulation of isotype switching to IgG isotypes
## GO:0051583 dopamine uptake involved in synaptic transmission
## GO:0051593 response to folic acid
## GO:0051934 catecholamine uptake involved in synaptic transmission
## GO:0060033 anatomical structure regression
## GO:0060068 vagina development
## GO:0060368 regulation of Fc receptor mediated stimulatory signaling pathway
## GO:0060525 prostate glandular acinus development
## GO:0060767 epithelial cell proliferation involved in prostate gland development
## GO:0070099 regulation of chemokine-mediated signaling pathway
## GO:0070472 regulation of uterine smooth muscle contraction
## GO:0070942 neutrophil mediated cytotoxicity
## GO:0071104 response to interleukin-9
## GO:0071803 positive regulation of podosome assembly
## GO:0072015 glomerular visceral epithelial cell development
## GO:0075522 IRES-dependent viral translational initiation
## GO:0086070 SA node cell to atrial cardiac muscle cell communication
## GO:0090030 regulation of steroid hormone biosynthetic process
## GO:0090037 positive regulation of protein kinase C signaling
## GO:0090557 establishment of endothelial intestinal barrier
## GO:0097050 type B pancreatic cell apoptotic process
## GO:0106049 regulation of cellular response to osmotic stress
## GO:1901838 positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## GO:1903800 positive regulation of production of miRNAs involved in gene silencing by miRNA
## GO:1904526 regulation of microtubule binding
## GO:1904779 regulation of protein localization to centrosome
## GO:1990535 neuron projection maintenance
## GO:2000665 regulation of interleukin-13 secretion
## GO:2001054 negative regulation of mesenchymal cell apoptotic process
## GO:2001214 positive regulation of vasculogenesis
## GO:1903426 regulation of reactive oxygen species biosynthetic process
## GO:0070085 glycosylation
## GO:0006073 cellular glucan metabolic process
## GO:0044042 glucan metabolic process
## GO:0007566 embryo implantation
## GO:0051568 histone H3-K4 methylation
## GO:0000303 response to superoxide
## GO:0002183 cytoplasmic translational initiation
## GO:0032673 regulation of interleukin-4 production
## GO:0035456 response to interferon-beta
## GO:0042745 circadian sleep/wake cycle
## GO:0048520 positive regulation of behavior
## GO:0072207 metanephric epithelium development
## GO:1902751 positive regulation of cell cycle G2/M phase transition
## GO:1905144 response to acetylcholine
## GO:1905145 cellular response to acetylcholine
## GO:0045739 positive regulation of DNA repair
## GO:0001825 blastocyst formation
## GO:0086005 ventricular cardiac muscle cell action potential
## GO:1902042 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:2000279 negative regulation of DNA biosynthetic process
## GO:0070316 regulation of G0 to G1 transition
## GO:0002710 negative regulation of T cell mediated immunity
## GO:0002827 positive regulation of T-helper 1 type immune response
## GO:0003215 cardiac right ventricle morphogenesis
## GO:0006833 water transport
## GO:0007095 mitotic G2 DNA damage checkpoint
## GO:0010544 negative regulation of platelet activation
## GO:0023019 signal transduction involved in regulation of gene expression
## GO:0031061 negative regulation of histone methylation
## GO:0032026 response to magnesium ion
## GO:0032069 regulation of nuclease activity
## GO:0032095 regulation of response to food
## GO:0032303 regulation of icosanoid secretion
## GO:0032331 negative regulation of chondrocyte differentiation
## GO:0035728 response to hepatocyte growth factor
## GO:0045063 T-helper 1 cell differentiation
## GO:0045076 regulation of interleukin-2 biosynthetic process
## GO:0046597 negative regulation of viral entry into host cell
## GO:0048486 parasympathetic nervous system development
## GO:0061081 positive regulation of myeloid leukocyte cytokine production involved in immune response
## GO:0072576 liver morphogenesis
## GO:0090280 positive regulation of calcium ion import
## GO:0140131 positive regulation of lymphocyte chemotaxis
## GO:1900409 positive regulation of cellular response to oxidative stress
## GO:1903392 negative regulation of adherens junction organization
## GO:1903798 regulation of production of miRNAs involved in gene silencing by miRNA
## GO:1905939 regulation of gonad development
## GO:2000678 negative regulation of transcription regulatory region DNA binding
## GO:2000696 regulation of epithelial cell differentiation involved in kidney development
## GO:1903201 regulation of oxidative stress-induced cell death
## GO:0001919 regulation of receptor recycling
## GO:0003416 endochondral bone growth
## GO:0007617 mating behavior
## GO:0009648 photoperiodism
## GO:0021801 cerebral cortex radial glia guided migration
## GO:0021895 cerebral cortex neuron differentiation
## GO:0022030 telencephalon glial cell migration
## GO:0030517 negative regulation of axon extension
## GO:0030539 male genitalia development
## GO:0031579 membrane raft organization
## GO:0032098 regulation of appetite
## GO:0032753 positive regulation of interleukin-4 production
## GO:0051882 mitochondrial depolarization
## GO:0051953 negative regulation of amine transport
## GO:0051968 positive regulation of synaptic transmission, glutamatergic
## GO:0071305 cellular response to vitamin D
## GO:0072243 metanephric nephron epithelium development
## GO:0072666 establishment of protein localization to vacuole
## GO:0086012 membrane depolarization during cardiac muscle cell action potential
## GO:0090140 regulation of mitochondrial fission
## GO:0090189 regulation of branching involved in ureteric bud morphogenesis
## GO:1902003 regulation of amyloid-beta formation
## GO:0010717 regulation of epithelial to mesenchymal transition
## GO:0030148 sphingolipid biosynthetic process
## GO:0098754 detoxification
## GO:0032387 negative regulation of intracellular transport
## GO:0072577 endothelial cell apoptotic process
## GO:0035306 positive regulation of dephosphorylation
## GO:1902882 regulation of response to oxidative stress
## GO:0000291 nuclear-transcribed mRNA catabolic process, exonucleolytic
## GO:0010574 regulation of vascular endothelial growth factor production
## GO:0035909 aorta morphogenesis
## GO:0045730 respiratory burst
## GO:0048536 spleen development
## GO:0051180 vitamin transport
## GO:0060795 cell fate commitment involved in formation of primary germ layer
## GO:0006749 glutathione metabolic process
## GO:0030042 actin filament depolymerization
## GO:0051452 intracellular pH reduction
## GO:0090329 regulation of DNA-dependent DNA replication
## GO:0032414 positive regulation of ion transmembrane transporter activity
## GO:0032881 regulation of polysaccharide metabolic process
## GO:0050798 activated T cell proliferation
## GO:0051445 regulation of meiotic cell cycle
## GO:0070317 negative regulation of G0 to G1 transition
## GO:0090317 negative regulation of intracellular protein transport
## GO:0098927 vesicle-mediated transport between endosomal compartments
## GO:0015807 L-amino acid transport
## GO:1902110 positive regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0005977 glycogen metabolic process
## GO:0006898 receptor-mediated endocytosis
## GO:1902305 regulation of sodium ion transmembrane transport
## GO:1903707 negative regulation of hemopoiesis
## GO:0006270 DNA replication initiation
## GO:0021799 cerebral cortex radially oriented cell migration
## GO:0046633 alpha-beta T cell proliferation
## GO:0051491 positive regulation of filopodium assembly
## GO:0065005 protein-lipid complex assembly
## GO:0071108 protein K48-linked deubiquitination
## GO:0090075 relaxation of muscle
## GO:1905476 negative regulation of protein localization to membrane
## GO:0008088 axo-dendritic transport
## GO:1904356 regulation of telomere maintenance via telomere lengthening
## GO:0046902 regulation of mitochondrial membrane permeability
## GO:0070373 negative regulation of ERK1 and ERK2 cascade
## GO:0001754 eye photoreceptor cell differentiation
## GO:0030225 macrophage differentiation
## GO:0042461 photoreceptor cell development
## GO:0001941 postsynaptic membrane organization
## GO:0030279 negative regulation of ossification
## GO:2000134 negative regulation of G1/S transition of mitotic cell cycle
## GO:0001921 positive regulation of receptor recycling
## GO:0003214 cardiac left ventricle morphogenesis
## GO:0007214 gamma-aminobutyric acid signaling pathway
## GO:0009214 cyclic nucleotide catabolic process
## GO:0010248 establishment or maintenance of transmembrane electrochemical gradient
## GO:0010820 positive regulation of T cell chemotaxis
## GO:0010885 regulation of cholesterol storage
## GO:0010935 regulation of macrophage cytokine production
## GO:0014048 regulation of glutamate secretion
## GO:0014841 skeletal muscle satellite cell proliferation
## GO:0014854 response to inactivity
## GO:0015936 coenzyme A metabolic process
## GO:0019081 viral translation
## GO:0032310 prostaglandin secretion
## GO:0032688 negative regulation of interferon-beta production
## GO:0032780 negative regulation of ATPase activity
## GO:0035791 platelet-derived growth factor receptor-beta signaling pathway
## GO:0042976 activation of Janus kinase activity
## GO:0044126 regulation of growth of symbiont in host
## GO:0044146 negative regulation of growth of symbiont involved in interaction with host
## GO:0045591 positive regulation of regulatory T cell differentiation
## GO:0045651 positive regulation of macrophage differentiation
## GO:0046606 negative regulation of centrosome cycle
## GO:0046851 negative regulation of bone remodeling
## GO:0051123 RNA polymerase II preinitiation complex assembly
## GO:0051547 regulation of keratinocyte migration
## GO:0060099 regulation of phagocytosis, engulfment
## GO:0071801 regulation of podosome assembly
## GO:0072677 eosinophil migration
## GO:0086069 bundle of His cell to Purkinje myocyte communication
## GO:0090128 regulation of synapse maturation
## GO:0090399 replicative senescence
## GO:0090494 dopamine uptake
## GO:0097202 activation of cysteine-type endopeptidase activity
## GO:0098884 postsynaptic neurotransmitter receptor internalization
## GO:0140239 postsynaptic endocytosis
## GO:1900452 regulation of long-term synaptic depression
## GO:1901386 negative regulation of voltage-gated calcium channel activity
## GO:1901722 regulation of cell proliferation involved in kidney development
## GO:1902043 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## GO:2000846 regulation of corticosteroid hormone secretion
## GO:0000380 alternative mRNA splicing, via spliceosome
## GO:0002011 morphogenesis of an epithelial sheet
## GO:0061178 regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0046467 membrane lipid biosynthetic process
## GO:0002360 T cell lineage commitment
## GO:0002825 regulation of T-helper 1 type immune response
## GO:0022400 regulation of rhodopsin mediated signaling pathway
## GO:0030206 chondroitin sulfate biosynthetic process
## GO:0031645 negative regulation of neurological system process
## GO:0032647 regulation of interferon-alpha production
## GO:0034377 plasma lipoprotein particle assembly
## GO:0043501 skeletal muscle adaptation
## GO:0045992 negative regulation of embryonic development
## GO:0060074 synapse maturation
## GO:0061037 negative regulation of cartilage development
## GO:0072273 metanephric nephron morphogenesis
## GO:2000679 positive regulation of transcription regulatory region DNA binding
## GO:0021510 spinal cord development
## GO:0044782 cilium organization
## GO:0006576 cellular biogenic amine metabolic process
## GO:0008206 bile acid metabolic process
## GO:0042743 hydrogen peroxide metabolic process
## GO:0045023 G0 to G1 transition
## GO:0090630 activation of GTPase activity
## GO:0006309 apoptotic DNA fragmentation
## GO:0006623 protein targeting to vacuole
## GO:0007398 ectoderm development
## GO:0019430 removal of superoxide radicals
## GO:0032682 negative regulation of chemokine production
## GO:0032786 positive regulation of DNA-templated transcription, elongation
## GO:0032799 low-density lipoprotein receptor particle metabolic process
## GO:0033622 integrin activation
## GO:0034067 protein localization to Golgi apparatus
## GO:0034243 regulation of transcription elongation from RNA polymerase II promoter
## GO:0036119 response to platelet-derived growth factor
## GO:0042744 hydrogen peroxide catabolic process
## GO:0043496 regulation of protein homodimerization activity
## GO:0045109 intermediate filament organization
## GO:0045606 positive regulation of epidermal cell differentiation
## GO:0046835 carbohydrate phosphorylation
## GO:0046856 phosphatidylinositol dephosphorylation
## GO:0051000 positive regulation of nitric-oxide synthase activity
## GO:0060065 uterus development
## GO:0061213 positive regulation of mesonephros development
## GO:0071359 cellular response to dsRNA
## GO:1900078 positive regulation of cellular response to insulin stimulus
## GO:2000810 regulation of bicellular tight junction assembly
## GO:0006399 tRNA metabolic process
## GO:0001911 negative regulation of leukocyte mediated cytotoxicity
## GO:0006337 nucleosome disassembly
## GO:0006346 methylation-dependent chromatin silencing
## GO:0007252 I-kappaB phosphorylation
## GO:0007549 dosage compensation
## GO:0009190 cyclic nucleotide biosynthetic process
## GO:0031293 membrane protein intracellular domain proteolysis
## GO:0032460 negative regulation of protein oligomerization
## GO:0034471 ncRNA 5'-end processing
## GO:0035089 establishment of apical/basal cell polarity
## GO:0038083 peptidyl-tyrosine autophosphorylation
## GO:0039535 regulation of RIG-I signaling pathway
## GO:0042276 error-prone translesion synthesis
## GO:0043011 myeloid dendritic cell differentiation
## GO:0048557 embryonic digestive tract morphogenesis
## GO:0051084 'de novo' posttranslational protein folding
## GO:0051895 negative regulation of focal adhesion assembly
## GO:0052652 cyclic purine nucleotide metabolic process
## GO:0055083 monovalent inorganic anion homeostasis
## GO:0072574 hepatocyte proliferation
## GO:0072575 epithelial cell proliferation involved in liver morphogenesis
## GO:0090026 positive regulation of monocyte chemotaxis
## GO:0090330 regulation of platelet aggregation
## GO:0000045 autophagosome assembly
## GO:0006921 cellular component disassembly involved in execution phase of apoptosis
## GO:0010092 specification of animal organ identity
## GO:0016242 negative regulation of macroautophagy
## GO:0031128 developmental induction
## GO:0032801 receptor catabolic process
## GO:0035115 embryonic forelimb morphogenesis
## GO:0036314 response to sterol
## GO:0042755 eating behavior
## GO:0045191 regulation of isotype switching
## GO:0048821 erythrocyte development
## GO:0019369 arachidonic acid metabolic process
## GO:0019985 translesion synthesis
## GO:0032924 activin receptor signaling pathway
## GO:1905037 autophagosome organization
## GO:0031348 negative regulation of defense response
## GO:0032732 positive regulation of interleukin-1 production
## GO:0045661 regulation of myoblast differentiation
## GO:0050732 negative regulation of peptidyl-tyrosine phosphorylation
## GO:0071715 icosanoid transport
## GO:1901571 fatty acid derivative transport
## GO:0008608 attachment of spindle microtubules to kinetochore
## GO:0009262 deoxyribonucleotide metabolic process
## GO:0010644 cell communication by electrical coupling
## GO:0045940 positive regulation of steroid metabolic process
## GO:0046627 negative regulation of insulin receptor signaling pathway
## GO:0050650 chondroitin sulfate proteoglycan biosynthetic process
## GO:0050718 positive regulation of interleukin-1 beta secretion
## GO:0060441 epithelial tube branching involved in lung morphogenesis
## GO:0070723 response to cholesterol
## GO:0090162 establishment of epithelial cell polarity
## GO:1900117 regulation of execution phase of apoptosis
## GO:1903539 protein localization to postsynaptic membrane
## GO:0051604 protein maturation
## GO:0032964 collagen biosynthetic process
## GO:0061640 cytoskeleton-dependent cytokinesis
## GO:0002755 MyD88-dependent toll-like receptor signaling pathway
## GO:0008156 negative regulation of DNA replication
## GO:0035872 nucleotide-binding domain, leucine rich repeat containing receptor signaling pathway
## GO:0045776 negative regulation of blood pressure
## GO:0048009 insulin-like growth factor receptor signaling pathway
## GO:0060251 regulation of glial cell proliferation
## GO:0051926 negative regulation of calcium ion transport
## GO:1990542 mitochondrial transmembrane transport
## GO:0032368 regulation of lipid transport
## GO:0070534 protein K63-linked ubiquitination
## GO:0001556 oocyte maturation
## GO:0009649 entrainment of circadian clock
## GO:0031664 regulation of lipopolysaccharide-mediated signaling pathway
## GO:0034110 regulation of homotypic cell-cell adhesion
## GO:0045948 positive regulation of translational initiation
## GO:0095500 acetylcholine receptor signaling pathway
## GO:1900101 regulation of endoplasmic reticulum unfolded protein response
## GO:1900120 regulation of receptor binding
## GO:1901623 regulation of lymphocyte chemotaxis
## GO:1903831 signal transduction involved in cellular response to ammonium ion
## GO:1904385 cellular response to angiotensin
## GO:1905809 negative regulation of synapse organization
## GO:0003333 amino acid transmembrane transport
## GO:0033692 cellular polysaccharide biosynthetic process
## GO:2000351 regulation of endothelial cell apoptotic process
## GO:0044275 cellular carbohydrate catabolic process
## GO:0045746 negative regulation of Notch signaling pathway
## GO:0009164 nucleoside catabolic process
## GO:1902475 L-alpha-amino acid transmembrane transport
## GO:0002679 respiratory burst involved in defense response
## GO:0002829 negative regulation of type 2 immune response
## GO:0002921 negative regulation of humoral immune response
## GO:0003337 mesenchymal to epithelial transition involved in metanephros morphogenesis
## GO:0006000 fructose metabolic process
## GO:0006703 estrogen biosynthetic process
## GO:0006743 ubiquinone metabolic process
## GO:0009313 oligosaccharide catabolic process
## GO:0010642 negative regulation of platelet-derived growth factor receptor signaling pathway
## GO:0010763 positive regulation of fibroblast migration
## GO:0016114 terpenoid biosynthetic process
## GO:0021535 cell migration in hindbrain
## GO:0021692 cerebellar Purkinje cell layer morphogenesis
## GO:0021819 layer formation in cerebral cortex
## GO:0021984 adenohypophysis development
## GO:0030299 intestinal cholesterol absorption
## GO:0032096 negative regulation of response to food
## GO:0032099 negative regulation of appetite
## GO:0032239 regulation of nucleobase-containing compound transport
## GO:0032754 positive regulation of interleukin-5 production
## GO:0035020 regulation of Rac protein signal transduction
## GO:0042538 hyperosmotic salinity response
## GO:0042635 positive regulation of hair cycle
## GO:0043116 negative regulation of vascular permeability
## GO:0043252 sodium-independent organic anion transport
## GO:0043568 positive regulation of insulin-like growth factor receptor signaling pathway
## GO:0043970 histone H3-K9 acetylation
## GO:0044130 negative regulation of growth of symbiont in host
## GO:0045086 positive regulation of interleukin-2 biosynthetic process
## GO:0045342 MHC class II biosynthetic process
## GO:0046500 S-adenosylmethionine metabolic process
## GO:0050966 detection of mechanical stimulus involved in sensory perception of pain
## GO:0051085 chaperone cofactor-dependent protein refolding
## GO:0051386 regulation of neurotrophin TRK receptor signaling pathway
## GO:0051917 regulation of fibrinolysis
## GO:0060123 regulation of growth hormone secretion
## GO:0061029 eyelid development in camera-type eye
## GO:0061430 bone trabecula morphogenesis
## GO:0061478 response to platelet aggregation inhibitor
## GO:0071285 cellular response to lithium ion
## GO:0071415 cellular response to purine-containing compound
## GO:0071850 mitotic cell cycle arrest
## GO:0072182 regulation of nephron tubule epithelial cell differentiation
## GO:0090239 regulation of histone H4 acetylation
## GO:1900025 negative regulation of substrate adhesion-dependent cell spreading
## GO:1900272 negative regulation of long-term synaptic potentiation
## GO:1903025 regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## GO:1903651 positive regulation of cytoplasmic transport
## GO:2001044 regulation of integrin-mediated signaling pathway
## GO:0001956 positive regulation of neurotransmitter secretion
## GO:0006085 acetyl-CoA biosynthetic process
## GO:0006907 pinocytosis
## GO:0006925 inflammatory cell apoptotic process
## GO:0021854 hypothalamus development
## GO:0023058 adaptation of signaling pathway
## GO:0031290 retinal ganglion cell axon guidance
## GO:0036120 cellular response to platelet-derived growth factor stimulus
## GO:0036507 protein demannosylation
## GO:0036508 protein alpha-1,2-demannosylation
## GO:0042749 regulation of circadian sleep/wake cycle
## GO:0046058 cAMP metabolic process
## GO:0051043 regulation of membrane protein ectodomain proteolysis
## GO:0051156 glucose 6-phosphate metabolic process
## GO:0051900 regulation of mitochondrial depolarization
## GO:0060008 Sertoli cell differentiation
## GO:0060575 intestinal epithelial cell differentiation
## GO:0061339 establishment or maintenance of monopolar cell polarity
## GO:0070920 regulation of production of small RNA involved in gene silencing by RNA
## GO:0071498 cellular response to fluid shear stress
## GO:0072337 modified amino acid transport
## GO:0099563 modification of synaptic structure
## GO:1901798 positive regulation of signal transduction by p53 class mediator
## GO:1902884 positive regulation of response to oxidative stress
## GO:1903010 regulation of bone development
## GO:1904886 beta-catenin destruction complex disassembly
## GO:0002418 immune response to tumor cell
## GO:0002643 regulation of tolerance induction
## GO:0003184 pulmonary valve morphogenesis
## GO:0006266 DNA ligation
## GO:0006978 DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## GO:0007213 G protein-coupled acetylcholine receptor signaling pathway
## GO:0010744 positive regulation of macrophage derived foam cell differentiation
## GO:0021783 preganglionic parasympathetic fiber development
## GO:0030502 negative regulation of bone mineralization
## GO:0032740 positive regulation of interleukin-17 production
## GO:0034199 activation of protein kinase A activity
## GO:0035729 cellular response to hepatocyte growth factor stimulus
## GO:0035855 megakaryocyte development
## GO:0035988 chondrocyte proliferation
## GO:0042268 regulation of cytolysis
## GO:0042753 positive regulation of circadian rhythm
## GO:0044110 growth involved in symbiotic interaction
## GO:0044116 growth of symbiont involved in interaction with host
## GO:0048532 anatomical structure arrangement
## GO:0048711 positive regulation of astrocyte differentiation
## GO:0051818 disruption of cells of other organism involved in symbiotic interaction
## GO:0051969 regulation of transmission of nerve impulse
## GO:0060850 regulation of transcription involved in cell fate commitment
## GO:0070233 negative regulation of T cell apoptotic process
## GO:0090185 negative regulation of kidney development
## GO:1901524 regulation of mitophagy
## GO:1903209 positive regulation of oxidative stress-induced cell death
## GO:1904355 positive regulation of telomere capping
## GO:0006513 protein monoubiquitination
## GO:2000242 negative regulation of reproductive process
## GO:0001953 negative regulation of cell-matrix adhesion
## GO:0002715 regulation of natural killer cell mediated immunity
## GO:0018023 peptidyl-lysine trimethylation
## GO:0032309 icosanoid secretion
## GO:0035307 positive regulation of protein dephosphorylation
## GO:0090382 phagosome maturation
## GO:0099622 cardiac muscle cell membrane repolarization
## GO:0051304 chromosome separation
## GO:0010458 exit from mitosis
## GO:0070229 negative regulation of lymphocyte apoptotic process
## GO:0090344 negative regulation of cell aging
## GO:0090383 phagosome acidification
## GO:0090662 ATP hydrolysis coupled transmembrane transport
## GO:0065002 intracellular protein transmembrane transport
## GO:0070423 nucleotide-binding oligomerization domain containing signaling pathway
## GO:0070884 regulation of calcineurin-NFAT signaling cascade
## GO:0106056 regulation of calcineurin-mediated signaling
## GO:0009435 NAD biosynthetic process
## GO:0035282 segmentation
## GO:1901570 fatty acid derivative biosynthetic process
## GO:0030834 regulation of actin filament depolymerization
## GO:0045581 negative regulation of T cell differentiation
## GO:0050922 negative regulation of chemotaxis
## GO:1901068 guanosine-containing compound metabolic process
## GO:1903018 regulation of glycoprotein metabolic process
## GO:0007405 neuroblast proliferation
## GO:0030433 ubiquitin-dependent ERAD pathway
## GO:0009451 RNA modification
## GO:0003407 neural retina development
## GO:0010559 regulation of glycoprotein biosynthetic process
## GO:0032620 interleukin-17 production
## GO:0032941 secretion by tissue
## GO:0035329 hippo signaling
## GO:0044088 regulation of vacuole organization
## GO:0045022 early endosome to late endosome transport
## GO:2001222 regulation of neuron migration
## GO:0002762 negative regulation of myeloid leukocyte differentiation
## GO:0000188 inactivation of MAPK activity
## GO:0002861 regulation of inflammatory response to antigenic stimulus
## GO:0010971 positive regulation of G2/M transition of mitotic cell cycle
## GO:0044346 fibroblast apoptotic process
## GO:0045954 positive regulation of natural killer cell mediated cytotoxicity
## GO:0060571 morphogenesis of an epithelial fold
## GO:0071450 cellular response to oxygen radical
## GO:0071451 cellular response to superoxide
## GO:1902914 regulation of protein polyubiquitination
## GO:1903649 regulation of cytoplasmic transport
## GO:2000178 negative regulation of neural precursor cell proliferation
## GO:2001026 regulation of endothelial cell chemotaxis
## GO:0032768 regulation of monooxygenase activity
## GO:0000266 mitochondrial fission
## GO:0006369 termination of RNA polymerase II transcription
## GO:0010765 positive regulation of sodium ion transport
## GO:0015695 organic cation transport
## GO:0035587 purinergic receptor signaling pathway
## GO:1902186 regulation of viral release from host cell
## GO:1902253 regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:0040013 negative regulation of locomotion
## GO:0045766 positive regulation of angiogenesis
## GO:0045599 negative regulation of fat cell differentiation
## GO:0099601 regulation of neurotransmitter receptor activity
## GO:0009163 nucleoside biosynthetic process
## GO:0010569 regulation of double-strand break repair via homologous recombination
## GO:0035136 forelimb morphogenesis
## GO:0035337 fatty-acyl-CoA metabolic process
## GO:0060612 adipose tissue development
## GO:0090278 negative regulation of peptide hormone secretion
## GO:2000649 regulation of sodium ion transmembrane transporter activity
## GO:0000966 RNA 5'-end processing
## GO:0002438 acute inflammatory response to antigenic stimulus
## GO:0006622 protein targeting to lysosome
## GO:0006817 phosphate ion transport
## GO:0010560 positive regulation of glycoprotein biosynthetic process
## GO:0010869 regulation of receptor biosynthetic process
## GO:0014821 phasic smooth muscle contraction
## GO:0021697 cerebellar cortex formation
## GO:0034505 tooth mineralization
## GO:0046628 positive regulation of insulin receptor signaling pathway
## GO:0048846 axon extension involved in axon guidance
## GO:0060602 branch elongation of an epithelium
## GO:0061003 positive regulation of dendritic spine morphogenesis
## GO:0070734 histone H3-K27 methylation
## GO:0072234 metanephric nephron tubule development
## GO:0140058 neuron projection arborization
## GO:1902284 neuron projection extension involved in neuron projection guidance
## GO:1905523 positive regulation of macrophage migration
## GO:0060760 positive regulation of response to cytokine stimulus
## GO:0001938 positive regulation of endothelial cell proliferation
## GO:0014902 myotube differentiation
## GO:1990748 cellular detoxification
## GO:0034763 negative regulation of transmembrane transport
## GO:0007212 dopamine receptor signaling pathway
## GO:0006302 double-strand break repair
## GO:0007224 smoothened signaling pathway
## GO:1903428 positive regulation of reactive oxygen species biosynthetic process
## GO:0016574 histone ubiquitination
## GO:0032459 regulation of protein oligomerization
## GO:0048599 oocyte development
## GO:0071806 protein transmembrane transport
## GO:0000098 sulfur amino acid catabolic process
## GO:0000212 meiotic spindle organization
## GO:0000722 telomere maintenance via recombination
## GO:0001976 neurological system process involved in regulation of systemic arterial blood pressure
## GO:0002371 dendritic cell cytokine production
## GO:0002863 positive regulation of inflammatory response to antigenic stimulus
## GO:0003334 keratinocyte development
## GO:0006744 ubiquinone biosynthetic process
## GO:0006999 nuclear pore organization
## GO:0007171 activation of transmembrane receptor protein tyrosine kinase activity
## GO:0009886 post-embryonic animal morphogenesis
## GO:0010452 histone H3-K36 methylation
## GO:0010457 centriole-centriole cohesion
## GO:0010752 regulation of cGMP-mediated signaling
## GO:0010826 negative regulation of centrosome duplication
## GO:0014889 muscle atrophy
## GO:0015812 gamma-aminobutyric acid transport
## GO:0016082 synaptic vesicle priming
## GO:0016558 protein import into peroxisome matrix
## GO:0032230 positive regulation of synaptic transmission, GABAergic
## GO:0032905 transforming growth factor beta1 production
## GO:0032968 positive regulation of transcription elongation from RNA polymerase II promoter
## GO:0033004 negative regulation of mast cell activation
## GO:0034380 high-density lipoprotein particle assembly
## GO:0042308 negative regulation of protein import into nucleus
## GO:0042738 exogenous drug catabolic process
## GO:0043922 negative regulation by host of viral transcription
## GO:0045346 regulation of MHC class II biosynthetic process
## GO:0045410 positive regulation of interleukin-6 biosynthetic process
## GO:0045579 positive regulation of B cell differentiation
## GO:0045779 negative regulation of bone resorption
## GO:0046689 response to mercury ion
## GO:0051299 centrosome separation
## GO:0051549 positive regulation of keratinocyte migration
## GO:0051712 positive regulation of killing of cells of other organism
## GO:0051798 positive regulation of hair follicle development
## GO:0060081 membrane hyperpolarization
## GO:0060100 positive regulation of phagocytosis, engulfment
## GO:0060670 branching involved in labyrinthine layer morphogenesis
## GO:0060707 trophoblast giant cell differentiation
## GO:0070307 lens fiber cell development
## GO:0071073 positive regulation of phospholipid biosynthetic process
## GO:0071107 response to parathyroid hormone
## GO:0071257 cellular response to electrical stimulus
## GO:0071340 skeletal muscle acetylcholine-gated channel clustering
## GO:0072520 seminiferous tubule development
## GO:0090110 cargo loading into COPII-coated vesicle
## GO:0097201 negative regulation of transcription from RNA polymerase II promoter in response to stress
## GO:0098885 modification of postsynaptic actin cytoskeleton
## GO:0099633 protein localization to postsynaptic specialization membrane
## GO:0099645 neurotransmitter receptor localization to postsynaptic specialization membrane
## GO:1901550 regulation of endothelial cell development
## GO:1901663 quinone biosynthetic process
## GO:1902430 negative regulation of amyloid-beta formation
## GO:1902855 regulation of non-motile cilium assembly
## GO:1902916 positive regulation of protein polyubiquitination
## GO:1902950 regulation of dendritic spine maintenance
## GO:1903140 regulation of establishment of endothelial barrier
## GO:1903894 regulation of IRE1-mediated unfolded protein response
## GO:1904181 positive regulation of membrane depolarization
## GO:1904590 negative regulation of protein import
## GO:1905155 positive regulation of membrane invagination
## GO:0002070 epithelial cell maturation
## GO:0002739 regulation of cytokine secretion involved in immune response
## GO:0003222 ventricular trabecula myocardium morphogenesis
## GO:0006957 complement activation, alternative pathway
## GO:0007567 parturition
## GO:0008340 determination of adult lifespan
## GO:0009048 dosage compensation by inactivation of X chromosome
## GO:0010225 response to UV-C
## GO:0010878 cholesterol storage
## GO:0016540 protein autoprocessing
## GO:0030397 membrane disassembly
## GO:0030575 nuclear body organization
## GO:0032225 regulation of synaptic transmission, dopaminergic
## GO:0032305 positive regulation of icosanoid secretion
## GO:0033262 regulation of nuclear cell cycle DNA replication
## GO:0033631 cell-cell adhesion mediated by integrin
## GO:0036124 histone H3-K9 trimethylation
## GO:0039692 single stranded viral RNA replication via double stranded DNA intermediate
## GO:0043217 myelin maintenance
## GO:0043981 histone H4-K5 acetylation
## GO:0043982 histone H4-K8 acetylation
## GO:0044117 growth of symbiont in host
## GO:0045683 negative regulation of epidermis development
## GO:0045721 negative regulation of gluconeogenesis
## GO:0045780 positive regulation of bone resorption
## GO:0046852 positive regulation of bone remodeling
## GO:0048243 norepinephrine secretion
## GO:0048820 hair follicle maturation
## GO:0050655 dermatan sulfate proteoglycan metabolic process
## GO:0051081 nuclear envelope disassembly
## GO:0051131 chaperone-mediated protein complex assembly
## GO:0051571 positive regulation of histone H3-K4 methylation
## GO:0055012 ventricular cardiac muscle cell differentiation
## GO:0060253 negative regulation of glial cell proliferation
## GO:0060413 atrial septum morphogenesis
## GO:0061684 chaperone-mediated autophagy
## GO:0070200 establishment of protein localization to telomere
## GO:0070242 thymocyte apoptotic process
## GO:0072176 nephric duct development
## GO:0072283 metanephric renal vesicle morphogenesis
## GO:0090036 regulation of protein kinase C signaling
## GO:0097091 synaptic vesicle clustering
## GO:0099116 tRNA 5'-end processing
## GO:1902166 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:2000001 regulation of DNA damage checkpoint
## GO:0001782 B cell homeostasis
## GO:0002063 chondrocyte development
## GO:0009394 2'-deoxyribonucleotide metabolic process
## GO:0019054 modulation by virus of host process
## GO:0033137 negative regulation of peptidyl-serine phosphorylation
## GO:0042273 ribosomal large subunit biogenesis
## GO:0045671 negative regulation of osteoclast differentiation
## GO:0046640 regulation of alpha-beta T cell proliferation
## GO:0051569 regulation of histone H3-K4 methylation
## GO:0099131 ATP hydrolysis coupled ion transmembrane transport
## GO:2000515 negative regulation of CD4-positive, alpha-beta T cell activation
## GO:0009247 glycolipid biosynthetic process
## GO:1904063 negative regulation of cation transmembrane transport
## GO:0014911 positive regulation of smooth muscle cell migration
## GO:0060042 retina morphogenesis in camera-type eye
## GO:0007007 inner mitochondrial membrane organization
## GO:0046006 regulation of activated T cell proliferation
## GO:0046461 neutral lipid catabolic process
## GO:0046464 acylglycerol catabolic process
## GO:0060306 regulation of membrane repolarization
## GO:0097120 receptor localization to synapse
## GO:1901021 positive regulation of calcium ion transmembrane transporter activity
## GO:0016101 diterpenoid metabolic process
## GO:0034766 negative regulation of ion transmembrane transport
## GO:0014812 muscle cell migration
## GO:0032873 negative regulation of stress-activated MAPK cascade
## GO:0060976 coronary vasculature development
## GO:0070303 negative regulation of stress-activated protein kinase signaling cascade
## GO:0022904 respiratory electron transport chain
## GO:0045454 cell redox homeostasis
## GO:1901264 carbohydrate derivative transport
## GO:0009799 specification of symmetry
## GO:0003209 cardiac atrium morphogenesis
## GO:0006739 NADP metabolic process
## GO:0019433 triglyceride catabolic process
## GO:0032689 negative regulation of interferon-gamma production
## GO:0046320 regulation of fatty acid oxidation
## GO:0051194 positive regulation of cofactor metabolic process
## GO:0001783 B cell apoptotic process
## GO:0006884 cell volume homeostasis
## GO:0010447 response to acidic pH
## GO:0016578 histone deubiquitination
## GO:0032878 regulation of establishment or maintenance of cell polarity
## GO:0035561 regulation of chromatin binding
## GO:0042537 benzene-containing compound metabolic process
## GO:0044818 mitotic G2/M transition checkpoint
## GO:0060055 angiogenesis involved in wound healing
## GO:0070841 inclusion body assembly
## GO:0072170 metanephric tubule development
## GO:1902254 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## GO:2000637 positive regulation of gene silencing by miRNA
## GO:0050710 negative regulation of cytokine secretion
## GO:0046503 glycerolipid catabolic process
## GO:0050853 B cell receptor signaling pathway
## GO:0031952 regulation of protein autophosphorylation
## GO:0035735 intraciliary transport involved in cilium assembly
## GO:0035050 embryonic heart tube development
## GO:0048024 regulation of mRNA splicing, via spliceosome
## GO:0030838 positive regulation of actin filament polymerization
## GO:0006893 Golgi to plasma membrane transport
## GO:0010761 fibroblast migration
## GO:0021762 substantia nigra development
## GO:0099518 vesicle cytoskeletal trafficking
## GO:0006040 amino sugar metabolic process
## GO:0010837 regulation of keratinocyte proliferation
## GO:0030947 regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0042462 eye photoreceptor cell development
## GO:0042558 pteridine-containing compound metabolic process
## GO:0070873 regulation of glycogen metabolic process
## GO:0006690 icosanoid metabolic process
## GO:0001710 mesodermal cell fate commitment
## GO:0001991 regulation of systemic arterial blood pressure by circulatory renin-angiotensin
## GO:0002029 desensitization of G protein-coupled receptor signaling pathway
## GO:0002689 negative regulation of leukocyte chemotaxis
## GO:0007625 grooming behavior
## GO:0016048 detection of temperature stimulus
## GO:0022401 negative adaptation of signaling pathway
## GO:0030859 polarized epithelial cell differentiation
## GO:0031281 positive regulation of cyclase activity
## GO:0032332 positive regulation of chondrocyte differentiation
## GO:0032891 negative regulation of organic acid transport
## GO:0035338 long-chain fatty-acyl-CoA biosynthetic process
## GO:0042403 thyroid hormone metabolic process
## GO:0043153 entrainment of circadian clock by photoperiod
## GO:0051412 response to corticosterone
## GO:0072074 kidney mesenchyme development
## GO:0072077 renal vesicle morphogenesis
## GO:0090190 positive regulation of branching involved in ureteric bud morphogenesis
## GO:0090670 RNA localization to Cajal body
## GO:0090671 telomerase RNA localization to Cajal body
## GO:0090672 telomerase RNA localization
## GO:0090685 RNA localization to nucleus
## GO:2000010 positive regulation of protein localization to cell surface
## GO:0007292 female gamete generation
## GO:0051963 regulation of synapse assembly
## GO:0009855 determination of bilateral symmetry
## GO:0006304 DNA modification
## GO:0006638 neutral lipid metabolic process
## GO:0009948 anterior/posterior axis specification
## GO:0031440 regulation of mRNA 3'-end processing
## GO:1900027 regulation of ruffle assembly
## GO:1903959 regulation of anion transmembrane transport
## GO:0034260 negative regulation of GTPase activity
## GO:0006699 bile acid biosynthetic process
## GO:0032205 negative regulation of telomere maintenance
## GO:0032885 regulation of polysaccharide biosynthetic process
## GO:0044058 regulation of digestive system process
## GO:0034121 regulation of toll-like receptor signaling pathway
## GO:0009583 detection of light stimulus
## GO:0001829 trophectodermal cell differentiation
## GO:0002716 negative regulation of natural killer cell mediated immunity
## GO:0003417 growth plate cartilage development
## GO:0006144 purine nucleobase metabolic process
## GO:0006577 amino-acid betaine metabolic process
## GO:0007076 mitotic chromosome condensation
## GO:0007158 neuron cell-cell adhesion
## GO:0007512 adult heart development
## GO:0014061 regulation of norepinephrine secretion
## GO:0021542 dentate gyrus development
## GO:0030238 male sex determination
## GO:0031468 nuclear envelope reassembly
## GO:0034310 primary alcohol catabolic process
## GO:0035635 entry of bacterium into host cell
## GO:0035930 corticosteroid hormone secretion
## GO:0042762 regulation of sulfur metabolic process
## GO:0043101 purine-containing compound salvage
## GO:0045091 regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0045475 locomotor rhythm
## GO:0045838 positive regulation of membrane potential
## GO:0046321 positive regulation of fatty acid oxidation
## GO:0046931 pore complex assembly
## GO:0050651 dermatan sulfate proteoglycan biosynthetic process
## GO:0050961 detection of temperature stimulus involved in sensory perception
## GO:0050965 detection of temperature stimulus involved in sensory perception of pain
## GO:0055089 fatty acid homeostasis
## GO:0060009 Sertoli cell development
## GO:0071474 cellular hyperosmotic response
## GO:0071599 otic vesicle development
## GO:0072075 metanephric mesenchyme development
## GO:0090192 regulation of glomerulus development
## GO:1901841 regulation of high voltage-gated calcium channel activity
## GO:1902001 fatty acid transmembrane transport
## GO:1902992 negative regulation of amyloid precursor protein catabolic process
## GO:1903358 regulation of Golgi organization
## GO:1905874 regulation of postsynaptic density organization
## GO:1990000 amyloid fibril formation
## GO:0009268 response to pH
## GO:0021532 neural tube patterning
## GO:0030890 positive regulation of B cell proliferation
## GO:0000027 ribosomal large subunit assembly
## GO:0001682 tRNA 5'-leader removal
## GO:0001767 establishment of lymphocyte polarity
## GO:0001787 natural killer cell proliferation
## GO:0002638 negative regulation of immunoglobulin production
## GO:0002730 regulation of dendritic cell cytokine production
## GO:0002836 positive regulation of response to tumor cell
## GO:0002839 positive regulation of immune response to tumor cell
## GO:0003174 mitral valve development
## GO:0006558 L-phenylalanine metabolic process
## GO:0006559 L-phenylalanine catabolic process
## GO:0006707 cholesterol catabolic process
## GO:0006991 response to sterol depletion
## GO:0009086 methionine biosynthetic process
## GO:0009143 nucleoside triphosphate catabolic process
## GO:0010172 embryonic body morphogenesis
## GO:0010755 regulation of plasminogen activation
## GO:0010870 positive regulation of receptor biosynthetic process
## GO:0014820 tonic smooth muscle contraction
## GO:0014870 response to muscle inactivity
## GO:0016127 sterol catabolic process
## GO:0019373 epoxygenase P450 pathway
## GO:0021561 facial nerve development
## GO:0021604 cranial nerve structural organization
## GO:0021610 facial nerve morphogenesis
## GO:0031987 locomotion involved in locomotory behavior
## GO:0032306 regulation of prostaglandin secretion
## GO:0032463 negative regulation of protein homooligomerization
## GO:0032957 inositol trisphosphate metabolic process
## GO:0033148 positive regulation of intracellular estrogen receptor signaling pathway
## GO:0033169 histone H3-K9 demethylation
## GO:0033632 regulation of cell-cell adhesion mediated by integrin
## GO:0033700 phospholipid efflux
## GO:0040015 negative regulation of multicellular organism growth
## GO:0042711 maternal behavior
## GO:0042756 drinking behavior
## GO:0043383 negative T cell selection
## GO:0045793 positive regulation of cell size
## GO:0046007 negative regulation of activated T cell proliferation
## GO:0046831 regulation of RNA export from nucleus
## GO:0048875 chemical homeostasis within a tissue
## GO:0051561 positive regulation of mitochondrial calcium ion concentration
## GO:0051574 positive regulation of histone H3-K9 methylation
## GO:0055015 ventricular cardiac muscle cell development
## GO:0060174 limb bud formation
## GO:0060746 parental behavior
## GO:0060992 response to fungicide
## GO:0061314 Notch signaling involved in heart development
## GO:0070106 interleukin-27-mediated signaling pathway
## GO:0070213 protein auto-ADP-ribosylation
## GO:0070254 mucus secretion
## GO:0070525 tRNA threonylcarbamoyladenosine metabolic process
## GO:0070673 response to interleukin-18
## GO:0071372 cellular response to follicle-stimulating hormone stimulus
## GO:0072017 distal tubule development
## GO:0072110 glomerular mesangial cell proliferation
## GO:0072321 chaperone-mediated protein transport
## GO:0072537 fibroblast activation
## GO:0072584 caveolin-mediated endocytosis
## GO:0090193 positive regulation of glomerulus development
## GO:0097048 dendritic cell apoptotic process
## GO:0098814 spontaneous synaptic transmission
## GO:0099149 regulation of postsynaptic neurotransmitter receptor internalization
## GO:0099188 postsynaptic cytoskeleton organization
## GO:0099624 atrial cardiac muscle cell membrane repolarization
## GO:0140052 cellular response to oxidised low-density lipoprotein particle stimulus
## GO:1900112 regulation of histone H3-K9 trimethylation
## GO:1902065 response to L-glutamate
## GO:1902221 erythrose 4-phosphate/phosphoenolpyruvate family amino acid metabolic process
## GO:1902222 erythrose 4-phosphate/phosphoenolpyruvate family amino acid catabolic process
## GO:1902224 ketone body metabolic process
## GO:1904321 response to forskolin
## GO:1904322 cellular response to forskolin
## GO:1905214 regulation of RNA binding
## GO:1905245 regulation of aspartic-type peptidase activity
## GO:1905941 positive regulation of gonad development
## GO:1990440 positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## GO:2000392 regulation of lamellipodium morphogenesis
## GO:2000668 regulation of dendritic cell apoptotic process
## GO:2001204 regulation of osteoclast development
## GO:2001223 negative regulation of neuron migration
## GO:0042775 mitochondrial ATP synthesis coupled electron transport
## GO:0002090 regulation of receptor internalization
## GO:0003016 respiratory system process
## GO:0019692 deoxyribose phosphate metabolic process
## GO:0006641 triglyceride metabolic process
## GO:0006639 acylglycerol metabolic process
## GO:0051271 negative regulation of cellular component movement
## GO:0042490 mechanoreceptor differentiation
## GO:0098742 cell-cell adhesion via plasma-membrane adhesion molecules
## GO:0000154 rRNA modification
## GO:0008299 isoprenoid biosynthetic process
## GO:0009235 cobalamin metabolic process
## GO:0010155 regulation of proton transport
## GO:0018126 protein hydroxylation
## GO:0045117 azole transport
## GO:0045624 positive regulation of T-helper cell differentiation
## GO:0045649 regulation of macrophage differentiation
## GO:0045943 positive regulation of transcription by RNA polymerase I
## GO:0046716 muscle cell cellular homeostasis
## GO:0090312 positive regulation of protein deacetylation
## GO:0097205 renal filtration
## GO:1903077 negative regulation of protein localization to plasma membrane
## GO:0015701 bicarbonate transport
## GO:0048247 lymphocyte chemotaxis
## GO:1901659 glycosyl compound biosynthetic process
## GO:0010803 regulation of tumor necrosis factor-mediated signaling pathway
## GO:0048663 neuron fate commitment
## GO:1902108 regulation of mitochondrial membrane permeability involved in apoptotic process
## GO:0001881 receptor recycling
## GO:0015804 neutral amino acid transport
## GO:0018196 peptidyl-asparagine modification
## GO:0030851 granulocyte differentiation
## GO:0043001 Golgi to plasma membrane protein transport
## GO:0051693 actin filament capping
## GO:1902235 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:0014014 negative regulation of gliogenesis
## GO:0061756 leukocyte adhesion to vascular endothelial cell
## GO:0098876 vesicle-mediated transport to the plasma membrane
## GO:1902807 negative regulation of cell cycle G1/S phase transition
## GO:0042073 intraciliary transport
## GO:1904018 positive regulation of vasculature development
## GO:0014855 striated muscle cell proliferation
## GO:0060419 heart growth
## GO:0003230 cardiac atrium development
## GO:0030835 negative regulation of actin filament depolymerization
## GO:0045066 regulatory T cell differentiation
## GO:0045923 positive regulation of fatty acid metabolic process
## GO:0048710 regulation of astrocyte differentiation
## GO:0071542 dopaminergic neuron differentiation
## GO:1901020 negative regulation of calcium ion transmembrane transporter activity
## GO:0050999 regulation of nitric-oxide synthase activity
## GO:0070228 regulation of lymphocyte apoptotic process
## GO:0098930 axonal transport
## GO:0000272 polysaccharide catabolic process
## GO:0002335 mature B cell differentiation
## GO:0006730 one-carbon metabolic process
## GO:0006851 mitochondrial calcium ion transmembrane transport
## GO:0010669 epithelial structure maintenance
## GO:0010818 T cell chemotaxis
## GO:0015991 ATP hydrolysis coupled proton transport
## GO:0031338 regulation of vesicle fusion
## GO:0035235 ionotropic glutamate receptor signaling pathway
## GO:0045830 positive regulation of isotype switching
## GO:0060330 regulation of response to interferon-gamma
## GO:0060334 regulation of interferon-gamma-mediated signaling pathway
## GO:0060384 innervation
## GO:0099068 postsynapse assembly
## GO:0007250 activation of NF-kappaB-inducing kinase activity
## GO:0007274 neuromuscular synaptic transmission
## GO:0021533 cell differentiation in hindbrain
## GO:0032011 ARF protein signal transduction
## GO:0032012 regulation of ARF protein signal transduction
## GO:0032793 positive regulation of CREB transcription factor activity
## GO:0042026 protein refolding
## GO:0042772 DNA damage response, signal transduction resulting in transcription
## GO:0043555 regulation of translation in response to stress
## GO:0070828 heterochromatin organization
## GO:0071800 podosome assembly
## GO:0090196 regulation of chemokine secretion
## GO:0097094 craniofacial suture morphogenesis
## GO:1904872 regulation of telomerase RNA localization to Cajal body
## GO:2000193 positive regulation of fatty acid transport
## GO:0042304 regulation of fatty acid biosynthetic process
## GO:0046513 ceramide biosynthetic process
## GO:0032008 positive regulation of TOR signaling
## GO:0046329 negative regulation of JNK cascade
## GO:1901658 glycosyl compound catabolic process
## GO:1903523 negative regulation of blood circulation
## GO:0045600 positive regulation of fat cell differentiation
## GO:0002717 positive regulation of natural killer cell mediated immunity
## GO:0042533 tumor necrosis factor biosynthetic process
## GO:0042534 regulation of tumor necrosis factor biosynthetic process
## GO:0045577 regulation of B cell differentiation
## GO:0048741 skeletal muscle fiber development
## GO:0043030 regulation of macrophage activation
## GO:0000381 regulation of alternative mRNA splicing, via spliceosome
## GO:0043489 RNA stabilization
## GO:0098815 modulation of excitatory postsynaptic potential
## GO:0032720 negative regulation of tumor necrosis factor production
## GO:0051865 protein autoubiquitination
## GO:0042147 retrograde transport, endosome to Golgi
## GO:2000779 regulation of double-strand break repair
## GO:0030512 negative regulation of transforming growth factor beta receptor signaling pathway
## GO:0008033 tRNA processing
## GO:0001732 formation of cytoplasmic translation initiation complex
## GO:0001771 immunological synapse formation
## GO:0002834 regulation of response to tumor cell
## GO:0002837 regulation of immune response to tumor cell
## GO:0006525 arginine metabolic process
## GO:0006595 polyamine metabolic process
## GO:0006825 copper ion transport
## GO:0006910 phagocytosis, recognition
## GO:0030213 hyaluronan biosynthetic process
## GO:0033147 negative regulation of intracellular estrogen receptor signaling pathway
## GO:0034315 regulation of Arp2/3 complex-mediated actin nucleation
## GO:0035067 negative regulation of histone acetylation
## GO:0035358 regulation of peroxisome proliferator activated receptor signaling pathway
## GO:0035372 protein localization to microtubule
## GO:0035493 SNARE complex assembly
## GO:0036295 cellular response to increased oxygen levels
## GO:0043455 regulation of secondary metabolic process
## GO:0043558 regulation of translational initiation in response to stress
## GO:0043968 histone H2A acetylation
## GO:0045198 establishment of epithelial cell apical/basal polarity
## GO:0045618 positive regulation of keratinocyte differentiation
## GO:0045953 negative regulation of natural killer cell mediated cytotoxicity
## GO:0046133 pyrimidine ribonucleoside catabolic process
## GO:0048148 behavioral response to cocaine
## GO:0048841 regulation of axon extension involved in axon guidance
## GO:0051770 positive regulation of nitric-oxide synthase biosynthetic process
## GO:0051775 response to redox state
## GO:0051852 disruption by host of symbiont cells
## GO:0060261 positive regulation of transcription initiation from RNA polymerase II promoter
## GO:0071361 cellular response to ethanol
## GO:0072425 signal transduction involved in G2 DNA damage checkpoint
## GO:0090141 positive regulation of mitochondrial fission
## GO:0090231 regulation of spindle checkpoint
## GO:0090266 regulation of mitotic cell cycle spindle assembly checkpoint
## GO:0099558 maintenance of synapse structure
## GO:1903504 regulation of mitotic spindle checkpoint
## GO:1903624 regulation of DNA catabolic process
## GO:1903729 regulation of plasma membrane organization
## GO:1904748 regulation of apoptotic process involved in development
## GO:1904923 regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:2000345 regulation of hepatocyte proliferation
## GO:0097006 regulation of plasma lipoprotein particle levels
## GO:0042398 cellular modified amino acid biosynthetic process
## GO:0043268 positive regulation of potassium ion transport
## GO:1903573 negative regulation of response to endoplasmic reticulum stress
## GO:0001824 blastocyst development
## GO:0098869 cellular oxidant detoxification
## GO:0042773 ATP synthesis coupled electron transport
## GO:2000146 negative regulation of cell motility
## GO:0001562 response to protozoan
## GO:0003094 glomerular filtration
## GO:0003283 atrial septum development
## GO:0008045 motor neuron axon guidance
## GO:0019682 glyceraldehyde-3-phosphate metabolic process
## GO:0022010 central nervous system myelination
## GO:0031935 regulation of chromatin silencing
## GO:0032291 axon ensheathment in central nervous system
## GO:0042135 neurotransmitter catabolic process
## GO:0042451 purine nucleoside biosynthetic process
## GO:0042776 mitochondrial ATP synthesis coupled proton transport
## GO:0046129 purine ribonucleoside biosynthetic process
## GO:0050765 negative regulation of phagocytosis
## GO:0050951 sensory perception of temperature stimulus
## GO:2000114 regulation of establishment of cell polarity
## GO:2000269 regulation of fibroblast apoptotic process
## GO:0001961 positive regulation of cytokine-mediated signaling pathway
## GO:0033059 cellular pigmentation
## GO:0048641 regulation of skeletal muscle tissue development
## GO:0051438 regulation of ubiquitin-protein transferase activity
## GO:0002675 positive regulation of acute inflammatory response
## GO:0010591 regulation of lamellipodium assembly
## GO:0014904 myotube cell development
## GO:0018279 protein N-linked glycosylation via asparagine
## GO:0045648 positive regulation of erythrocyte differentiation
## GO:0048854 brain morphogenesis
## GO:0070570 regulation of neuron projection regeneration
## GO:1902692 regulation of neuroblast proliferation
## GO:0071804 cellular potassium ion transport
## GO:0071805 potassium ion transmembrane transport
## GO:0070741 response to interleukin-6
## GO:0001660 fever generation
## GO:0001768 establishment of T cell polarity
## GO:0002291 T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## GO:0002645 positive regulation of tolerance induction
## GO:0003183 mitral valve morphogenesis
## GO:0003264 regulation of cardioblast proliferation
## GO:0006020 inositol metabolic process
## GO:0006527 arginine catabolic process
## GO:0006930 substrate-dependent cell migration, cell extension
## GO:0007084 mitotic nuclear envelope reassembly
## GO:0007220 Notch receptor processing
## GO:0010918 positive regulation of mitochondrial membrane potential
## GO:0010944 negative regulation of transcription by competitive promoter binding
## GO:0014041 regulation of neuron maturation
## GO:0014049 positive regulation of glutamate secretion
## GO:0014877 response to muscle inactivity involved in regulation of muscle adaptation
## GO:0014894 response to denervation involved in regulation of muscle adaptation
## GO:0016102 diterpenoid biosynthetic process
## GO:0016553 base conversion or substitution editing
## GO:0021877 forebrain neuron fate commitment
## GO:0031652 positive regulation of heat generation
## GO:0032000 positive regulation of fatty acid beta-oxidation
## GO:0032025 response to cobalt ion
## GO:0032308 positive regulation of prostaglandin secretion
## GO:0032817 regulation of natural killer cell proliferation
## GO:0032823 regulation of natural killer cell differentiation
## GO:0032836 glomerular basement membrane development
## GO:0033210 leptin-mediated signaling pathway
## GO:0033483 gas homeostasis
## GO:0033629 negative regulation of cell adhesion mediated by integrin
## GO:0034350 regulation of glial cell apoptotic process
## GO:0034378 chylomicron assembly
## GO:0035878 nail development
## GO:0039530 MDA-5 signaling pathway
## GO:0042023 DNA endoreduplication
## GO:0042178 xenobiotic catabolic process
## GO:0042415 norepinephrine metabolic process
## GO:0043471 regulation of cellular carbohydrate catabolic process
## GO:0044803 multi-organism membrane organization
## GO:0045351 type I interferon biosynthetic process
## GO:0045625 regulation of T-helper 1 cell differentiation
## GO:0045657 positive regulation of monocyte differentiation
## GO:0045713 low-density lipoprotein particle receptor biosynthetic process
## GO:0045792 negative regulation of cell size
## GO:0045955 negative regulation of calcium ion-dependent exocytosis
## GO:0046950 cellular ketone body metabolic process
## GO:0048021 regulation of melanin biosynthetic process
## GO:0048245 eosinophil chemotaxis
## GO:0048672 positive regulation of collateral sprouting
## GO:0048739 cardiac muscle fiber development
## GO:0048755 branching morphogenesis of a nerve
## GO:0051409 response to nitrosative stress
## GO:0051657 maintenance of organelle location
## GO:0051901 positive regulation of mitochondrial depolarization
## GO:0051956 negative regulation of amino acid transport
## GO:0060346 bone trabecula formation
## GO:0060439 trachea morphogenesis
## GO:0060536 cartilage morphogenesis
## GO:0060600 dichotomous subdivision of an epithelial terminal unit
## GO:0061140 lung secretory cell differentiation
## GO:0061299 retina vasculature morphogenesis in camera-type eye
## GO:0070391 response to lipoteichoic acid
## GO:0070914 UV-damage excision repair
## GO:0071223 cellular response to lipoteichoic acid
## GO:0071281 cellular response to iron ion
## GO:0071313 cellular response to caffeine
## GO:0071481 cellular response to X-ray
## GO:0071501 cellular response to sterol depletion
## GO:0071545 inositol phosphate catabolic process
## GO:0071609 chemokine (C-C motif) ligand 5 production
## GO:0071670 smooth muscle cell chemotaxis
## GO:0072124 regulation of glomerular mesangial cell proliferation
## GO:0072203 cell proliferation involved in metanephros development
## GO:0072697 protein localization to cell cortex
## GO:0090154 positive regulation of sphingolipid biosynthetic process
## GO:0090309 positive regulation of methylation-dependent chromatin silencing
## GO:0097090 presynaptic membrane organization
## GO:0097278 complement-dependent cytotoxicity
## GO:0097531 mast cell migration
## GO:0098883 synapse pruning
## GO:0099550 trans-synaptic signaling, modulating synaptic transmission
## GO:0150011 regulation of neuron projection arborization
## GO:1901526 positive regulation of mitophagy
## GO:1902805 positive regulation of synaptic vesicle transport
## GO:1903299 regulation of hexokinase activity
## GO:1903789 regulation of amino acid transmembrane transport
## GO:1904350 regulation of protein catabolic process in the vacuole
## GO:1904896 ESCRT complex disassembly
## GO:1904903 ESCRT III complex disassembly
## GO:2000304 positive regulation of ceramide biosynthetic process
## GO:2000317 negative regulation of T-helper 17 type immune response
## GO:2001135 regulation of endocytic recycling
## GO:0038066 p38MAPK cascade
## GO:0060113 inner ear receptor cell differentiation
## GO:0000959 mitochondrial RNA metabolic process
## GO:0032660 regulation of interleukin-17 production
## GO:0097009 energy homeostasis
## GO:0061900 glial cell activation
## GO:0022618 ribonucleoprotein complex assembly
## GO:1901862 negative regulation of muscle tissue development
## GO:0002082 regulation of oxidative phosphorylation
## GO:0002092 positive regulation of receptor internalization
## GO:0021871 forebrain regionalization
## GO:0021904 dorsal/ventral neural tube patterning
## GO:0031954 positive regulation of protein autophosphorylation
## GO:0036315 cellular response to sterol
## GO:0042481 regulation of odontogenesis
## GO:0043951 negative regulation of cAMP-mediated signaling
## GO:0051984 positive regulation of chromosome segregation
## GO:0060148 positive regulation of posttranscriptional gene silencing
## GO:0086064 cell communication by electrical coupling involved in cardiac conduction
## GO:1903020 positive regulation of glycoprotein metabolic process
## GO:1903421 regulation of synaptic vesicle recycling
## GO:1904376 negative regulation of protein localization to cell periphery
## GO:0003143 embryonic heart tube morphogenesis
## GO:0032467 positive regulation of cytokinesis
## GO:0035315 hair cell differentiation
## GO:0046676 negative regulation of insulin secretion
## GO:0055024 regulation of cardiac muscle tissue development
## GO:1903556 negative regulation of tumor necrosis factor superfamily cytokine production
## GO:0044728 DNA methylation or demethylation
## GO:0090398 cellular senescence
## GO:1903845 negative regulation of cellular response to transforming growth factor beta stimulus
## GO:0010824 regulation of centrosome duplication
## GO:1903170 negative regulation of calcium ion transmembrane transport
## GO:0001573 ganglioside metabolic process
## GO:0006544 glycine metabolic process
## GO:0006891 intra-Golgi vesicle-mediated transport
## GO:0010715 regulation of extracellular matrix disassembly
## GO:0016137 glycoside metabolic process
## GO:0030277 maintenance of gastrointestinal epithelium
## GO:0043651 linoleic acid metabolic process
## GO:0044241 lipid digestion
## GO:0045056 transcytosis
## GO:0048339 paraxial mesoderm development
## GO:0048535 lymph node development
## GO:0060004 reflex
## GO:0070885 negative regulation of calcineurin-NFAT signaling cascade
## GO:0071360 cellular response to exogenous dsRNA
## GO:0106057 negative regulation of calcineurin-mediated signaling
## GO:1904380 endoplasmic reticulum mannose trimming
## GO:1904996 positive regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905331 negative regulation of morphogenesis of an epithelium
## GO:2000641 regulation of early endosome to late endosome transport
## GO:2000757 negative regulation of peptidyl-lysine acetylation
## GO:0006760 folic acid-containing compound metabolic process
## GO:0031365 N-terminal protein amino acid modification
## GO:0040020 regulation of meiotic nuclear division
## GO:0046839 phospholipid dephosphorylation
## GO:0090169 regulation of spindle assembly
## GO:2000463 positive regulation of excitatory postsynaptic potential
## GO:0090288 negative regulation of cellular response to growth factor stimulus
## GO:0030857 negative regulation of epithelial cell differentiation
## GO:0042157 lipoprotein metabolic process
## GO:0009994 oocyte differentiation
## GO:0010712 regulation of collagen metabolic process
## GO:0043949 regulation of cAMP-mediated signaling
## GO:0055017 cardiac muscle tissue growth
## GO:0072528 pyrimidine-containing compound biosynthetic process
## GO:0034314 Arp2/3 complex-mediated actin nucleation
## GO:0042407 cristae formation
## GO:1903319 positive regulation of protein maturation
## GO:0001523 retinoid metabolic process
## GO:0014909 smooth muscle cell migration
## GO:0006400 tRNA modification
## GO:0007020 microtubule nucleation
## GO:0009226 nucleotide-sugar biosynthetic process
## GO:0010592 positive regulation of lamellipodium assembly
## GO:0015012 heparan sulfate proteoglycan biosynthetic process
## GO:0019400 alditol metabolic process
## GO:0033194 response to hydroperoxide
## GO:0042474 middle ear morphogenesis
## GO:0042832 defense response to protozoan
## GO:0043369 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## GO:0043586 tongue development
## GO:0044331 cell-cell adhesion mediated by cadherin
## GO:0048745 smooth muscle tissue development
## GO:0051349 positive regulation of lyase activity
## GO:0051383 kinetochore organization
## GO:0060216 definitive hemopoiesis
## GO:0071397 cellular response to cholesterol
## GO:0072087 renal vesicle development
## GO:1902473 regulation of protein localization to synapse
## GO:0150076 neuroinflammatory response
## GO:0010922 positive regulation of phosphatase activity
## GO:0042455 ribonucleoside biosynthetic process
## GO:0043094 cellular metabolic compound salvage
## GO:0045589 regulation of regulatory T cell differentiation
## GO:2000785 regulation of autophagosome assembly
## GO:0016485 protein processing
## GO:0001967 suckling behavior
## GO:0006089 lactate metabolic process
## GO:0007183 SMAD protein complex assembly
## GO:0009084 glutamine family amino acid biosynthetic process
## GO:0009312 oligosaccharide biosynthetic process
## GO:0014819 regulation of skeletal muscle contraction
## GO:0021554 optic nerve development
## GO:0030011 maintenance of cell polarity
## GO:0030205 dermatan sulfate metabolic process
## GO:0030656 regulation of vitamin metabolic process
## GO:0031167 rRNA methylation
## GO:0031953 negative regulation of protein autophosphorylation
## GO:0032802 low-density lipoprotein particle receptor catabolic process
## GO:0033604 negative regulation of catecholamine secretion
## GO:0033623 regulation of integrin activation
## GO:0036109 alpha-linolenic acid metabolic process
## GO:0042532 negative regulation of tyrosine phosphorylation of STAT protein
## GO:0044090 positive regulation of vacuole organization
## GO:0048266 behavioral response to pain
## GO:0050872 white fat cell differentiation
## GO:0051447 negative regulation of meiotic cell cycle
## GO:0051645 Golgi localization
## GO:0060576 intestinal epithelial cell development
## GO:0061000 negative regulation of dendritic spine development
## GO:0062033 positive regulation of mitotic sister chromatid segregation
## GO:0070208 protein heterotrimerization
## GO:0071696 ectodermal placode development
## GO:0090308 regulation of methylation-dependent chromatin silencing
## GO:1900029 positive regulation of ruffle assembly
## GO:1900103 positive regulation of endoplasmic reticulum unfolded protein response
## GO:1902713 regulation of interferon-gamma secretion
## GO:1904925 positive regulation of autophagy of mitochondrion in response to mitochondrial depolarization
## GO:2000194 regulation of female gonad development
## GO:0022412 cellular process involved in reproduction in multicellular organism
## GO:0071826 ribonucleoprotein complex subunit organization
## GO:0000578 embryonic axis specification
## GO:0043243 positive regulation of protein complex disassembly
## GO:0002347 response to tumor cell
## GO:0006359 regulation of transcription by RNA polymerase III
## GO:0015985 energy coupled proton transport, down electrochemical gradient
## GO:0015986 ATP synthesis coupled proton transport
## GO:0034123 positive regulation of toll-like receptor signaling pathway
## GO:0035588 G protein-coupled purinergic receptor signaling pathway
## GO:0043576 regulation of respiratory gaseous exchange
## GO:0044247 cellular polysaccharide catabolic process
## GO:0050857 positive regulation of antigen receptor-mediated signaling pathway
## GO:0051004 regulation of lipoprotein lipase activity
## GO:0051125 regulation of actin nucleation
## GO:0071404 cellular response to low-density lipoprotein particle stimulus
## GO:0061512 protein localization to cilium
## GO:0099054 presynapse assembly
## GO:0010632 regulation of epithelial cell migration
## GO:0051321 meiotic cell cycle
## GO:0005978 glycogen biosynthetic process
## GO:0009250 glucan biosynthetic process
## GO:0099172 presynapse organization
## GO:0061951 establishment of protein localization to plasma membrane
## GO:2000045 regulation of G1/S transition of mitotic cell cycle
## GO:0060420 regulation of heart growth
## GO:1901379 regulation of potassium ion transmembrane transport
## GO:0006213 pyrimidine nucleoside metabolic process
## GO:0050885 neuromuscular process controlling balance
## GO:0070206 protein trimerization
## GO:0015988 energy coupled proton transmembrane transport, against electrochemical gradient
## GO:0030201 heparan sulfate proteoglycan metabolic process
## GO:0032196 transposition
## GO:0042255 ribosome assembly
## GO:0050919 negative chemotaxis
## GO:0072539 T-helper 17 cell differentiation
## GO:0140115 export across plasma membrane
## GO:0051055 negative regulation of lipid biosynthetic process
## GO:0031640 killing of cells of other organism
## GO:0044364 disruption of cells of other organism
## GO:0048635 negative regulation of muscle organ development
## GO:2001259 positive regulation of cation channel activity
## GO:0031929 TOR signaling
## GO:0000097 sulfur amino acid biosynthetic process
## GO:0006590 thyroid hormone generation
## GO:0008090 retrograde axonal transport
## GO:0009219 pyrimidine deoxyribonucleotide metabolic process
## GO:0018027 peptidyl-lysine dimethylation
## GO:0031649 heat generation
## GO:0036035 osteoclast development
## GO:0045989 positive regulation of striated muscle contraction
## GO:0046174 polyol catabolic process
## GO:0048070 regulation of developmental pigmentation
## GO:0050884 neuromuscular process controlling posture
## GO:0060192 negative regulation of lipase activity
## GO:0060572 morphogenesis of an epithelial bud
## GO:0070886 positive regulation of calcineurin-NFAT signaling cascade
## GO:0072148 epithelial cell fate commitment
## GO:0090083 regulation of inclusion body assembly
## GO:0106058 positive regulation of calcineurin-mediated signaling
## GO:1900242 regulation of synaptic vesicle endocytosis
## GO:1902993 positive regulation of amyloid precursor protein catabolic process
## GO:0014896 muscle hypertrophy
## GO:0003401 axis elongation
## GO:0045822 negative regulation of heart contraction
## GO:0046039 GTP metabolic process
## GO:0072538 T-helper 17 type immune response
## GO:0097106 postsynaptic density organization
## GO:1904292 regulation of ERAD pathway
## GO:0015918 sterol transport
## GO:0030336 negative regulation of cell migration
## GO:0021522 spinal cord motor neuron differentiation
## GO:0090504 epiboly
## GO:1901099 negative regulation of signal transduction in absence of ligand
## GO:2001240 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## GO:0045638 negative regulation of myeloid cell differentiation
## GO:0010762 regulation of fibroblast migration
## GO:0050716 positive regulation of interleukin-1 secretion
## GO:0072529 pyrimidine-containing compound catabolic process
## GO:0090101 negative regulation of transmembrane receptor protein serine/threonine kinase signaling pathway
## GO:0002313 mature B cell differentiation involved in immune response
## GO:0002363 alpha-beta T cell lineage commitment
## GO:0003159 morphogenesis of an endothelium
## GO:0006677 glycosylceramide metabolic process
## GO:0018195 peptidyl-arginine modification
## GO:0034138 toll-like receptor 3 signaling pathway
## GO:0035458 cellular response to interferon-beta
## GO:0043691 reverse cholesterol transport
## GO:0045663 positive regulation of myoblast differentiation
## GO:0051767 nitric-oxide synthase biosynthetic process
## GO:0051769 regulation of nitric-oxide synthase biosynthetic process
## GO:0060039 pericardium development
## GO:0060252 positive regulation of glial cell proliferation
## GO:0060973 cell migration involved in heart development
## GO:0061154 endothelial tube morphogenesis
## GO:0071071 regulation of phospholipid biosynthetic process
## GO:0071243 cellular response to arsenic-containing substance
## GO:0071294 cellular response to zinc ion
## GO:1902307 positive regulation of sodium ion transmembrane transport
## GO:0006656 phosphatidylcholine biosynthetic process
## GO:0019068 virion assembly
## GO:0047496 vesicle transport along microtubule
## GO:1904037 positive regulation of epithelial cell apoptotic process
## GO:0006692 prostanoid metabolic process
## GO:0006693 prostaglandin metabolic process
## GO:0010907 positive regulation of glucose metabolic process
## GO:0032965 regulation of collagen biosynthetic process
## GO:0050706 regulation of interleukin-1 beta secretion
## GO:0000288 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0001774 microglial cell activation
## GO:0002269 leukocyte activation involved in inflammatory response
## GO:0007062 sister chromatid cohesion
## GO:0009584 detection of visible light
## GO:0045747 positive regulation of Notch signaling pathway
## GO:0001947 heart looping
## GO:0006220 pyrimidine nucleotide metabolic process
## GO:0045843 negative regulation of striated muscle tissue development
## GO:0090342 regulation of cell aging
## GO:0001510 RNA methylation
## GO:0014888 striated muscle adaptation
## GO:1903202 negative regulation of oxidative stress-induced cell death
## GO:0019730 antimicrobial humoral response
## GO:0055088 lipid homeostasis
## GO:0001759 organ induction
## GO:0009068 aspartate family amino acid catabolic process
## GO:0009251 glucan catabolic process
## GO:0009595 detection of biotic stimulus
## GO:0015740 C4-dicarboxylate transport
## GO:0033233 regulation of protein sumoylation
## GO:0035590 purinergic nucleotide receptor signaling pathway
## GO:0036010 protein localization to endosome
## GO:0044743 protein transmembrane import into intracellular organelle
## GO:0050995 negative regulation of lipid catabolic process
## GO:1900273 positive regulation of long-term synaptic potentiation
## GO:1901685 glutathione derivative metabolic process
## GO:1901687 glutathione derivative biosynthetic process
## GO:1904666 regulation of ubiquitin protein ligase activity
## GO:2000773 negative regulation of cellular senescence
## GO:0001765 membrane raft assembly
## GO:0002002 regulation of angiotensin levels in blood
## GO:0002003 angiotensin maturation
## GO:0002281 macrophage activation involved in immune response
## GO:0002674 negative regulation of acute inflammatory response
## GO:0003207 cardiac chamber formation
## GO:0006068 ethanol catabolic process
## GO:0006216 cytidine catabolic process
## GO:0006983 ER overload response
## GO:0007077 mitotic nuclear envelope disassembly
## GO:0009972 cytidine deamination
## GO:0010960 magnesium ion homeostasis
## GO:0016322 neuron remodeling
## GO:0021681 cerebellar granular layer development
## GO:0021794 thalamus development
## GO:0030157 pancreatic juice secretion
## GO:0030208 dermatan sulfate biosynthetic process
## GO:0031272 regulation of pseudopodium assembly
## GO:0031650 regulation of heat generation
## GO:0032785 negative regulation of DNA-templated transcription, elongation
## GO:0034086 maintenance of sister chromatid cohesion
## GO:0034088 maintenance of mitotic sister chromatid cohesion
## GO:0035641 locomotory exploration behavior
## GO:0038003 opioid receptor signaling pathway
## GO:0040034 regulation of development, heterochronic
## GO:0043650 dicarboxylic acid biosynthetic process
## GO:0045161 neuronal ion channel clustering
## GO:0045605 negative regulation of epidermal cell differentiation
## GO:0045836 positive regulation of meiotic nuclear division
## GO:0045869 negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## GO:0046087 cytidine metabolic process
## GO:0048172 regulation of short-term neuronal synaptic plasticity
## GO:0048642 negative regulation of skeletal muscle tissue development
## GO:0048934 peripheral nervous system neuron differentiation
## GO:0048935 peripheral nervous system neuron development
## GO:0051095 regulation of helicase activity
## GO:0051451 myoblast migration
## GO:0051988 regulation of attachment of spindle microtubules to kinetochore
## GO:0055062 phosphate ion homeostasis
## GO:0060788 ectodermal placode formation
## GO:0070202 regulation of establishment of protein localization to chromosome
## GO:0070365 hepatocyte differentiation
## GO:0070586 cell-cell adhesion involved in gastrulation
## GO:0071697 ectodermal placode morphogenesis
## GO:0071888 macrophage apoptotic process
## GO:0072044 collecting duct development
## GO:0072178 nephric duct morphogenesis
## GO:0072505 divalent inorganic anion homeostasis
## GO:0072506 trivalent inorganic anion homeostasis
## GO:0086067 AV node cell to bundle of His cell communication
## GO:0090151 establishment of protein localization to mitochondrial membrane
## GO:0090331 negative regulation of platelet aggregation
## GO:0090713 immunological memory process
## GO:0099150 regulation of postsynaptic specialization assembly
## GO:0150052 regulation of postsynapse assembly
## GO:1900376 regulation of secondary metabolite biosynthetic process
## GO:1902510 regulation of apoptotic DNA fragmentation
## GO:1902563 regulation of neutrophil activation
## GO:1902656 calcium ion import into cytosol
## GO:1902947 regulation of tau-protein kinase activity
## GO:1904668 positive regulation of ubiquitin protein ligase activity
## GO:1904953 Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## GO:2000052 positive regulation of non-canonical Wnt signaling pathway
## GO:2000121 regulation of removal of superoxide radicals
## GO:2001198 regulation of dendritic cell differentiation
## GO:0045833 negative regulation of lipid metabolic process
## GO:0007176 regulation of epidermal growth factor-activated receptor activity
## GO:0033522 histone H2A ubiquitination
## GO:0035336 long-chain fatty-acyl-CoA metabolic process
## GO:0045662 negative regulation of myoblast differentiation
## GO:0045672 positive regulation of osteoclast differentiation
## GO:0045932 negative regulation of muscle contraction
## GO:0046426 negative regulation of JAK-STAT cascade
## GO:0051875 pigment granule localization
## GO:0071514 genetic imprinting
## GO:0014910 regulation of smooth muscle cell migration
## GO:0007368 determination of left/right symmetry
## GO:0032651 regulation of interleukin-1 beta production
## GO:0001516 prostaglandin biosynthetic process
## GO:0005979 regulation of glycogen biosynthetic process
## GO:0010894 negative regulation of steroid biosynthetic process
## GO:0010954 positive regulation of protein processing
## GO:0010962 regulation of glucan biosynthetic process
## GO:0031063 regulation of histone deacetylation
## GO:0035510 DNA dealkylation
## GO:0046457 prostanoid biosynthetic process
## GO:0051443 positive regulation of ubiquitin-protein transferase activity
## GO:0071168 protein localization to chromatin
## GO:0014897 striated muscle hypertrophy
## GO:0035305 negative regulation of dephosphorylation
## GO:0003300 cardiac muscle hypertrophy
## GO:0032612 interleukin-1 production
## GO:0006505 GPI anchor metabolic process
## GO:0006536 glutamate metabolic process
## GO:0018198 peptidyl-cysteine modification
## GO:0021988 olfactory lobe development
## GO:0031122 cytoplasmic microtubule organization
## GO:0044319 wound healing, spreading of cells
## GO:0061311 cell surface receptor signaling pathway involved in heart development
## GO:0086011 membrane repolarization during action potential
## GO:0090505 epiboly involved in wound healing
## GO:0099084 postsynaptic specialization organization
## GO:0099625 ventricular cardiac muscle cell membrane repolarization
## GO:0034142 toll-like receptor 4 signaling pathway
## GO:0050849 negative regulation of calcium-mediated signaling
## GO:0097484 dendrite extension
## GO:1904030 negative regulation of cyclin-dependent protein kinase activity
## GO:0046622 positive regulation of organ growth
## GO:0001325 formation of extrachromosomal circular DNA
## GO:0001696 gastric acid secretion
## GO:0002031 G protein-coupled receptor internalization
## GO:0006098 pentose-phosphate shunt
## GO:0006534 cysteine metabolic process
## GO:0007039 protein catabolic process in the vacuole
## GO:0009070 serine family amino acid biosynthetic process
## GO:0009200 deoxyribonucleoside triphosphate metabolic process
## GO:0014733 regulation of skeletal muscle adaptation
## GO:0014874 response to stimulus involved in regulation of muscle adaptation
## GO:0016180 snRNA processing
## GO:0017014 protein nitrosylation
## GO:0018119 peptidyl-cysteine S-nitrosylation
## GO:0019377 glycolipid catabolic process
## GO:0030852 regulation of granulocyte differentiation
## GO:0031268 pseudopodium organization
## GO:0033599 regulation of mammary gland epithelial cell proliferation
## GO:0034134 toll-like receptor 2 signaling pathway
## GO:0042074 cell migration involved in gastrulation
## GO:0043162 ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## GO:0043584 nose development
## GO:0048521 negative regulation of behavior
## GO:0051044 positive regulation of membrane protein ectodomain proteolysis
## GO:0051923 sulfation
## GO:0060841 venous blood vessel development
## GO:0070935 3'-UTR-mediated mRNA stabilization
## GO:0080182 histone H3-K4 trimethylation
## GO:0090136 epithelial cell-cell adhesion
## GO:0090656 t-circle formation
## GO:0090737 telomere maintenance via telomere trimming
## GO:1900037 regulation of cellular response to hypoxia
## GO:1900363 regulation of mRNA polyadenylation
## GO:1902187 negative regulation of viral release from host cell
## GO:1904294 positive regulation of ERAD pathway
## GO:1904874 positive regulation of telomerase RNA localization to Cajal body
## GO:2000047 regulation of cell-cell adhesion mediated by cadherin
## GO:0010955 negative regulation of protein processing
## GO:1903318 negative regulation of protein maturation
## GO:0006120 mitochondrial electron transport, NADH to ubiquinone
## GO:0061844 antimicrobial humoral immune response mediated by antimicrobial peptide
## GO:1902017 regulation of cilium assembly
## GO:0008089 anterograde axonal transport
## GO:0002534 cytokine production involved in inflammatory response
## GO:0006111 regulation of gluconeogenesis
## GO:0010799 regulation of peptidyl-threonine phosphorylation
## GO:0021517 ventral spinal cord development
## GO:0071354 cellular response to interleukin-6
## GO:0032652 regulation of interleukin-1 production
## GO:0032611 interleukin-1 beta production
## GO:1901342 regulation of vasculature development
## GO:0006312 mitotic recombination
## GO:0006515 protein quality control for misfolded or incompletely synthesized proteins
## GO:0006829 zinc ion transport
## GO:0006882 cellular zinc ion homeostasis
## GO:0030903 notochord development
## GO:0031065 positive regulation of histone deacetylation
## GO:0031998 regulation of fatty acid beta-oxidation
## GO:0032693 negative regulation of interleukin-10 production
## GO:0051446 positive regulation of meiotic cell cycle
## GO:0060219 camera-type eye photoreceptor cell differentiation
## GO:0060977 coronary vasculature morphogenesis
## GO:0071318 cellular response to ATP
## GO:0071625 vocalization behavior
## GO:1902165 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## GO:1904469 positive regulation of tumor necrosis factor secretion
## GO:0045765 regulation of angiogenesis
## GO:1902806 regulation of cell cycle G1/S phase transition
## GO:0010923 negative regulation of phosphatase activity
## GO:0005980 glycogen catabolic process
## GO:0006067 ethanol metabolic process
## GO:0007063 regulation of sister chromatid cohesion
## GO:0008053 mitochondrial fusion
## GO:0010893 positive regulation of steroid biosynthetic process
## GO:0071459 protein localization to chromosome, centromeric region
## GO:0097186 amelogenesis
## GO:1901984 negative regulation of protein acetylation
## GO:2000104 negative regulation of DNA-dependent DNA replication
## GO:2000737 negative regulation of stem cell differentiation
## GO:0007218 neuropeptide signaling pathway
## GO:0014850 response to muscle activity
## GO:0032400 melanosome localization
## GO:0033119 negative regulation of RNA splicing
## GO:0042104 positive regulation of activated T cell proliferation
## GO:0042274 ribosomal small subunit biogenesis
## GO:0043567 regulation of insulin-like growth factor receptor signaling pathway
## GO:0046135 pyrimidine nucleoside catabolic process
## GO:0048143 astrocyte activation
## GO:0051560 mitochondrial calcium ion homeostasis
## GO:0060259 regulation of feeding behavior
## GO:0090103 cochlea morphogenesis
## GO:0050727 regulation of inflammatory response
## GO:0032515 negative regulation of phosphoprotein phosphatase activity
## GO:1900408 negative regulation of cellular response to oxidative stress
## GO:0015949 nucleobase-containing small molecule interconversion
## GO:0044788 modulation by host of viral process
## GO:0046854 phosphatidylinositol phosphorylation
## GO:0048679 regulation of axon regeneration
## GO:0050686 negative regulation of mRNA processing
## GO:0009620 response to fungus
## GO:0050702 interleukin-1 beta secretion
## GO:0007143 female meiotic nuclear division
## GO:0021772 olfactory bulb development
## GO:0045939 negative regulation of steroid metabolic process
## GO:0050779 RNA destabilization
## GO:0099623 regulation of cardiac muscle cell membrane repolarization
## GO:1900181 negative regulation of protein localization to nucleus
## GO:1901863 positive regulation of muscle tissue development
## GO:0010595 positive regulation of endothelial cell migration
## GO:0045736 negative regulation of cyclin-dependent protein serine/threonine kinase activity
## GO:0048147 negative regulation of fibroblast proliferation
## GO:0048665 neuron fate specification
## GO:0097035 regulation of membrane lipid distribution
## GO:1902116 negative regulation of organelle assembly
## GO:0043502 regulation of muscle adaptation
## GO:0000076 DNA replication checkpoint
## GO:0000185 activation of MAPKKK activity
## GO:0002024 diet induced thermogenesis
## GO:0002328 pro-B cell differentiation
## GO:0003161 cardiac conduction system development
## GO:0006044 N-acetylglucosamine metabolic process
## GO:0006853 carnitine shuttle
## GO:0007256 activation of JNKK activity
## GO:0009151 purine deoxyribonucleotide metabolic process
## GO:0009629 response to gravity
## GO:0014831 gastro-intestinal system smooth muscle contraction
## GO:0015802 basic amino acid transport
## GO:0016264 gap junction assembly
## GO:0019471 4-hydroxyproline metabolic process
## GO:0021892 cerebral cortex GABAergic interneuron differentiation
## GO:0021903 rostrocaudal neural tube patterning
## GO:0030002 cellular anion homeostasis
## GO:0030320 cellular monovalent inorganic anion homeostasis
## GO:0030948 negative regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0031274 positive regulation of pseudopodium assembly
## GO:0031442 positive regulation of mRNA 3'-end processing
## GO:0031507 heterochromatin assembly
## GO:0032060 bleb assembly
## GO:0032490 detection of molecule of bacterial origin
## GO:0033235 positive regulation of protein sumoylation
## GO:0033327 Leydig cell differentiation
## GO:0033539 fatty acid beta-oxidation using acyl-CoA dehydrogenase
## GO:0034115 negative regulation of heterotypic cell-cell adhesion
## GO:0034372 very-low-density lipoprotein particle remodeling
## GO:0034379 very-low-density lipoprotein particle assembly
## GO:0043117 positive regulation of vascular permeability
## GO:0043248 proteasome assembly
## GO:0045919 positive regulation of cytolysis
## GO:0046929 negative regulation of neurotransmitter secretion
## GO:0048505 regulation of timing of cell differentiation
## GO:0048548 regulation of pinocytosis
## GO:0050910 detection of mechanical stimulus involved in sensory perception of sound
## GO:0050930 induction of positive chemotaxis
## GO:0051132 NK T cell activation
## GO:0055091 phospholipid homeostasis
## GO:0060272 embryonic skeletal joint morphogenesis
## GO:0060340 positive regulation of type I interferon-mediated signaling pathway
## GO:0060379 cardiac muscle cell myoblast differentiation
## GO:0060856 establishment of blood-brain barrier
## GO:0070203 regulation of establishment of protein localization to telomere
## GO:0070243 regulation of thymocyte apoptotic process
## GO:0070587 regulation of cell-cell adhesion involved in gastrulation
## GO:0072610 interleukin-12 secretion
## GO:0072672 neutrophil extravasation
## GO:0086016 AV node cell action potential
## GO:0086027 AV node cell to bundle of His cell signaling
## GO:0098703 calcium ion import across plasma membrane
## GO:0099151 regulation of postsynaptic density assembly
## GO:1900102 negative regulation of endoplasmic reticulum unfolded protein response
## GO:1901201 regulation of extracellular matrix assembly
## GO:1901569 fatty acid derivative catabolic process
## GO:1904396 regulation of neuromuscular junction development
## GO:1904424 regulation of GTP binding
## GO:1905244 regulation of modification of synaptic structure
## GO:1905668 positive regulation of protein localization to endosome
## GO:2000105 positive regulation of DNA-dependent DNA replication
## GO:2000786 positive regulation of autophagosome assembly
## GO:0006415 translational termination
## GO:0006305 DNA alkylation
## GO:0006306 DNA methylation
## GO:0140053 mitochondrial gene expression
## GO:0035308 negative regulation of protein dephosphorylation
## GO:0000963 mitochondrial RNA processing
## GO:0003188 heart valve formation
## GO:0007035 vacuolar acidification
## GO:0007501 mesodermal cell fate specification
## GO:0010421 hydrogen peroxide-mediated programmed cell death
## GO:0021781 glial cell fate commitment
## GO:0031269 pseudopodium assembly
## GO:0031937 positive regulation of chromatin silencing
## GO:0035461 vitamin transmembrane transport
## GO:0038166 angiotensin-activated signaling pathway
## GO:0043517 positive regulation of DNA damage response, signal transduction by p53 class mediator
## GO:0045986 negative regulation of smooth muscle contraction
## GO:0046037 GMP metabolic process
## GO:0051127 positive regulation of actin nucleation
## GO:0060831 smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## GO:0070166 enamel mineralization
## GO:0071391 cellular response to estrogen stimulus
## GO:0071941 nitrogen cycle metabolic process
## GO:0072498 embryonic skeletal joint development
## GO:0097154 GABAergic neuron differentiation
## GO:0097468 programmed cell death in response to reactive oxygen species
## GO:0099171 presynaptic modulation of chemical synaptic transmission
## GO:1901213 regulation of transcription from RNA polymerase II promoter involved in heart development
## GO:1901626 regulation of postsynaptic membrane organization
## GO:1902570 protein localization to nucleolus
## GO:1904814 regulation of protein localization to chromosome, telomeric region
## GO:1904889 regulation of excitatory synapse assembly
## GO:2000651 positive regulation of sodium ion transmembrane transporter activity
## GO:2001224 positive regulation of neuron migration
## GO:1902883 negative regulation of response to oxidative stress
## GO:0045844 positive regulation of striated muscle tissue development
## GO:0048636 positive regulation of muscle organ development
## GO:0060968 regulation of gene silencing
## GO:0002902 regulation of B cell apoptotic process
## GO:0006071 glycerol metabolic process
## GO:0009264 deoxyribonucleotide catabolic process
## GO:0033962 cytoplasmic mRNA processing body assembly
## GO:0034629 cellular protein-containing complex localization
## GO:0035313 wound healing, spreading of epidermal cells
## GO:0043171 peptide catabolic process
## GO:0043373 CD4-positive, alpha-beta T cell lineage commitment
## GO:0060080 inhibitory postsynaptic potential
## GO:0061952 midbody abscission
## GO:0070875 positive regulation of glycogen metabolic process
## GO:0097320 plasma membrane tubulation
## GO:0097329 response to antimetabolite
## GO:1901071 glucosamine-containing compound metabolic process
## GO:1902683 regulation of receptor localization to synapse
## GO:1902931 negative regulation of alcohol biosynthetic process
## GO:1903975 regulation of glial cell migration
## GO:1904948 midbrain dopaminergic neuron differentiation
## GO:0036297 interstrand cross-link repair
## GO:0051187 cofactor catabolic process
## GO:0055021 regulation of cardiac muscle tissue growth
## GO:0043124 negative regulation of I-kappaB kinase/NF-kappaB signaling
## GO:1900744 regulation of p38MAPK cascade
## GO:0010042 response to manganese ion
## GO:0032211 negative regulation of telomere maintenance via telomerase
## GO:0032516 positive regulation of phosphoprotein phosphatase activity
## GO:0045655 regulation of monocyte differentiation
## GO:0055069 zinc ion homeostasis
## GO:0090195 chemokine secretion
## GO:1901673 regulation of mitotic spindle assembly
## GO:1902236 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:2000738 positive regulation of stem cell differentiation
## GO:0070296 sarcoplasmic reticulum calcium ion transport
## GO:0007032 endosome organization
## GO:0000729 DNA double-strand break processing
## GO:0007141 male meiosis I
## GO:0016338 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## GO:0034453 microtubule anchoring
## GO:0042430 indole-containing compound metabolic process
## GO:0061436 establishment of skin barrier
## GO:0097150 neuronal stem cell population maintenance
## GO:1904861 excitatory synapse assembly
## GO:0043267 negative regulation of potassium ion transport
## GO:0006378 mRNA polyadenylation
## GO:0007339 binding of sperm to zona pellucida
## GO:0009395 phospholipid catabolic process
## GO:0046131 pyrimidine ribonucleoside metabolic process
## GO:0002021 response to dietary excess
## GO:0010996 response to auditory stimulus
## GO:0036152 phosphatidylethanolamine acyl-chain remodeling
## GO:0060914 heart formation
## GO:0060969 negative regulation of gene silencing
## GO:0061099 negative regulation of protein tyrosine kinase activity
## GO:0099560 synaptic membrane adhesion
## GO:1903792 negative regulation of anion transport
## GO:0070207 protein homotrimerization
## GO:0070232 regulation of T cell apoptotic process
## GO:1990774 tumor necrosis factor secretion
## GO:0006506 GPI anchor biosynthetic process
## GO:0042491 inner ear auditory receptor cell differentiation
## GO:0046134 pyrimidine nucleoside biosynthetic process
## GO:1904467 regulation of tumor necrosis factor secretion
## GO:0090502 RNA phosphodiester bond hydrolysis, endonucleolytic
## GO:0006414 translational elongation
## GO:0061371 determination of heart left/right asymmetry
## GO:0006323 DNA packaging
## GO:0050680 negative regulation of epithelial cell proliferation
## GO:0030301 cholesterol transport
## GO:0032006 regulation of TOR signaling
## GO:0051153 regulation of striated muscle cell differentiation
## GO:0070268 cornification
## GO:0050704 regulation of interleukin-1 secretion
## GO:0051147 regulation of muscle cell differentiation
## GO:0032413 negative regulation of ion transmembrane transporter activity
## GO:1900015 regulation of cytokine production involved in inflammatory response
## GO:0032088 negative regulation of NF-kappaB transcription factor activity
## GO:1903046 meiotic cell cycle process
## GO:0000012 single strand break repair
## GO:0001574 ganglioside biosynthetic process
## GO:0001840 neural plate development
## GO:0003149 membranous septum morphogenesis
## GO:0003376 sphingosine-1-phosphate receptor signaling pathway
## GO:0006285 base-excision repair, AP site formation
## GO:0006857 oligopeptide transport
## GO:0008343 adult feeding behavior
## GO:0010998 regulation of translational initiation by eIF2 alpha phosphorylation
## GO:0018065 protein-cofactor linkage
## GO:0018342 protein prenylation
## GO:0030432 peristalsis
## GO:0031282 regulation of guanylate cyclase activity
## GO:0032429 regulation of phospholipase A2 activity
## GO:0032926 negative regulation of activin receptor signaling pathway
## GO:0034135 regulation of toll-like receptor 2 signaling pathway
## GO:0034244 negative regulation of transcription elongation from RNA polymerase II promoter
## GO:0034770 histone H4-K20 methylation
## GO:0035376 sterol import
## GO:0036444 calcium import into the mitochondrion
## GO:0042048 olfactory behavior
## GO:0044351 macropinocytosis
## GO:0044539 long-chain fatty acid import
## GO:0045741 positive regulation of epidermal growth factor-activated receptor activity
## GO:0045945 positive regulation of transcription by RNA polymerase III
## GO:0046607 positive regulation of centrosome cycle
## GO:0048484 enteric nervous system development
## GO:0048570 notochord morphogenesis
## GO:0051231 spindle elongation
## GO:0051315 attachment of mitotic spindle microtubules to kinetochore
## GO:0060088 auditory receptor cell stereocilium organization
## GO:0060213 positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0060371 regulation of atrial cardiac muscle cell membrane depolarization
## GO:0060456 positive regulation of digestive system process
## GO:0060513 prostatic bud formation
## GO:0061085 regulation of histone H3-K27 methylation
## GO:0070341 fat cell proliferation
## GO:0070344 regulation of fat cell proliferation
## GO:0070508 cholesterol import
## GO:0071577 zinc ion transmembrane transport
## GO:0071600 otic vesicle morphogenesis
## GO:0090646 mitochondrial tRNA processing
## GO:0097354 prenylation
## GO:1901033 positive regulation of response to reactive oxygen species
## GO:1902237 positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## GO:1903265 positive regulation of tumor necrosis factor-mediated signaling pathway
## GO:1903405 protein localization to nuclear body
## GO:1903799 negative regulation of production of miRNAs involved in gene silencing by miRNA
## GO:1903897 regulation of PERK-mediated unfolded protein response
## GO:1904338 regulation of dopaminergic neuron differentiation
## GO:1904851 positive regulation of establishment of protein localization to telomere
## GO:1904867 protein localization to Cajal body
## GO:2000049 positive regulation of cell-cell adhesion mediated by cadherin
## GO:2000109 regulation of macrophage apoptotic process
## GO:2000271 positive regulation of fibroblast apoptotic process
## GO:2000628 regulation of miRNA metabolic process
## GO:2000767 positive regulation of cytoplasmic translation
## GO:2001225 regulation of chloride transport
## GO:0046473 phosphatidic acid metabolic process
## GO:0070125 mitochondrial translational elongation
## GO:0045806 negative regulation of endocytosis
## GO:0051965 positive regulation of synapse assembly
## GO:0046621 negative regulation of organ growth
## GO:0043631 RNA polyadenylation
## GO:1901381 positive regulation of potassium ion transmembrane transport
## GO:0097352 autophagosome maturation
## GO:0098901 regulation of cardiac muscle cell action potential
## GO:0001833 inner cell mass cell proliferation
## GO:0002087 regulation of respiratory gaseous exchange by neurological system process
## GO:0002864 regulation of acute inflammatory response to antigenic stimulus
## GO:0006047 UDP-N-acetylglucosamine metabolic process
## GO:0009642 response to light intensity
## GO:0010459 negative regulation of heart rate
## GO:0010839 negative regulation of keratinocyte proliferation
## GO:0016246 RNA interference
## GO:0019627 urea metabolic process
## GO:0021978 telencephalon regionalization
## GO:0031054 pre-miRNA processing
## GO:0032725 positive regulation of granulocyte macrophage colony-stimulating factor production
## GO:0032988 ribonucleoprotein complex disassembly
## GO:0034331 cell junction maintenance
## GO:0034370 triglyceride-rich lipoprotein particle remodeling
## GO:0035563 positive regulation of chromatin binding
## GO:0038007 netrin-activated signaling pathway
## GO:0042659 regulation of cell fate specification
## GO:0043374 CD8-positive, alpha-beta T cell differentiation
## GO:0044794 positive regulation by host of viral process
## GO:0046415 urate metabolic process
## GO:0048715 negative regulation of oligodendrocyte differentiation
## GO:0060452 positive regulation of cardiac muscle contraction
## GO:0060601 lateral sprouting from an epithelium
## GO:0060712 spongiotrophoblast layer development
## GO:0070989 oxidative demethylation
## GO:0071287 cellular response to manganese ion
## GO:0090594 inflammatory response to wounding
## GO:1901070 guanosine-containing compound biosynthetic process
## GO:1902414 protein localization to cell junction
## GO:1990403 embryonic brain development
## GO:0050701 interleukin-1 secretion
## GO:0036257 multivesicular body organization
## GO:0045910 negative regulation of DNA recombination
## GO:0046466 membrane lipid catabolic process
## GO:0099174 regulation of presynapse organization
## GO:0000002 mitochondrial genome maintenance
## GO:0050482 arachidonic acid secretion
## GO:0061157 mRNA destabilization
## GO:0070979 protein K11-linked ubiquitination
## GO:0086013 membrane repolarization during cardiac muscle cell action potential
## GO:1903963 arachidonate transport
## GO:2000108 positive regulation of leukocyte apoptotic process
## GO:0002295 T-helper cell lineage commitment
## GO:0006004 fucose metabolic process
## GO:0007096 regulation of exit from mitosis
## GO:0016226 iron-sulfur cluster assembly
## GO:0022038 corpus callosum development
## GO:0031163 metallo-sulfur cluster assembly
## GO:0032604 granulocyte macrophage colony-stimulating factor production
## GO:0034433 steroid esterification
## GO:0034434 sterol esterification
## GO:0034435 cholesterol esterification
## GO:0034501 protein localization to kinetochore
## GO:0035025 positive regulation of Rho protein signal transduction
## GO:0036149 phosphatidylinositol acyl-chain remodeling
## GO:0042228 interleukin-8 biosynthetic process
## GO:0043174 nucleoside salvage
## GO:0044065 regulation of respiratory system process
## GO:0045725 positive regulation of glycogen biosynthetic process
## GO:0046339 diacylglycerol metabolic process
## GO:0051382 kinetochore assembly
## GO:0051444 negative regulation of ubiquitin-protein transferase activity
## GO:0060263 regulation of respiratory burst
## GO:0071605 monocyte chemotactic protein-1 production
## GO:0071637 regulation of monocyte chemotactic protein-1 production
## GO:0090153 regulation of sphingolipid biosynthetic process
## GO:0090335 regulation of brown fat cell differentiation
## GO:1900221 regulation of amyloid-beta clearance
## GO:1905038 regulation of membrane lipid metabolic process
## GO:2000303 regulation of ceramide biosynthetic process
## GO:2000479 regulation of cAMP-dependent protein kinase activity
## GO:0007040 lysosome organization
## GO:0080171 lytic vacuole organization
## GO:0000038 very long-chain fatty acid metabolic process
## GO:0060307 regulation of ventricular cardiac muscle cell membrane repolarization
## GO:0060314 regulation of ryanodine-sensitive calcium-release channel activity
## GO:1990126 retrograde transport, endosome to plasma membrane
## GO:0001832 blastocyst growth
## GO:0002922 positive regulation of humoral immune response
## GO:0010523 negative regulation of calcium ion transport into cytosol
## GO:0030949 positive regulation of vascular endothelial growth factor receptor signaling pathway
## GO:0042693 muscle cell fate commitment
## GO:0046386 deoxyribose phosphate catabolic process
## GO:0046653 tetrahydrofolate metabolic process
## GO:0046655 folic acid metabolic process
## GO:0048025 negative regulation of mRNA splicing, via spliceosome
## GO:0051647 nucleus localization
## GO:1900017 positive regulation of cytokine production involved in inflammatory response
## GO:1901881 positive regulation of protein depolymerization
## GO:0010528 regulation of transposition
## GO:0010529 negative regulation of transposition
## GO:0010842 retina layer formation
## GO:0044342 type B pancreatic cell proliferation
## GO:0051905 establishment of pigment granule localization
## GO:0071425 hematopoietic stem cell proliferation
## GO:0071467 cellular response to pH
## GO:0071875 adrenergic receptor signaling pathway
## GO:0071985 multivesicular body sorting pathway
## GO:0080111 DNA demethylation
## GO:0043542 endothelial cell migration
## GO:0045668 negative regulation of osteoblast differentiation
## GO:2000772 regulation of cellular senescence
## GO:0060038 cardiac muscle cell proliferation
## GO:0018208 peptidyl-proline modification
## GO:0035924 cellular response to vascular endothelial growth factor stimulus
## GO:0006221 pyrimidine nucleotide biosynthetic process
## GO:0006654 phosphatidic acid biosynthetic process
## GO:0051898 negative regulation of protein kinase B signaling
## GO:1901016 regulation of potassium ion transmembrane transporter activity
## GO:0009072 aromatic amino acid family metabolic process
## GO:0017145 stem cell division
## GO:0034248 regulation of cellular amide metabolic process
## GO:0090501 RNA phosphodiester bond hydrolysis
## GO:1903514 release of sequestered calcium ion into cytosol by endoplasmic reticulum
## GO:0043032 positive regulation of macrophage activation
## GO:0090503 RNA phosphodiester bond hydrolysis, exonucleolytic
## GO:0098664 G protein-coupled serotonin receptor signaling pathway
## GO:0016233 telomere capping
## GO:0046456 icosanoid biosynthetic process
## GO:0036258 multivesicular body assembly
## GO:1905606 regulation of presynapse assembly
## GO:0021846 cell proliferation in forebrain
## GO:1904357 negative regulation of telomere maintenance via telomere lengthening
## GO:0006303 double-strand break repair via nonhomologous end joining
## GO:0009566 fertilization
## GO:0010257 NADH dehydrogenase complex assembly
## GO:0032981 mitochondrial respiratory chain complex I assembly
## GO:0008334 histone mRNA metabolic process
## GO:0034035 purine ribonucleoside bisphosphate metabolic process
## GO:0034162 toll-like receptor 9 signaling pathway
## GO:0048643 positive regulation of skeletal muscle tissue development
## GO:0050427 3'-phosphoadenosine 5'-phosphosulfate metabolic process
## GO:1902410 mitotic cytokinetic process
## GO:0008589 regulation of smoothened signaling pathway
## GO:0010884 positive regulation of lipid storage
## GO:0032401 establishment of melanosome localization
## GO:0032462 regulation of protein homooligomerization
## GO:0039702 viral budding via host ESCRT complex
## GO:0051904 pigment granule transport
## GO:0070193 synaptonemal complex organization
## GO:2000316 regulation of T-helper 17 type immune response
## GO:0006333 chromatin assembly or disassembly
## GO:0140013 meiotic nuclear division
## GO:0007140 male meiotic nuclear division
## GO:0019731 antibacterial humoral response
## GO:0032527 protein exit from endoplasmic reticulum
## GO:0061014 positive regulation of mRNA catabolic process
## GO:0000726 non-recombinational repair
## GO:0006123 mitochondrial electron transport, cytochrome c to oxygen
## GO:0019646 aerobic electron transport chain
## GO:0045947 negative regulation of translational initiation
## GO:0098581 detection of external biotic stimulus
## GO:0098698 postsynaptic specialization assembly
## GO:2000319 regulation of T-helper 17 cell differentiation
## GO:0001711 endodermal cell fate commitment
## GO:0002467 germinal center formation
## GO:0006103 2-oxoglutarate metabolic process
## GO:0007097 nuclear migration
## GO:0030730 sequestering of triglyceride
## GO:0032645 regulation of granulocyte macrophage colony-stimulating factor production
## GO:0034111 negative regulation of homotypic cell-cell adhesion
## GO:0042754 negative regulation of circadian rhythm
## GO:0043249 erythrocyte maturation
## GO:0045414 regulation of interleukin-8 biosynthetic process
## GO:0070571 negative regulation of neuron projection regeneration
## GO:0097107 postsynaptic density assembly
## GO:1902188 positive regulation of viral release from host cell
## GO:2000402 negative regulation of lymphocyte migration
## GO:0034122 negative regulation of toll-like receptor signaling pathway
## GO:0098760 response to interleukin-7
## GO:0098761 cellular response to interleukin-7
## GO:0001973 adenosine receptor signaling pathway
## GO:0002862 negative regulation of inflammatory response to antigenic stimulus
## GO:0002903 negative regulation of B cell apoptotic process
## GO:0005513 detection of calcium ion
## GO:0006012 galactose metabolic process
## GO:0006069 ethanol oxidation
## GO:0006122 mitochondrial electron transport, ubiquinol to cytochrome c
## GO:0006244 pyrimidine nucleotide catabolic process
## GO:0006390 mitochondrial transcription
## GO:0006553 lysine metabolic process
## GO:0006554 lysine catabolic process
## GO:0014029 neural crest formation
## GO:0015867 ATP transport
## GO:0018216 peptidyl-arginine methylation
## GO:0030497 fatty acid elongation
## GO:0034755 iron ion transmembrane transport
## GO:0035627 ceramide transport
## GO:0046479 glycosphingolipid catabolic process
## GO:0051238 sequestering of metal ion
## GO:0060211 regulation of nuclear-transcribed mRNA poly(A) tail shortening
## GO:0060339 negative regulation of type I interferon-mediated signaling pathway
## GO:0060394 negative regulation of pathway-restricted SMAD protein phosphorylation
## GO:0071468 cellular response to acidic pH
## GO:0072540 T-helper 17 cell lineage commitment
## GO:0072710 response to hydroxyurea
## GO:0090161 Golgi ribbon formation
## GO:0090520 sphingolipid mediated signaling pathway
## GO:1900044 regulation of protein K63-linked ubiquitination
## GO:1900165 negative regulation of interleukin-6 secretion
## GO:1900402 regulation of carbohydrate metabolic process by regulation of transcription from RNA polymerase II promoter
## GO:1901160 primary amino compound metabolic process
## GO:1901298 regulation of hydrogen peroxide-mediated programmed cell death
## GO:1901387 positive regulation of voltage-gated calcium channel activity
## GO:1902004 positive regulation of amyloid-beta formation
## GO:1903909 regulation of receptor clustering
## GO:1904816 positive regulation of protein localization to chromosome, telomeric region
## GO:1904862 inhibitory synapse assembly
## GO:1905522 negative regulation of macrophage migration
## GO:1905666 regulation of protein localization to endosome
## GO:1990173 protein localization to nucleoplasm
## GO:2000341 regulation of chemokine (C-X-C motif) ligand 2 production
## GO:1901989 positive regulation of cell cycle phase transition
## GO:0032410 negative regulation of transporter activity
## GO:0006959 humoral immune response
## GO:0000413 protein peptidyl-prolyl isomerization
## GO:0014808 release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:1905515 non-motile cilium assembly
## GO:0009954 proximal/distal pattern formation
## GO:1900745 positive regulation of p38MAPK cascade
## GO:0043044 ATP-dependent chromatin remodeling
## GO:0070126 mitochondrial translational termination
## GO:0010800 positive regulation of peptidyl-threonine phosphorylation
## GO:0031297 replication fork processing
## GO:0016266 O-glycan processing
## GO:1903313 positive regulation of mRNA metabolic process
## GO:0034728 nucleosome organization
## GO:0045010 actin nucleation
## GO:0051154 negative regulation of striated muscle cell differentiation
## GO:1901031 regulation of response to reactive oxygen species
## GO:0021591 ventricular system development
## GO:0033561 regulation of water loss via skin
## GO:0050909 sensory perception of taste
## GO:0042158 lipoprotein biosynthetic process
## GO:1901992 positive regulation of mitotic cell cycle phase transition
## GO:0038084 vascular endothelial growth factor signaling pathway
## GO:0072348 sulfur compound transport
## GO:0007064 mitotic sister chromatid cohesion
## GO:0021511 spinal cord patterning
## GO:1903861 positive regulation of dendrite extension
## GO:0032506 cytokinetic process
## GO:0050691 regulation of defense response to virus by host
## GO:1903427 negative regulation of reactive oxygen species biosynthetic process
## GO:0007289 spermatid nucleus differentiation
## GO:0008356 asymmetric cell division
## GO:0010002 cardioblast differentiation
## GO:0032402 melanosome transport
## GO:0045723 positive regulation of fatty acid biosynthetic process
## GO:0060972 left/right pattern formation
## GO:0097503 sialylation
## GO:0007281 germ cell development
## GO:2001258 negative regulation of cation channel activity
## GO:2001024 negative regulation of response to drug
## GO:2001038 regulation of cellular response to drug
## GO:0006349 regulation of gene expression by genetic imprinting
## GO:0006586 indolalkylamine metabolic process
## GO:0006750 glutathione biosynthetic process
## GO:0007635 chemosensory behavior
## GO:0009148 pyrimidine nucleoside triphosphate biosynthetic process
## GO:0015693 magnesium ion transport
## GO:0015868 purine ribonucleotide transport
## GO:0016254 preassembly of GPI anchor in ER membrane
## GO:0018904 ether metabolic process
## GO:0034384 high-density lipoprotein particle clearance
## GO:0035518 histone H2A monoubiquitination
## GO:0042095 interferon-gamma biosynthetic process
## GO:0050665 hydrogen peroxide biosynthetic process
## GO:0048477 oogenesis
## GO:0010830 regulation of myotube differentiation
## GO:0038095 Fc-epsilon receptor signaling pathway
## GO:0006658 phosphatidylserine metabolic process
## GO:0010880 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## GO:0033687 osteoblast proliferation
## GO:1903432 regulation of TORC1 signaling
## GO:0006646 phosphatidylethanolamine biosynthetic process
## GO:0006684 sphingomyelin metabolic process
## GO:0009129 pyrimidine nucleoside monophosphate metabolic process
## GO:0032509 endosome transport via multivesicular body sorting pathway
## GO:0035589 G protein-coupled purinergic nucleotide receptor signaling pathway
## GO:0048368 lateral mesoderm development
## GO:0051016 barbed-end actin filament capping
## GO:0060049 regulation of protein glycosylation
## GO:0061042 vascular wound healing
## GO:0072567 chemokine (C-X-C motif) ligand 2 production
## GO:0099632 protein transport within plasma membrane
## GO:0099637 neurotransmitter receptor transport
## GO:1900121 negative regulation of receptor binding
## GO:1903054 negative regulation of extracellular matrix organization
## GO:1903351 cellular response to dopamine
## GO:1903540 establishment of protein localization to postsynaptic membrane
## GO:0032543 mitochondrial translation
## GO:0055092 sterol homeostasis
## GO:0042742 defense response to bacterium
## GO:0009074 aromatic amino acid family catabolic process
## GO:0010882 regulation of cardiac muscle contraction by calcium ion signaling
## GO:0032232 negative regulation of actin filament bundle assembly
## GO:0033688 regulation of osteoblast proliferation
## GO:0044030 regulation of DNA methylation
## GO:0000050 urea cycle
## GO:0002323 natural killer cell activation involved in immune response
## GO:0003413 chondrocyte differentiation involved in endochondral bone morphogenesis
## GO:0008655 pyrimidine-containing compound salvage
## GO:0009223 pyrimidine deoxyribonucleotide catabolic process
## GO:0010896 regulation of triglyceride catabolic process
## GO:0019321 pentose metabolic process
## GO:0019755 one-carbon compound transport
## GO:0033234 negative regulation of protein sumoylation
## GO:0033523 histone H2B ubiquitination
## GO:0035747 natural killer cell chemotaxis
## GO:0042983 amyloid precursor protein biosynthetic process
## GO:0042984 regulation of amyloid precursor protein biosynthetic process
## GO:0043097 pyrimidine nucleoside salvage
## GO:0043201 response to leucine
## GO:0043619 regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## GO:0045116 protein neddylation
## GO:0045217 cell-cell junction maintenance
## GO:0060019 radial glial cell differentiation
## GO:0060159 regulation of dopamine receptor signaling pathway
## GO:0060315 negative regulation of ryanodine-sensitive calcium-release channel activity
## GO:0070189 kynurenine metabolic process
## GO:0070572 positive regulation of neuron projection regeneration
## GO:0071044 histone mRNA catabolic process
## GO:0072173 metanephric tubule morphogenesis
## GO:0072711 cellular response to hydroxyurea
## GO:0090073 positive regulation of protein homodimerization activity
## GO:0090084 negative regulation of inclusion body assembly
## GO:0090394 negative regulation of excitatory postsynaptic potential
## GO:0090657 telomeric loop disassembly
## GO:1900115 extracellular regulation of signal transduction
## GO:1900116 extracellular negative regulation of signal transduction
## GO:1901077 regulation of relaxation of muscle
## GO:1905146 lysosomal protein catabolic process
## GO:0060421 positive regulation of heart growth
## GO:0060119 inner ear receptor cell development
## GO:0021544 subpallium development
## GO:0032461 positive regulation of protein oligomerization
## GO:0046755 viral budding
## GO:0051497 negative regulation of stress fiber assembly
## GO:1903859 regulation of dendrite extension
## GO:0060964 regulation of gene silencing by miRNA
## GO:0042632 cholesterol homeostasis
## GO:0006516 glycoprotein catabolic process
## GO:0009220 pyrimidine ribonucleotide biosynthetic process
## GO:0032594 protein transport within lipid bilayer
## GO:0036037 CD8-positive, alpha-beta T cell activation
## GO:0045956 positive regulation of calcium ion-dependent exocytosis
## GO:0046337 phosphatidylethanolamine metabolic process
## GO:2000050 regulation of non-canonical Wnt signaling pathway
## GO:0060043 regulation of cardiac muscle cell proliferation
## GO:0045005 DNA-dependent DNA replication maintenance of fidelity
## GO:0045922 negative regulation of fatty acid metabolic process
## GO:0034383 low-density lipoprotein particle clearance
## GO:0006448 regulation of translational elongation
## GO:0006488 dolichol-linked oligosaccharide biosynthetic process
## GO:0006490 oligosaccharide-lipid intermediate biosynthetic process
## GO:0007350 blastoderm segmentation
## GO:0009147 pyrimidine nucleoside triphosphate metabolic process
## GO:0015669 gas transport
## GO:0019184 nonribosomal peptide biosynthetic process
## GO:0021756 striatum development
## GO:0032042 mitochondrial DNA metabolic process
## GO:0032700 negative regulation of interleukin-17 production
## GO:0060149 negative regulation of posttranscriptional gene silencing
## GO:0060967 negative regulation of gene silencing by RNA
## GO:0098911 regulation of ventricular cardiac muscle cell action potential
## GO:0035914 skeletal muscle cell differentiation
## GO:0010586 miRNA metabolic process
## GO:0045879 negative regulation of smoothened signaling pathway
## GO:2000781 positive regulation of double-strand break repair
## GO:0045601 regulation of endothelial cell differentiation
## GO:0014067 negative regulation of phosphatidylinositol 3-kinase signaling
## GO:0043649 dicarboxylic acid catabolic process
## GO:0045072 regulation of interferon-gamma biosynthetic process
## GO:0045722 positive regulation of gluconeogenesis
## GO:0051503 adenine nucleotide transport
## GO:0060457 negative regulation of digestive system process
## GO:0060965 negative regulation of gene silencing by miRNA
## GO:0071880 adenylate cyclase-activating adrenergic receptor signaling pathway
## GO:0072189 ureter development
## GO:0086103 G protein-coupled receptor signaling pathway involved in heart process
## GO:1903019 negative regulation of glycoprotein metabolic process
## GO:1903830 magnesium ion transmembrane transport
## GO:0007029 endoplasmic reticulum organization
## GO:1904707 positive regulation of vascular smooth muscle cell proliferation
## GO:0036151 phosphatidylcholine acyl-chain remodeling
## GO:0042226 interleukin-6 biosynthetic process
## GO:0045686 negative regulation of glial cell differentiation
## GO:0060122 inner ear receptor cell stereocilium organization
## GO:0120033 negative regulation of plasma membrane bounded cell projection assembly
## GO:0007210 serotonin receptor signaling pathway
## GO:0001935 endothelial cell proliferation
## GO:0060147 regulation of posttranscriptional gene silencing
## GO:0060966 regulation of gene silencing by RNA
## GO:0006493 protein O-linked glycosylation
## GO:0030514 negative regulation of BMP signaling pathway
## GO:0010831 positive regulation of myotube differentiation
## GO:0036474 cell death in response to hydrogen peroxide
## GO:0002097 tRNA wobble base modification
## GO:0009130 pyrimidine nucleoside monophosphate biosynthetic process
## GO:0010838 positive regulation of keratinocyte proliferation
## GO:0014745 negative regulation of muscle adaptation
## GO:0018410 C-terminal protein amino acid modification
## GO:0030490 maturation of SSU-rRNA
## GO:0031665 negative regulation of lipopolysaccharide-mediated signaling pathway
## GO:0034214 protein hexamerization
## GO:0035112 genitalia morphogenesis
## GO:0038092 nodal signaling pathway
## GO:0042559 pteridine-containing compound biosynthetic process
## GO:0046541 saliva secretion
## GO:0048681 negative regulation of axon regeneration
## GO:0055070 copper ion homeostasis
## GO:0060628 regulation of ER to Golgi vesicle-mediated transport
## GO:0061052 negative regulation of cell growth involved in cardiac muscle cell development
## GO:0070431 nucleotide-binding oligomerization domain containing 2 signaling pathway
## GO:0090069 regulation of ribosome biogenesis
## GO:0098543 detection of other organism
## GO:0098877 neurotransmitter receptor transport to plasma membrane
## GO:0098969 neurotransmitter receptor transport to postsynaptic membrane
## GO:1902902 negative regulation of autophagosome assembly
## GO:1903960 negative regulation of anion transmembrane transport
## GO:1904293 negative regulation of ERAD pathway
## GO:2001279 regulation of unsaturated fatty acid biosynthetic process
## GO:0009218 pyrimidine ribonucleotide metabolic process
## GO:0032717 negative regulation of interleukin-8 production
## GO:0048753 pigment granule organization
## GO:0001895 retina homeostasis
## GO:0051149 positive regulation of muscle cell differentiation
## GO:0010470 regulation of gastrulation
## GO:0055026 negative regulation of cardiac muscle tissue development
## GO:0045738 negative regulation of DNA repair
## GO:0055022 negative regulation of cardiac muscle tissue growth
## GO:0061117 negative regulation of heart growth
## GO:0021515 cell differentiation in spinal cord
## GO:0034381 plasma lipoprotein particle clearance
## GO:0010310 regulation of hydrogen peroxide metabolic process
## GO:0010829 negative regulation of glucose transmembrane transport
## GO:0021513 spinal cord dorsal/ventral patterning
## GO:0036150 phosphatidylserine acyl-chain remodeling
## GO:0042402 cellular biogenic amine catabolic process
## GO:0046132 pyrimidine ribonucleoside biosynthetic process
## GO:0001778 plasma membrane repair
## GO:0006307 DNA dealkylation involved in DNA repair
## GO:0006878 cellular copper ion homeostasis
## GO:0007028 cytoplasm organization
## GO:0016559 peroxisome fission
## GO:0021562 vestibulocochlear nerve development
## GO:0032525 somite rostral/caudal axis specification
## GO:0033690 positive regulation of osteoblast proliferation
## GO:0034447 very-low-density lipoprotein particle clearance
## GO:0035768 endothelial cell chemotaxis to fibroblast growth factor
## GO:0042670 retinal cone cell differentiation
## GO:0042761 very long-chain fatty acid biosynthetic process
## GO:0045988 negative regulation of striated muscle contraction
## GO:0046322 negative regulation of fatty acid oxidation
## GO:0046349 amino sugar biosynthetic process
## GO:0046549 retinal cone cell development
## GO:0046710 GDP metabolic process
## GO:0048680 positive regulation of axon regeneration
## GO:0051255 spindle midzone assembly
## GO:0060352 cell adhesion molecule production
## GO:0061179 negative regulation of insulin secretion involved in cellular response to glucose stimulus
## GO:0061635 regulation of protein complex stability
## GO:0070314 G1 to G0 transition
## GO:0071838 cell proliferation in bone marrow
## GO:0071863 regulation of cell proliferation in bone marrow
## GO:0072393 microtubule anchoring at microtubule organizing center
## GO:0090205 positive regulation of cholesterol metabolic process
## GO:0098722 asymmetric stem cell division
## GO:1900426 positive regulation of defense response to bacterium
## GO:1902033 regulation of hematopoietic stem cell proliferation
## GO:1902915 negative regulation of protein polyubiquitination
## GO:2000035 regulation of stem cell division
## GO:2000544 regulation of endothelial cell chemotaxis to fibroblast growth factor
## GO:2000650 negative regulation of sodium ion transmembrane transporter activity
## GO:0001578 microtubule bundle formation
## GO:0042036 negative regulation of cytokine biosynthetic process
## GO:0007338 single fertilization
## GO:0001580 detection of chemical stimulus involved in sensory perception of bitter taste
## GO:0010390 histone monoubiquitination
## GO:0030970 retrograde protein transport, ER to cytosol
## GO:1903513 endoplasmic reticulum to cytosol transport
## GO:0032365 intracellular lipid transport
## GO:0007130 synaptonemal complex assembly
## GO:0010832 negative regulation of myotube differentiation
## GO:0015865 purine nucleotide transport
## GO:0016556 mRNA modification
## GO:0036148 phosphatidylglycerol acyl-chain remodeling
## GO:0036342 post-anal tail morphogenesis
## GO:0044827 modulation by host of viral genome replication
## GO:0070230 positive regulation of lymphocyte apoptotic process
## GO:2000311 regulation of AMPA receptor activity
## GO:0032007 negative regulation of TOR signaling
## GO:0050829 defense response to Gram-negative bacterium
## GO:0030149 sphingolipid catabolic process
## GO:0060632 regulation of microtubule-based movement
## GO:1901018 positive regulation of potassium ion transmembrane transporter activity
## GO:0043536 positive regulation of blood vessel endothelial cell migration
## GO:0002526 acute inflammatory response
## GO:0007131 reciprocal meiotic recombination
## GO:0033363 secretory granule organization
## GO:0050913 sensory perception of bitter taste
## GO:0009988 cell-cell recognition
## GO:0051155 positive regulation of striated muscle cell differentiation
## GO:0006497 protein lipidation
## GO:0060761 negative regulation of response to cytokine stimulus
## GO:0051280 negative regulation of release of sequestered calcium ion into cytosol
## GO:0071435 potassium ion export
## GO:0097623 potassium ion export across plasma membrane
## GO:1903350 response to dopamine
## GO:1905276 regulation of epithelial tube formation
## GO:2001185 regulation of CD8-positive, alpha-beta T cell activation
## GO:0009310 amine catabolic process
## GO:0032438 melanosome organization
## GO:0045717 negative regulation of fatty acid biosynthetic process
## GO:0051148 negative regulation of muscle cell differentiation
## GO:0006691 leukotriene metabolic process
## GO:0042572 retinol metabolic process
## GO:0046471 phosphatidylglycerol metabolic process
## GO:1901380 negative regulation of potassium ion transmembrane transport
## GO:1903205 regulation of hydrogen peroxide-induced cell death
## GO:1904893 negative regulation of STAT cascade
## GO:0003298 physiological muscle hypertrophy
## GO:0003301 physiological cardiac muscle hypertrophy
## GO:0061049 cell growth involved in cardiac muscle cell development
## GO:0055025 positive regulation of cardiac muscle tissue development
## GO:0001960 negative regulation of cytokine-mediated signaling pathway
## GO:0014743 regulation of muscle hypertrophy
## GO:0050728 negative regulation of inflammatory response
## GO:0010801 negative regulation of peptidyl-threonine phosphorylation
## GO:0045019 negative regulation of nitric oxide biosynthetic process
## GO:1900424 regulation of defense response to bacterium
## GO:1904406 negative regulation of nitric oxide metabolic process
## GO:2001014 regulation of skeletal muscle cell differentiation
## GO:0002093 auditory receptor cell morphogenesis
## GO:0006568 tryptophan metabolic process
## GO:0007175 negative regulation of epidermal growth factor-activated receptor activity
## GO:0007288 sperm axoneme assembly
## GO:0008228 opsonization
## GO:0009111 vitamin catabolic process
## GO:0010649 regulation of cell communication by electrical coupling
## GO:0010872 regulation of cholesterol esterification
## GO:0010889 regulation of sequestering of triglyceride
## GO:0016045 detection of bacterium
## GO:0021520 spinal cord motor neuron cell fate specification
## GO:0021559 trigeminal nerve development
## GO:0035092 sperm chromatin condensation
## GO:0035330 regulation of hippo signaling
## GO:0042159 lipoprotein catabolic process
## GO:0042487 regulation of odontogenesis of dentin-containing tooth
## GO:0044793 negative regulation by host of viral process
## GO:0045760 positive regulation of action potential
## GO:0046033 AMP metabolic process
## GO:0061450 trophoblast cell migration
## GO:0072488 ammonium transmembrane transport
## GO:0072578 neurotransmitter-gated ion channel clustering
## GO:0098962 regulation of postsynaptic neurotransmitter receptor activity
## GO:0150065 regulation of deacetylase activity
## GO:1900118 negative regulation of execution phase of apoptosis
## GO:1901163 regulation of trophoblast cell migration
## GO:2000009 negative regulation of protein localization to cell surface
## GO:2000232 regulation of rRNA processing
## GO:0016339 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## GO:0050855 regulation of B cell receptor signaling pathway
## GO:0055090 acylglycerol homeostasis
## GO:0070328 triglyceride homeostasis
## GO:0010611 regulation of cardiac muscle hypertrophy
## GO:0010657 muscle cell apoptotic process
## GO:0055023 positive regulation of cardiac muscle tissue growth
## GO:0097300 programmed necrotic cell death
## GO:0007340 acrosome reaction
## GO:0045408 regulation of interleukin-6 biosynthetic process
## GO:0061050 regulation of cell growth involved in cardiac muscle cell development
## GO:0070861 regulation of protein exit from endoplasmic reticulum
## GO:2000353 positive regulation of endothelial cell apoptotic process
## GO:0006379 mRNA cleavage
## GO:0008272 sulfate transport
## GO:0021514 ventral spinal cord interneuron differentiation
## GO:0042953 lipoprotein transport
## GO:0044872 lipoprotein localization
## GO:0051284 positive regulation of sequestering of calcium ion
## GO:0061577 calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0070265 necrotic cell death
## GO:0032715 negative regulation of interleukin-6 production
## GO:0038202 TORC1 signaling
## GO:2000780 negative regulation of double-strand break repair
## GO:0001539 cilium or flagellum-dependent cell motility
## GO:0021516 dorsal spinal cord development
## GO:0048103 somatic stem cell division
## GO:0060285 cilium-dependent cell motility
## GO:2001032 regulation of double-strand break repair via nonhomologous end joining
## GO:0010613 positive regulation of cardiac muscle hypertrophy
## GO:0034105 positive regulation of tissue remodeling
## GO:0035825 homologous recombination
## GO:0003128 heart field specification
## GO:0006241 CTP biosynthetic process
## GO:0009209 pyrimidine ribonucleoside triphosphate biosynthetic process
## GO:0021527 spinal cord association neuron differentiation
## GO:0042249 establishment of planar polarity of embryonic epithelium
## GO:0043173 nucleotide salvage
## GO:0044546 NLRP3 inflammasome complex assembly
## GO:0046036 CTP metabolic process
## GO:0046459 short-chain fatty acid metabolic process
## GO:0060026 convergent extension
## GO:0060911 cardiac cell fate commitment
## GO:0070234 positive regulation of T cell apoptotic process
## GO:0080009 mRNA methylation
## GO:0106070 regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:1904152 regulation of retrograde protein transport, ER to cytosol
## GO:2000095 regulation of Wnt signaling pathway, planar cell polarity pathway
## GO:0033344 cholesterol efflux
## GO:0018200 peptidyl-glutamic acid modification
## GO:0040019 positive regulation of embryonic development
## GO:0050832 defense response to fungus
## GO:0010663 positive regulation of striated muscle cell apoptotic process
## GO:0010666 positive regulation of cardiac muscle cell apoptotic process
## GO:0046475 glycerophospholipid catabolic process
## GO:0098915 membrane repolarization during ventricular cardiac muscle cell action potential
## GO:0000289 nuclear-transcribed mRNA poly(A) tail shortening
## GO:0003299 muscle hypertrophy in response to stress
## GO:0014887 cardiac muscle adaptation
## GO:0014898 cardiac muscle hypertrophy in response to stress
## GO:0070266 necroptotic process
## GO:1905207 regulation of cardiocyte differentiation
## GO:0006862 nucleotide transport
## GO:0010881 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## GO:0030488 tRNA methylation
## GO:0150078 positive regulation of neuroinflammatory response
## GO:0033108 mitochondrial respiratory chain complex assembly
## GO:0045494 photoreceptor cell maintenance
## GO:0001845 phagolysosome assembly
## GO:0002098 tRNA wobble uridine modification
## GO:0015697 quaternary ammonium group transport
## GO:0015791 polyol transport
## GO:0018095 protein polyglutamylation
## GO:0019532 oxalate transport
## GO:0021521 ventral spinal cord interneuron specification
## GO:0021670 lateral ventricle development
## GO:0031392 regulation of prostaglandin biosynthetic process
## GO:0035766 cell chemotaxis to fibroblast growth factor
## GO:0045006 DNA deamination
## GO:0045141 meiotic telomere clustering
## GO:0045176 apical protein localization
## GO:0048853 forebrain morphogenesis
## GO:0051974 negative regulation of telomerase activity
## GO:0052803 imidazole-containing compound metabolic process
## GO:0060573 cell fate specification involved in pattern specification
## GO:0060837 blood vessel endothelial cell differentiation
## GO:0061365 positive regulation of triglyceride lipase activity
## GO:0086023 adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## GO:0090178 regulation of establishment of planar polarity involved in neural tube closure
## GO:1901096 regulation of autophagosome maturation
## GO:1901660 calcium ion export
## GO:1902093 positive regulation of flagellated sperm motility
## GO:1902306 negative regulation of sodium ion transmembrane transport
## GO:1903977 positive regulation of glial cell migration
## GO:1904468 negative regulation of tumor necrosis factor secretion
## GO:1904847 regulation of cell chemotaxis to fibroblast growth factor
## GO:0070102 interleukin-6-mediated signaling pathway
## GO:1904994 regulation of leukocyte adhesion to vascular endothelial cell
## GO:0000394 RNA splicing, via endonucleolytic cleavage and ligation
## GO:0006450 regulation of translational fidelity
## GO:0046325 negative regulation of glucose import
## GO:0060117 auditory receptor cell development
## GO:1900153 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:1901317 regulation of flagellated sperm motility
## GO:1902358 sulfate transmembrane transport
## GO:0017000 antibiotic biosynthetic process
## GO:0042573 retinoic acid metabolic process
## GO:0044458 motile cilium assembly
## GO:0090208 positive regulation of triglyceride metabolic process
## GO:0010661 positive regulation of muscle cell apoptotic process
## GO:0060045 positive regulation of cardiac muscle cell proliferation
## GO:0090207 regulation of triglyceride metabolic process
## GO:0002230 positive regulation of defense response to virus by host
## GO:0080154 regulation of fertilization
## GO:0014742 positive regulation of muscle hypertrophy
## GO:0061982 meiosis I cell cycle process
## GO:0033120 positive regulation of RNA splicing
## GO:0045880 positive regulation of smoothened signaling pathway
## GO:0097502 mannosylation
## GO:1903978 regulation of microglial cell activation
## GO:0010660 regulation of muscle cell apoptotic process
## GO:0002251 organ or tissue specific immune response
## GO:0007127 meiosis I
## GO:0003085 negative regulation of systemic arterial blood pressure
## GO:0010561 negative regulation of glycoprotein biosynthetic process
## GO:0010766 negative regulation of sodium ion transport
## GO:0030836 positive regulation of actin filament depolymerization
## GO:0031223 auditory behavior
## GO:0036445 neuronal stem cell division
## GO:0042574 retinal metabolic process
## GO:0043628 ncRNA 3'-end processing
## GO:0048311 mitochondrion distribution
## GO:0050746 regulation of lipoprotein metabolic process
## GO:0055057 neuroblast division
## GO:0060312 regulation of blood vessel remodeling
## GO:0061469 regulation of type B pancreatic cell proliferation
## GO:0070863 positive regulation of protein exit from endoplasmic reticulum
## GO:1900225 regulation of NLRP3 inflammasome complex assembly
## GO:1904251 regulation of bile acid metabolic process
## GO:2001034 positive regulation of double-strand break repair via nonhomologous end joining
## GO:2001256 regulation of store-operated calcium entry
## GO:0035269 protein O-linked mannosylation
## GO:0051782 negative regulation of cell division
## GO:1900151 regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## GO:0045603 positive regulation of endothelial cell differentiation
## GO:2000726 negative regulation of cardiac muscle cell differentiation
## GO:0048730 epidermis morphogenesis
## GO:0050685 positive regulation of mRNA processing
## GO:0034143 regulation of toll-like receptor 4 signaling pathway
## GO:0034393 positive regulation of smooth muscle cell apoptotic process
## GO:0043031 negative regulation of macrophage activation
## GO:1902259 regulation of delayed rectifier potassium channel activity
## GO:2000380 regulation of mesoderm development
## GO:0006388 tRNA splicing, via endonucleolytic cleavage and ligation
## GO:0007351 tripartite regional subdivision
## GO:0007638 mechanosensory behavior
## GO:0008595 anterior/posterior axis specification, embryo
## GO:0009208 pyrimidine ribonucleoside triphosphate metabolic process
## GO:0015671 oxygen transport
## GO:0033689 negative regulation of osteoblast proliferation
## GO:0034356 NAD biosynthesis via nicotinamide riboside salvage pathway
## GO:0043508 negative regulation of JUN kinase activity
## GO:0045837 negative regulation of membrane potential
## GO:0060579 ventral spinal cord interneuron fate commitment
## GO:0060581 cell fate commitment involved in pattern specification
## GO:0061158 3'-UTR-mediated mRNA destabilization
## GO:1902514 regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## GO:0070129 regulation of mitochondrial translation
## GO:0006336 DNA replication-independent nucleosome assembly
## GO:0034724 DNA replication-independent nucleosome organization
## GO:0001936 regulation of endothelial cell proliferation
## GO:0051354 negative regulation of oxidoreductase activity
## GO:0003356 regulation of cilium beat frequency
## GO:0006222 UMP biosynthetic process
## GO:0006264 mitochondrial DNA replication
## GO:0006547 histidine metabolic process
## GO:0006569 tryptophan catabolic process
## GO:0009173 pyrimidine ribonucleoside monophosphate metabolic process
## GO:0009174 pyrimidine ribonucleoside monophosphate biosynthetic process
## GO:0031629 synaptic vesicle fusion to presynaptic active zone membrane
## GO:0035646 endosome to melanosome transport
## GO:0035871 protein K11-linked deubiquitination
## GO:0042436 indole-containing compound catabolic process
## GO:0043485 endosome to pigment granule transport
## GO:0046049 UMP metabolic process
## GO:0046051 UTP metabolic process
## GO:0046218 indolalkylamine catabolic process
## GO:0048757 pigment granule maturation
## GO:0051006 positive regulation of lipoprotein lipase activity
## GO:0060923 cardiac muscle cell fate commitment
## GO:0070071 proton-transporting two-sector ATPase complex assembly
## GO:0070862 negative regulation of protein exit from endoplasmic reticulum
## GO:0071639 positive regulation of monocyte chemotactic protein-1 production
## GO:0090179 planar cell polarity pathway involved in neural tube closure
## GO:0090336 positive regulation of brown fat cell differentiation
## GO:0098598 learned vocalization behavior or vocal learning
## GO:1901725 regulation of histone deacetylase activity
## GO:2000425 regulation of apoptotic cell clearance
## GO:0048515 spermatid differentiation
## GO:0000387 spliceosomal snRNP assembly
## GO:2000725 regulation of cardiac muscle cell differentiation
## GO:0007156 homophilic cell adhesion via plasma membrane adhesion molecules
## GO:0051450 myoblast proliferation
## GO:1905208 negative regulation of cardiocyte differentiation
## GO:0043950 positive regulation of cAMP-mediated signaling
## GO:0060547 negative regulation of necrotic cell death
## GO:1900016 negative regulation of cytokine production involved in inflammatory response
## GO:0010719 negative regulation of epithelial to mesenchymal transition
## GO:0034312 diol biosynthetic process
## GO:0046514 ceramide catabolic process
## GO:0050711 negative regulation of interleukin-1 secretion
## GO:0050908 detection of light stimulus involved in visual perception
## GO:0050962 detection of light stimulus involved in sensory perception
## GO:2000042 negative regulation of double-strand break repair via homologous recombination
## GO:0031497 chromatin assembly
## GO:0045814 negative regulation of gene expression, epigenetic
## GO:0007286 spermatid development
## GO:0016064 immunoglobulin mediated immune response
## GO:0006662 glycerol ether metabolic process
## GO:0007342 fusion of sperm to egg plasma membrane involved in single fertilization
## GO:0015780 nucleotide-sugar transmembrane transport
## GO:0017121 phospholipid scrambling
## GO:0021889 olfactory bulb interneuron differentiation
## GO:0034397 telomere localization
## GO:0035751 regulation of lysosomal lumen pH
## GO:0042118 endothelial cell activation
## GO:0043476 pigment accumulation
## GO:0043482 cellular pigment accumulation
## GO:0045078 positive regulation of interferon-gamma biosynthetic process
## GO:0045602 negative regulation of endothelial cell differentiation
## GO:0060294 cilium movement involved in cell motility
## GO:0070986 left/right axis specification
## GO:0090177 establishment of planar polarity involved in neural tube closure
## GO:0090220 chromosome localization to nuclear envelope involved in homologous chromosome segregation
## GO:0090481 pyrimidine nucleotide-sugar transmembrane transport
## GO:1902018 negative regulation of cilium assembly
## GO:0010658 striated muscle cell apoptotic process
## GO:0019724 B cell mediated immunity
## GO:0014741 negative regulation of muscle hypertrophy
## GO:0010804 negative regulation of tumor necrosis factor-mediated signaling pathway
## GO:0031069 hair follicle morphogenesis
## GO:1901032 negative regulation of response to reactive oxygen species
## GO:1902547 regulation of cellular response to vascular endothelial growth factor stimulus
## GO:1903206 negative regulation of hydrogen peroxide-induced cell death
## GO:2001039 negative regulation of cellular response to drug
## GO:0034508 centromere complex assembly
## GO:0034389 lipid droplet organization
## GO:0035268 protein mannosylation
## GO:0006417 regulation of translation
## GO:0008544 epidermis development
## GO:0002091 negative regulation of receptor internalization
## GO:0009109 coenzyme catabolic process
## GO:0010867 positive regulation of triglyceride biosynthetic process
## GO:0010917 negative regulation of mitochondrial membrane potential
## GO:0032048 cardiolipin metabolic process
## GO:0046341 CDP-diacylglycerol metabolic process
## GO:0048712 negative regulation of astrocyte differentiation
## GO:0050713 negative regulation of interleukin-1 beta secretion
## GO:1905209 positive regulation of cardiocyte differentiation
## GO:0010453 regulation of cell fate commitment
## GO:0150077 regulation of neuroinflammatory response
## GO:1901017 negative regulation of potassium ion transmembrane transporter activity
## GO:1904754 positive regulation of vascular associated smooth muscle cell migration
## GO:2000765 regulation of cytoplasmic translation
## GO:0060044 negative regulation of cardiac muscle cell proliferation
## GO:0050830 defense response to Gram-positive bacterium
## GO:0002385 mucosal immune response
## GO:0001675 acrosome assembly
## GO:0002115 store-operated calcium entry
## GO:0015074 DNA integration
## GO:0045026 plasma membrane fusion
## GO:0060046 regulation of acrosome reaction
## GO:0048261 negative regulation of receptor-mediated endocytosis
## GO:0006063 uronic acid metabolic process
## GO:0019585 glucuronate metabolic process
## GO:0048240 sperm capacitation
## GO:1900746 regulation of vascular endothelial growth factor signaling pathway
## GO:2000291 regulation of myoblast proliferation
## GO:0043486 histone exchange
## GO:0010659 cardiac muscle cell apoptotic process
## GO:0032371 regulation of sterol transport
## GO:0032374 regulation of cholesterol transport
## GO:0032692 negative regulation of interleukin-1 production
## GO:0051145 smooth muscle cell differentiation
## GO:0050912 detection of chemical stimulus involved in sensory perception of taste
## GO:0010764 negative regulation of fibroblast migration
## GO:0046520 sphingoid biosynthetic process
## GO:0060947 cardiac vascular smooth muscle cell differentiation
## GO:0070857 regulation of bile acid biosynthetic process
## GO:0072070 loop of Henle development
## GO:0090209 negative regulation of triglyceride metabolic process
## GO:0099500 vesicle fusion to plasma membrane
## GO:0106072 negative regulation of adenylate cyclase-activating G protein-coupled receptor signaling pathway
## GO:2000318 positive regulation of T-helper 17 type immune response
## GO:0060546 negative regulation of necroptotic process
## GO:2000647 negative regulation of stem cell proliferation
## GO:0038111 interleukin-7-mediated signaling pathway
## GO:0070192 chromosome organization involved in meiotic cell cycle
## GO:0010614 negative regulation of cardiac muscle hypertrophy
## GO:0014912 negative regulation of smooth muscle cell migration
## GO:0032769 negative regulation of monooxygenase activity
## GO:0034311 diol metabolic process
## GO:0043046 DNA methylation involved in gamete generation
## GO:0048662 negative regulation of smooth muscle cell proliferation
## GO:0003352 regulation of cilium movement
## GO:0016024 CDP-diacylglycerol biosynthetic process
## GO:0036158 outer dynein arm assembly
## GO:0036159 inner dynein arm assembly
## GO:0045759 negative regulation of action potential
## GO:0051001 negative regulation of nitric-oxide synthase activity
## GO:0061888 regulation of astrocyte activation
## GO:0106074 aminoacyl-tRNA metabolism involved in translational fidelity
## GO:1905516 positive regulation of fertilization
## GO:0010656 negative regulation of muscle cell apoptotic process
## GO:0010662 regulation of striated muscle cell apoptotic process
## GO:0035036 sperm-egg recognition
## GO:0001835 blastocyst hatching
## GO:0035188 hatching
## GO:0060544 regulation of necroptotic process
## GO:0071684 organism emergence from protective structure
## GO:0010939 regulation of necrotic cell death
## GO:0030219 megakaryocyte differentiation
## GO:0032366 intracellular sterol transport
## GO:0032367 intracellular cholesterol transport
## GO:0090343 positive regulation of cell aging
## GO:0018298 protein-chromophore linkage
## GO:0033617 mitochondrial respiratory chain complex IV assembly
## GO:0046519 sphingoid metabolic process
## GO:1902548 negative regulation of cellular response to vascular endothelial growth factor stimulus
## GO:0010594 regulation of endothelial cell migration
## GO:2000727 positive regulation of cardiac muscle cell differentiation
## GO:0010664 negative regulation of striated muscle cell apoptotic process
## GO:0034390 smooth muscle cell apoptotic process
## GO:0034391 regulation of smooth muscle cell apoptotic process
## GO:1905564 positive regulation of vascular endothelial cell proliferation
## GO:0040037 negative regulation of fibroblast growth factor receptor signaling pathway
## GO:0070131 positive regulation of mitochondrial translation
## GO:1903980 positive regulation of microglial cell activation
## GO:1905953 negative regulation of lipid localization
## GO:0006334 nucleosome assembly
## GO:0030317 flagellated sperm motility
## GO:0097722 sperm motility
## GO:0008535 respiratory chain complex IV assembly
## GO:0019370 leukotriene biosynthetic process
## GO:0072079 nephron tubule formation
## GO:2000774 positive regulation of cellular senescence
## GO:1901223 negative regulation of NIK/NF-kappaB signaling
## GO:0002182 cytoplasmic translational elongation
## GO:0010587 miRNA catabolic process
## GO:0018202 peptidyl-histidine modification
## GO:0018242 protein O-linked glycosylation via serine
## GO:0032464 positive regulation of protein homooligomerization
## GO:0032621 interleukin-18 production
## GO:0046512 sphingosine biosynthetic process
## GO:0060287 epithelial cilium movement involved in determination of left/right asymmetry
## GO:0070601 centromeric sister chromatid cohesion
## GO:1900247 regulation of cytoplasmic translational elongation
## GO:0010665 regulation of cardiac muscle cell apoptotic process
## GO:0007129 synapsis
## GO:0002227 innate immune response in mucosa
## GO:0003351 epithelial cilium movement
## GO:0045143 homologous chromosome segregation
## GO:0003306 Wnt signaling pathway involved in heart development
## GO:0006670 sphingosine metabolic process
## GO:0009812 flavonoid metabolic process
## GO:0010454 negative regulation of cell fate commitment
## GO:0018158 protein oxidation
## GO:0043696 dedifferentiation
## GO:0043697 cell dedifferentiation
## GO:1902260 negative regulation of delayed rectifier potassium channel activity
## GO:2000272 negative regulation of signaling receptor activity
## GO:0001522 pseudouridine synthesis
## GO:0046940 nucleoside monophosphate phosphorylation
## GO:0051307 meiotic chromosome separation
## GO:0061051 positive regulation of cell growth involved in cardiac muscle cell development
## GO:1900747 negative regulation of vascular endothelial growth factor signaling pathway
## GO:1905050 positive regulation of metallopeptidase activity
## GO:0051151 negative regulation of smooth muscle cell differentiation
## GO:0006342 chromatin silencing
## GO:1902808 positive regulation of cell cycle G1/S phase transition
## GO:0051290 protein heterotetramerization
## GO:0010713 negative regulation of collagen metabolic process
## GO:0034587 piRNA metabolic process
## GO:0048026 positive regulation of mRNA splicing, via spliceosome
## GO:0032691 negative regulation of interleukin-1 beta production
## GO:0046460 neutral lipid biosynthetic process
## GO:0046463 acylglycerol biosynthetic process
## GO:0072376 protein activation cascade
## GO:0045132 meiotic chromosome segregation
## GO:0010667 negative regulation of cardiac muscle cell apoptotic process
## GO:0090050 positive regulation of cell migration involved in sprouting angiogenesis
## GO:0016075 rRNA catabolic process
## GO:0097428 protein maturation by iron-sulfur cluster transfer
## GO:1903979 negative regulation of microglial cell activation
## GO:2000344 positive regulation of acrosome reaction
## GO:0002431 Fc receptor mediated stimulatory signaling pathway
## GO:0050720 interleukin-1 beta biosynthetic process
## GO:0098903 regulation of membrane repolarization during action potential
## GO:1903726 negative regulation of phospholipid metabolic process
## GO:0017004 cytochrome complex assembly
## GO:1905048 regulation of metallopeptidase activity
## GO:1904262 negative regulation of TORC1 signaling
## GO:0034080 CENP-A containing nucleosome assembly
## GO:0061641 CENP-A containing chromatin organization
## GO:0007379 segment specification
## GO:0032966 negative regulation of collagen biosynthetic process
## GO:1903818 positive regulation of voltage-gated potassium channel activity
## GO:0031055 chromatin remodeling at centromere
## GO:1900087 positive regulation of G1/S transition of mitotic cell cycle
## GO:0010874 regulation of cholesterol efflux
## GO:0019432 triglyceride biosynthetic process
## GO:0042219 cellular modified amino acid catabolic process
## GO:0043534 blood vessel endothelial cell migration
## GO:0040036 regulation of fibroblast growth factor receptor signaling pathway
## GO:0002433 immune response-regulating cell surface receptor signaling pathway involved in phagocytosis
## GO:0038096 Fc-gamma receptor signaling pathway involved in phagocytosis
## GO:0070286 axonemal dynein complex assembly
## GO:0038094 Fc-gamma receptor signaling pathway
## GO:0035082 axoneme assembly
## GO:0043588 skin development
## GO:0050722 regulation of interleukin-1 beta biosynthetic process
## GO:1905461 positive regulation of vascular associated smooth muscle cell apoptotic process
## GO:0010986 positive regulation of lipoprotein particle clearance
## GO:1904684 negative regulation of metalloendopeptidase activity
## GO:0034392 negative regulation of smooth muscle cell apoptotic process
## GO:1905049 negative regulation of metallopeptidase activity
## GO:1905064 negative regulation of vascular smooth muscle cell differentiation
## GO:0071786 endoplasmic reticulum tubular network organization
## GO:0048490 anterograde synaptic vesicle transport
## GO:0052695 cellular glucuronidation
## GO:0099514 synaptic vesicle cytoskeletal transport
## GO:0099517 synaptic vesicle transport along microtubule
## GO:0010866 regulation of triglyceride biosynthetic process
## GO:0010988 regulation of low-density lipoprotein particle clearance
## GO:0034661 ncRNA catabolic process
## GO:0018345 protein palmitoylation
## GO:0000245 spliceosomal complex assembly
## GO:0010455 positive regulation of cell fate commitment
## GO:0042222 interleukin-1 biosynthetic process
## GO:0097709 connective tissue replacement
## GO:1905902 regulation of mesoderm formation
## GO:0002673 regulation of acute inflammatory response
## GO:1903317 regulation of protein maturation
## GO:1903672 positive regulation of sprouting angiogenesis
## GO:1903817 negative regulation of voltage-gated potassium channel activity
## GO:0150079 negative regulation of neuroinflammatory response
## GO:0051150 regulation of smooth muscle cell differentiation
## GO:0045652 regulation of megakaryocyte differentiation
## GO:0010940 positive regulation of necrotic cell death
## GO:0045360 regulation of interleukin-1 biosynthetic process
## GO:1904705 regulation of vascular smooth muscle cell proliferation
## GO:1990874 vascular smooth muscle cell proliferation
## GO:0070613 regulation of protein processing
## GO:1904995 negative regulation of leukocyte adhesion to vascular endothelial cell
## GO:1905031 regulation of membrane repolarization during cardiac muscle cell action potential
## GO:0035886 vascular smooth muscle cell differentiation
## GO:0032369 negative regulation of lipid transport
## GO:0010612 regulation of cardiac muscle adaptation
## GO:1903242 regulation of cardiac muscle hypertrophy in response to stress
## GO:1905288 vascular associated smooth muscle cell apoptotic process
## GO:1905459 regulation of vascular associated smooth muscle cell apoptotic process
## GO:0014744 positive regulation of muscle adaptation
## GO:1901343 negative regulation of vasculature development
## GO:0051013 microtubule severing
## GO:0010633 negative regulation of epithelial cell migration
## GO:1904738 vascular associated smooth muscle cell migration
## GO:1904752 regulation of vascular associated smooth muscle cell migration
## GO:0010989 negative regulation of low-density lipoprotein particle clearance
## GO:0003341 cilium movement
## GO:0006956 complement activation
## GO:0043535 regulation of blood vessel endothelial cell migration
## GO:2000181 negative regulation of blood vessel morphogenesis
## GO:0010984 regulation of lipoprotein particle clearance
## GO:0000244 spliceosomal tri-snRNP complex assembly
## GO:1903589 positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0010985 negative regulation of lipoprotein particle clearance
## GO:2000543 positive regulation of gastrulation
## GO:1904683 regulation of metalloendopeptidase activity
## GO:0016525 negative regulation of angiogenesis
## GO:0002042 cell migration involved in sprouting angiogenesis
## GO:0002920 regulation of humoral immune response
## GO:0051152 positive regulation of smooth muscle cell differentiation
## GO:1900239 regulation of phenotypic switching
## GO:1901748 leukotriene D4 metabolic process
## GO:1901750 leukotriene D4 biosynthetic process
## GO:0090677 reversible differentiation
## GO:1905651 regulation of artery morphogenesis
## GO:0009913 epidermal cell differentiation
## GO:1905203 regulation of connective tissue replacement
## GO:0006617 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## GO:0010615 positive regulation of cardiac muscle adaptation
## GO:1903244 positive regulation of cardiac muscle hypertrophy in response to stress
## GO:2000818 negative regulation of myoblast proliferation
## GO:0006376 mRNA splice site selection
## GO:1905063 regulation of vascular smooth muscle cell differentiation
## GO:1905205 positive regulation of connective tissue replacement
## GO:2000257 regulation of protein activation cascade
## GO:0036166 phenotypic switching
## GO:0045653 negative regulation of megakaryocyte differentiation
## GO:1905065 positive regulation of vascular smooth muscle cell differentiation
## GO:0010596 negative regulation of endothelial cell migration
## GO:0002040 sprouting angiogenesis
## GO:0030449 regulation of complement activation
## GO:0070103 regulation of interleukin-6-mediated signaling pathway
## GO:1904753 negative regulation of vascular associated smooth muscle cell migration
## GO:1904706 negative regulation of vascular smooth muscle cell proliferation
## GO:0001937 negative regulation of endothelial cell proliferation
## GO:0101023 vascular endothelial cell proliferation
## GO:1905562 regulation of vascular endothelial cell proliferation
## GO:0032372 negative regulation of sterol transport
## GO:0032375 negative regulation of cholesterol transport
## GO:0070104 negative regulation of interleukin-6-mediated signaling pathway
## GO:0002455 humoral immune response mediated by circulating immunoglobulin
## GO:0090049 regulation of cell migration involved in sprouting angiogenesis
## GO:0006335 DNA replication-dependent nucleosome assembly
## GO:0034723 DNA replication-dependent nucleosome organization
## GO:0045292 mRNA cis splicing, via spliceosome
## GO:0000183 chromatin silencing at rDNA
## GO:0030216 keratinocyte differentiation
## GO:0090370 negative regulation of cholesterol efflux
## GO:0043537 negative regulation of blood vessel endothelial cell migration
## GO:0034249 negative regulation of cellular amide metabolic process
## GO:0090051 negative regulation of cell migration involved in sprouting angiogenesis
## GO:0002043 blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0006958 complement activation, classical pathway
## GO:1905563 negative regulation of vascular endothelial cell proliferation
## GO:1903670 regulation of sprouting angiogenesis
## GO:0017148 negative regulation of translation
## GO:1903588 negative regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:1903587 regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## GO:0000395 mRNA 5'-splice site recognition
## GO:1903671 negative regulation of sprouting angiogenesis
## GO:0031424 keratinization
## GO:0007608 sensory perception of smell
## GO:0009593 detection of chemical stimulus
## GO:0035278 miRNA mediated inhibition of translation
## GO:0040033 negative regulation of translation, ncRNA-mediated
## GO:0045974 regulation of translation, ncRNA-mediated
## GO:0050907 detection of chemical stimulus involved in sensory perception
## GO:0050911 detection of chemical stimulus involved in sensory perception of smell
## GeneRatio BgRatio pvalue p.adjust qvalue
## GO:0009991 437/11248 498/17913 8.878791e-37 5.113541e-33 1.791349e-33
## GO:0048732 378/11248 422/17913 1.639481e-36 5.113541e-33 1.791349e-33
## GO:1901652 429/11248 491/17913 4.254254e-35 8.846012e-32 3.098888e-32
## GO:0031667 409/11248 466/17913 1.602117e-34 2.498502e-31 8.752619e-32
## GO:0043062 345/11248 387/17913 2.122559e-32 2.648104e-29 9.276698e-30
## GO:0050878 429/11248 499/17913 1.796046e-31 1.867289e-28 6.541388e-29
## GO:0002446 428/11248 499/17913 6.655074e-31 5.189294e-28 1.817886e-28
## GO:0009636 428/11248 499/17913 6.655074e-31 5.189294e-28 1.817886e-28
## GO:0010038 302/11248 335/17913 1.329731e-30 8.927534e-28 3.127447e-28
## GO:0048545 333/11248 375/17913 1.568132e-30 8.927534e-28 3.127447e-28
## GO:0048511 264/11248 287/17913 1.574269e-30 8.927534e-28 3.127447e-28
## GO:0002283 419/11248 488/17913 1.725455e-30 8.969489e-28 3.142144e-28
## GO:0042119 427/11248 499/17913 2.425627e-30 1.163928e-27 4.077411e-28
## GO:0043312 416/11248 485/17913 4.557074e-30 2.030502e-27 7.113147e-28
## GO:0001101 296/11248 330/17913 4.506195e-29 1.873976e-26 6.564814e-27
## GO:0070482 341/11248 389/17913 1.018049e-28 3.969117e-26 1.390440e-26
## GO:0023061 374/11248 433/17913 1.888162e-28 6.640366e-26 2.326218e-26
## GO:0043434 352/11248 404/17913 1.916104e-28 6.640366e-26 2.326218e-26
## GO:0030198 298/11248 334/17913 2.758447e-28 9.056417e-26 3.172596e-26
## GO:0061458 370/11248 429/17913 7.026519e-28 2.191571e-25 7.677397e-26
## GO:0048667 423/11248 500/17913 9.000346e-28 2.673531e-25 9.365774e-26
## GO:1904951 378/11248 440/17913 1.033104e-27 2.929319e-25 1.026183e-25
## GO:0006875 398/11248 467/17913 1.439805e-27 3.905002e-25 1.367980e-25
## GO:0048608 367/11248 426/17913 1.874767e-27 4.872832e-25 1.707025e-25
## GO:0051047 354/11248 409/17913 2.307893e-27 5.758655e-25 2.017342e-25
## GO:0036293 320/11248 365/17913 4.849543e-27 1.163517e-24 4.075972e-25
## GO:0055074 337/11248 388/17913 1.019907e-26 2.356362e-24 8.254683e-25
## GO:0001666 311/11248 354/17913 1.136873e-26 2.532790e-24 8.872736e-25
## GO:0045785 336/11248 388/17913 4.036498e-26 8.682647e-24 3.041659e-24
## GO:0072507 354/11248 412/17913 4.747647e-26 9.843905e-24 3.448465e-24
## GO:0006874 326/11248 375/17913 4.891970e-26 9.843905e-24 3.448465e-24
## GO:0071900 404/11248 479/17913 5.234820e-26 1.020463e-23 3.574831e-24
## GO:1903532 330/11248 381/17913 1.046562e-25 1.978319e-23 6.930344e-24
## GO:0001655 286/11248 324/17913 2.169595e-25 3.980568e-23 1.394452e-23
## GO:0042110 376/11248 443/17913 2.252422e-25 4.014460e-23 1.406324e-23
## GO:0046677 289/11248 328/17913 2.424377e-25 4.200906e-23 1.471639e-23
## GO:0002521 407/11248 485/17913 2.850699e-25 4.806124e-23 1.683656e-23
## GO:0031589 284/11248 322/17913 4.358717e-25 7.155177e-23 2.506564e-23
## GO:0001501 402/11248 479/17913 5.452293e-25 8.720872e-23 3.055050e-23
## GO:0072503 337/11248 392/17913 6.030522e-25 9.404599e-23 3.294569e-23
## GO:0051222 345/11248 403/17913 8.581321e-25 1.305617e-22 4.573767e-23
## GO:0099177 338/11248 394/17913 1.165514e-24 1.731065e-22 6.064176e-23
## GO:0050804 337/11248 393/17913 1.607287e-24 2.331687e-22 8.168244e-23
## GO:0061564 370/11248 438/17913 3.547548e-24 5.029455e-22 1.761892e-22
## GO:0043410 415/11248 499/17913 3.924441e-24 5.440147e-22 1.905764e-22
## GO:0019058 284/11248 324/17913 4.211694e-24 5.711423e-22 2.000796e-22
## GO:0072594 380/11248 452/17913 5.622203e-24 7.461980e-22 2.614041e-22
## GO:0050769 382/11248 455/17913 7.271727e-24 9.450215e-22 3.310549e-22
## GO:1901615 415/11248 500/17913 8.776003e-24 1.117239e-21 3.913852e-22
## GO:0048871 394/11248 472/17913 1.371025e-23 1.710491e-21 5.992102e-22
## GO:0007409 335/11248 393/17913 2.051116e-23 2.508796e-21 8.788683e-22
## GO:0007599 292/11248 336/17913 2.143453e-23 2.571320e-21 9.007711e-22
## GO:1901653 313/11248 364/17913 2.732830e-23 3.207159e-21 1.123515e-21
## GO:0051098 316/11248 368/17913 2.776316e-23 3.207159e-21 1.123515e-21
## GO:0007596 288/11248 331/17913 2.832962e-23 3.213094e-21 1.125594e-21
## GO:0010975 383/11248 458/17913 2.930471e-23 3.264335e-21 1.143545e-21
## GO:0070997 300/11248 347/17913 3.406724e-23 3.728271e-21 1.306068e-21
## GO:0043405 281/11248 322/17913 3.496186e-23 3.760208e-21 1.317256e-21
## GO:0090066 371/11248 442/17913 3.579256e-23 3.784305e-21 1.325698e-21
## GO:0051493 393/11248 472/17913 4.180273e-23 4.346090e-21 1.522499e-21
## GO:0051656 375/11248 448/17913 5.901264e-23 6.034768e-21 2.114068e-21
## GO:0032147 266/11248 303/17913 7.053256e-23 7.096485e-21 2.486003e-21
## GO:0071214 271/11248 310/17913 1.172385e-22 1.142709e-20 4.003079e-21
## GO:0104004 271/11248 310/17913 1.172385e-22 1.142709e-20 4.003079e-21
## GO:0006936 296/11248 343/17913 1.263485e-22 1.212557e-20 4.247765e-21
## GO:0071902 280/11248 322/17913 1.425250e-22 1.347077e-20 4.719009e-21
## GO:0007584 197/11248 215/17913 1.546508e-22 1.439868e-20 5.044069e-21
## GO:0050817 291/11248 337/17913 2.356918e-22 2.162126e-20 7.574245e-21
## GO:0062012 367/11248 439/17913 2.744472e-22 2.481162e-20 8.691874e-21
## GO:0060627 397/11248 480/17913 3.204216e-22 2.855414e-20 1.000294e-20
## GO:0009914 271/11248 311/17913 3.458470e-22 3.038583e-20 1.064460e-20
## GO:0002791 399/11248 483/17913 3.949195e-22 3.421539e-20 1.198615e-20
## GO:0016569 362/11248 433/17913 5.237411e-22 4.475475e-20 1.567825e-20
## GO:1903829 276/11248 318/17913 5.400679e-22 4.552627e-20 1.594852e-20
## GO:0018108 297/11248 346/17913 6.659935e-22 5.539290e-20 1.940495e-20
## GO:0007623 185/11248 201/17913 7.834673e-22 6.430617e-20 2.252740e-20
## GO:0009314 363/11248 435/17913 8.935919e-22 7.239255e-20 2.536017e-20
## GO:0018212 299/11248 349/17913 9.267744e-22 7.411819e-20 2.596469e-20
## GO:0071496 277/11248 320/17913 1.093792e-21 8.636803e-20 3.025599e-20
## GO:0022604 359/11248 430/17913 1.270160e-21 9.904072e-20 3.469542e-20
## GO:0097305 209/11248 232/17913 1.857158e-21 1.430241e-19 5.010345e-20
## GO:0030522 240/11248 272/17913 1.891610e-21 1.439008e-19 5.041055e-20
## GO:0051480 253/11248 289/17913 1.973233e-21 1.483016e-19 5.195222e-20
## GO:0002694 404/11248 492/17913 2.040349e-21 1.515202e-19 5.307976e-20
## GO:0046879 262/11248 301/17913 2.432453e-21 1.785134e-19 6.253587e-20
## GO:0022407 328/11248 389/17913 2.723432e-21 1.975438e-19 6.920250e-20
## GO:0032386 336/11248 400/17913 3.275263e-21 2.348401e-19 8.226795e-20
## GO:0019932 306/11248 360/17913 4.417401e-21 3.131335e-19 1.096953e-19
## GO:0003012 371/11248 448/17913 4.921423e-21 3.449420e-19 1.208383e-19
## GO:0016049 384/11248 466/17913 5.918462e-21 4.102152e-19 1.437044e-19
## GO:0016570 350/11248 420/17913 7.838064e-21 5.372950e-19 1.882223e-19
## GO:0031346 307/11248 362/17913 8.077134e-21 5.476648e-19 1.918550e-19
## GO:0001503 326/11248 388/17913 1.186969e-20 7.961625e-19 2.789074e-19
## GO:0050708 376/11248 456/17913 1.221892e-20 8.108684e-19 2.840591e-19
## GO:0072001 253/11248 291/17913 1.704215e-20 1.119042e-18 3.920167e-19
## GO:0044706 202/11248 225/17913 2.409836e-20 1.565891e-18 5.485548e-19
## GO:0001819 368/11248 446/17913 2.518945e-20 1.619915e-18 5.674801e-19
## GO:0035690 306/11248 362/17913 2.699088e-20 1.698428e-18 5.949844e-19
## GO:0010769 229/11248 260/17913 2.718097e-20 1.698428e-18 5.949844e-19
## GO:0006979 365/11248 442/17913 2.722713e-20 1.698428e-18 5.949844e-19
## GO:0007568 273/11248 318/17913 2.980972e-20 1.841119e-18 6.449711e-19
## GO:0001822 241/11248 276/17913 3.859786e-20 2.360524e-18 8.269264e-19
## GO:1901214 269/11248 313/17913 4.049296e-20 2.452379e-18 8.591045e-19
## GO:0043406 221/11248 250/17913 4.340828e-20 2.603662e-18 9.121011e-19
## GO:0046883 224/11248 254/17913 4.876186e-20 2.896919e-18 1.014833e-18
## GO:0048568 343/11248 413/17913 5.999819e-20 3.530837e-18 1.236904e-18
## GO:0009410 236/11248 270/17913 7.052847e-20 4.111744e-18 1.440404e-18
## GO:0051249 334/11248 401/17913 7.264483e-20 4.195911e-18 1.469890e-18
## GO:0071383 215/11248 243/17913 1.095277e-19 6.268202e-18 2.195843e-18
## GO:0006367 164/11248 178/17913 1.279930e-19 7.258369e-18 2.542713e-18
## GO:0001505 274/11248 321/17913 1.478201e-19 8.243368e-18 2.887773e-18
## GO:0019882 197/11248 220/17913 1.480053e-19 8.243368e-18 2.887773e-18
## GO:0007204 224/11248 255/17913 1.521310e-19 8.398172e-18 2.942003e-18
## GO:0007159 279/11248 328/17913 1.991757e-19 1.089875e-17 3.817994e-18
## GO:0043900 338/11248 408/17913 2.528158e-19 1.371361e-17 4.804078e-18
## GO:0060326 222/11248 253/17913 3.017902e-19 1.622903e-17 5.685268e-18
## GO:0030098 276/11248 325/17913 5.063875e-19 2.699868e-17 9.458034e-18
## GO:0007565 175/11248 193/17913 6.509487e-19 3.441202e-17 1.205504e-17
## GO:2001233 329/11248 397/17913 6.875876e-19 3.604346e-17 1.262655e-17
## GO:0022411 398/11248 492/17913 7.582488e-19 3.941630e-17 1.380811e-17
## GO:0044282 334/11248 404/17913 7.914141e-19 4.080034e-17 1.429296e-17
## GO:0072522 250/11248 291/17913 9.615391e-19 4.916460e-17 1.722308e-17
## GO:0006836 212/11248 241/17913 9.842454e-19 4.991644e-17 1.748646e-17
## GO:0007160 191/11248 214/17913 1.283317e-18 6.455912e-17 2.261601e-17
## GO:0001659 158/11248 172/17913 1.311298e-18 6.543904e-17 2.292426e-17
## GO:0051091 224/11248 257/17913 1.363449e-18 6.750153e-17 2.364678e-17
## GO:0009612 180/11248 200/17913 1.504326e-18 7.388965e-17 2.588463e-17
## GO:0034330 239/11248 277/17913 1.715883e-18 8.362247e-17 2.929418e-17
## GO:0016053 350/11248 427/17913 1.809441e-18 8.749838e-17 3.065197e-17
## GO:0051169 260/11248 305/17913 1.846860e-18 8.828032e-17 3.092589e-17
## GO:0071375 254/11248 297/17913 1.853915e-18 8.828032e-17 3.092589e-17
## GO:0045666 297/11248 355/17913 2.271333e-18 1.073377e-16 3.760198e-17
## GO:0046394 349/11248 426/17913 2.383539e-18 1.117934e-16 3.916285e-17
## GO:0006164 241/11248 280/17913 2.434309e-18 1.133226e-16 3.969856e-17
## GO:0006520 291/11248 347/17913 2.504409e-18 1.157223e-16 4.053921e-17
## GO:0018205 312/11248 376/17913 3.804633e-18 1.745096e-16 6.113327e-17
## GO:0070661 233/11248 270/17913 4.422047e-18 2.013484e-16 7.053530e-17
## GO:0006913 257/11248 302/17913 4.720756e-18 2.133919e-16 7.475431e-17
## GO:0008202 271/11248 321/17913 5.774237e-18 2.591345e-16 9.077861e-17
## GO:0002237 262/11248 309/17913 6.238353e-18 2.779632e-16 9.737460e-17
## GO:0042391 310/11248 374/17913 6.754418e-18 2.988231e-16 1.046821e-16
## GO:0048880 293/11248 351/17913 7.373937e-18 3.239340e-16 1.134788e-16
## GO:0001558 326/11248 396/17913 7.555555e-18 3.268693e-16 1.145071e-16
## GO:0045088 358/11248 440/17913 7.596534e-18 3.268693e-16 1.145071e-16
## GO:0002440 172/11248 191/17913 7.597957e-18 3.268693e-16 1.145071e-16
## GO:0097191 189/11248 213/17913 8.835212e-18 3.774935e-16 1.322415e-16
## GO:0003015 243/11248 284/17913 8.984064e-18 3.786661e-16 1.326523e-16
## GO:0046390 243/11248 284/17913 8.984064e-18 3.786661e-16 1.326523e-16
## GO:0042176 295/11248 354/17913 9.326012e-18 3.904407e-16 1.367771e-16
## GO:0007611 215/11248 247/17913 9.539262e-18 3.967061e-16 1.389720e-16
## GO:0001701 286/11248 342/17913 1.102304e-17 4.553757e-16 1.595248e-16
## GO:0032496 251/11248 295/17913 1.216393e-17 4.959384e-16 1.737345e-16
## GO:0043010 251/11248 295/17913 1.216393e-17 4.959384e-16 1.737345e-16
## GO:0032388 181/11248 203/17913 1.331705e-17 5.394269e-16 1.889692e-16
## GO:0072330 268/11248 318/17913 1.434357e-17 5.772594e-16 2.022225e-16
## GO:0009152 229/11248 266/17913 1.617790e-17 6.469084e-16 2.266215e-16
## GO:0007264 375/11248 465/17913 2.082325e-17 8.273595e-16 2.898362e-16
## GO:0044839 222/11248 257/17913 2.117687e-17 8.350199e-16 2.925198e-16
## GO:0043903 203/11248 232/17913 2.128377e-17 8.350199e-16 2.925198e-16
## GO:0009266 193/11248 219/17913 2.269214e-17 8.768889e-16 3.071871e-16
## GO:0006732 303/11248 366/17913 2.273120e-17 8.768889e-16 3.071871e-16
## GO:0048002 169/11248 188/17913 2.277268e-17 8.768889e-16 3.071871e-16
## GO:0009150 400/11248 500/17913 2.369008e-17 9.066179e-16 3.176016e-16
## GO:0034329 189/11248 214/17913 2.868920e-17 1.091239e-15 3.822772e-16
## GO:1903522 248/11248 292/17913 3.089808e-17 1.168135e-15 4.092148e-16
## GO:0150063 288/11248 346/17913 3.171505e-17 1.191798e-15 4.175043e-16
## GO:0001654 285/11248 342/17913 3.368376e-17 1.258199e-15 4.407657e-16
## GO:0022409 217/11248 251/17913 3.931914e-17 1.459957e-15 5.114445e-16
## GO:0009260 238/11248 279/17913 4.352784e-17 1.606667e-15 5.628390e-16
## GO:0030900 306/11248 371/17913 4.577927e-17 1.679830e-15 5.884692e-16
## GO:0006816 338/11248 415/17913 4.763995e-17 1.728585e-15 6.055488e-16
## GO:0051402 207/11248 238/17913 4.766218e-17 1.728585e-15 6.055488e-16
## GO:0051188 261/11248 310/17913 4.973795e-17 1.793441e-15 6.282688e-16
## GO:0072511 369/11248 458/17913 5.064312e-17 1.815585e-15 6.360261e-16
## GO:0032943 213/11248 246/17913 5.251484e-17 1.871929e-15 6.557642e-16
## GO:0051090 348/11248 429/17913 5.444506e-17 1.929706e-15 6.760045e-16
## GO:0009755 190/11248 216/17913 6.383434e-17 2.249710e-15 7.881064e-16
## GO:0071241 173/11248 194/17913 6.754627e-17 2.367155e-15 8.292492e-16
## GO:0097193 236/11248 277/17913 8.146558e-17 2.825816e-15 9.899250e-16
## GO:0010976 227/11248 265/17913 8.154006e-17 2.825816e-15 9.899250e-16
## GO:0016055 397/11248 498/17913 9.424144e-17 3.247945e-15 1.137803e-15
## GO:0046651 211/11248 244/17913 1.011649e-16 3.457224e-15 1.211116e-15
## GO:0009615 270/11248 323/17913 1.014222e-16 3.457224e-15 1.211116e-15
## GO:0031647 232/11248 272/17913 1.121231e-16 3.801216e-15 1.331622e-15
## GO:0018105 201/11248 231/17913 1.222476e-16 4.122057e-15 1.444017e-15
## GO:0198738 398/11248 500/17913 1.367527e-16 4.586363e-15 1.606670e-15
## GO:0070838 365/11248 454/17913 1.419419e-16 4.734940e-15 1.658719e-15
## GO:0002793 234/11248 275/17913 1.520777e-16 5.019370e-15 1.758359e-15
## GO:0060047 234/11248 275/17913 1.520777e-16 5.019370e-15 1.758359e-15
## GO:0051235 242/11248 286/17913 1.960112e-16 6.435358e-15 2.254400e-15
## GO:0007265 270/11248 324/17913 2.308086e-16 7.538138e-15 2.640721e-15
## GO:0071229 176/11248 199/17913 2.586420e-16 8.403171e-15 2.943754e-15
## GO:0042063 241/11248 285/17913 2.660901e-16 8.600362e-15 3.012833e-15
## GO:0032355 120/11248 128/17913 2.742723e-16 8.819126e-15 3.089469e-15
## GO:0043401 162/11248 181/17913 2.886199e-16 9.232877e-15 3.234413e-15
## GO:0106106 132/11248 143/17913 3.225033e-16 1.021206e-14 3.577435e-15
## GO:0120161 132/11248 143/17913 3.225033e-16 1.021206e-14 3.577435e-15
## GO:0035270 115/11248 122/17913 3.540948e-16 1.115578e-14 3.908032e-15
## GO:0050863 257/11248 307/17913 3.846187e-16 1.205654e-14 4.223583e-15
## GO:1990845 139/11248 152/17913 4.383443e-16 1.366471e-14 4.786950e-15
## GO:1903037 248/11248 295/17913 4.403026e-16 1.366471e-14 4.786950e-15
## GO:0045862 276/11248 333/17913 4.524688e-16 1.397277e-14 4.894868e-15
## GO:0006352 200/11248 231/17913 4.820154e-16 1.481188e-14 5.188821e-15
## GO:0010810 177/11248 201/17913 5.795806e-16 1.772267e-14 6.208511e-15
## GO:0050890 241/11248 286/17913 6.414013e-16 1.951737e-14 6.837223e-15
## GO:0001763 170/11248 192/17913 6.511060e-16 1.971650e-14 6.906980e-15
## GO:0000086 205/11248 238/17913 7.118281e-16 2.145113e-14 7.514646e-15
## GO:0061138 159/11248 178/17913 8.487358e-16 2.545391e-14 8.916880e-15
## GO:0019080 169/11248 191/17913 9.236251e-16 2.756734e-14 9.657244e-15
## GO:0007548 228/11248 269/17913 9.738274e-16 2.892731e-14 1.013366e-14
## GO:0050867 265/11248 319/17913 9.817959e-16 2.902580e-14 1.016816e-14
## GO:0014074 133/11248 145/17913 1.001387e-15 2.919205e-14 1.022641e-14
## GO:0048872 207/11248 241/17913 1.001459e-15 2.919205e-14 1.022641e-14
## GO:1901617 207/11248 241/17913 1.001459e-15 2.919205e-14 1.022641e-14
## GO:0009108 210/11248 245/17913 1.013826e-15 2.941509e-14 1.030454e-14
## GO:0009896 318/11248 392/17913 1.213526e-15 3.504619e-14 1.227720e-14
## GO:0072331 224/11248 264/17913 1.351372e-15 3.884728e-14 1.360877e-14
## GO:0050714 218/11248 256/17913 1.388959e-15 3.974461e-14 1.392312e-14
## GO:0032868 215/11248 252/17913 1.397887e-15 3.981744e-14 1.394863e-14
## GO:0019216 325/11248 402/17913 1.501595e-15 4.257703e-14 1.491536e-14
## GO:0043254 330/11248 409/17913 1.570684e-15 4.433452e-14 1.553104e-14
## GO:0019884 157/11248 176/17913 1.736192e-15 4.878544e-14 1.709026e-14
## GO:1901293 298/11248 365/17913 1.844032e-15 5.158327e-14 1.807038e-14
## GO:0006066 279/11248 339/17913 1.964171e-15 5.469865e-14 1.916174e-14
## GO:0031098 234/11248 278/17913 2.219140e-15 6.152441e-14 2.155291e-14
## GO:2000116 192/11248 222/17913 2.385796e-15 6.585219e-14 2.306899e-14
## GO:2000027 213/11248 250/17913 2.614836e-15 7.183328e-14 2.516425e-14
## GO:0030595 166/11248 188/17913 2.625519e-15 7.183328e-14 2.516425e-14
## GO:0030168 138/11248 152/17913 2.646089e-15 7.200025e-14 2.522275e-14
## GO:0009165 294/11248 360/17913 2.654706e-15 7.200025e-14 2.522275e-14
## GO:0048193 253/11248 304/17913 2.820730e-15 7.617192e-14 2.668414e-14
## GO:0006090 134/11248 147/17913 2.928033e-15 7.872874e-14 2.757984e-14
## GO:0045471 118/11248 127/17913 3.307770e-15 8.855739e-14 3.102295e-14
## GO:0002478 155/11248 174/17913 3.541722e-15 9.441566e-14 3.307519e-14
## GO:0018209 214/11248 252/17913 4.810841e-15 1.277023e-13 4.473598e-14
## GO:0045926 208/11248 244/17913 4.920211e-15 1.300520e-13 4.555913e-14
## GO:0030323 154/11248 173/17913 5.053137e-15 1.330020e-13 4.659255e-14
## GO:0050920 164/11248 186/17913 5.249914e-15 1.376007e-13 4.820355e-14
## GO:0060562 259/11248 313/17913 5.459575e-15 1.424972e-13 4.991886e-14
## GO:0051403 228/11248 271/17913 5.675753e-15 1.475223e-13 5.167922e-14
## GO:0002696 253/11248 305/17913 6.274822e-15 1.624164e-13 5.689684e-14
## GO:0006605 296/11248 364/17913 6.430063e-15 1.657468e-13 5.806356e-14
## GO:0031668 213/11248 251/17913 6.551399e-15 1.681795e-13 5.891576e-14
## GO:0061448 207/11248 243/17913 6.725286e-15 1.719358e-13 6.023164e-14
## GO:0007163 153/11248 172/17913 7.204357e-15 1.834317e-13 6.425884e-14
## GO:0016052 163/11248 185/17913 7.415632e-15 1.880435e-13 6.587442e-14
## GO:0032970 279/11248 341/17913 8.661605e-15 2.187494e-13 7.663112e-14
## GO:0071248 149/11248 167/17913 8.800264e-15 2.213550e-13 7.754392e-14
## GO:0060541 169/11248 193/17913 8.930269e-15 2.237230e-13 7.837344e-14
## GO:0000302 197/11248 230/17913 9.232915e-15 2.303797e-13 8.070540e-14
## GO:0045089 302/11248 373/17913 1.049048e-14 2.607156e-13 9.133252e-14
## GO:0030072 205/11248 241/17913 1.253770e-14 3.103578e-13 1.087229e-13
## GO:0048863 202/11248 237/17913 1.265431e-14 3.107778e-13 1.088700e-13
## GO:0071453 202/11248 237/17913 1.265431e-14 3.107778e-13 1.088700e-13
## GO:0043281 171/11248 196/17913 1.346922e-14 3.294941e-13 1.154266e-13
## GO:0050792 177/11248 204/17913 1.509417e-14 3.678025e-13 1.288466e-13
## GO:0016358 186/11248 216/17913 1.675221e-14 4.066159e-13 1.424435e-13
## GO:0033157 189/11248 220/17913 1.707882e-14 4.129367e-13 1.446578e-13
## GO:0009743 192/11248 224/17913 1.729219e-14 4.164814e-13 1.458996e-13
## GO:0006402 276/11248 338/17913 1.958305e-14 4.698425e-13 1.645927e-13
## GO:0002064 173/11248 199/17913 1.997525e-14 4.774161e-13 1.672459e-13
## GO:0030324 150/11248 169/17913 2.078674e-14 4.949148e-13 1.733759e-13
## GO:0051701 182/11248 211/17913 2.256647e-14 5.352457e-13 1.875045e-13
## GO:0002685 163/11248 186/17913 2.276398e-14 5.378852e-13 1.884291e-13
## GO:0002683 357/11248 451/17913 2.364090e-14 5.564978e-13 1.949494e-13
## GO:0034504 191/11248 223/17913 2.375966e-14 5.571907e-13 1.951921e-13
## GO:0032535 259/11248 315/17913 2.521920e-14 5.892036e-13 2.064067e-13
## GO:0019083 156/11248 177/17913 2.651853e-14 6.172485e-13 2.162312e-13
## GO:0070646 228/11248 273/17913 3.062218e-14 7.101158e-13 2.487640e-13
## GO:0043523 181/11248 210/17913 3.119666e-14 7.207584e-13 2.524923e-13
## GO:1903039 184/11248 214/17913 3.188838e-14 7.340211e-13 2.571384e-13
## GO:0050900 368/11248 467/17913 3.214837e-14 7.372851e-13 2.582818e-13
## GO:0006401 297/11248 368/17913 3.870684e-14 8.844441e-13 3.098338e-13
## GO:0043161 268/11248 328/17913 4.052187e-14 9.225379e-13 3.231786e-13
## GO:0010498 307/11248 382/17913 4.160843e-14 9.438305e-13 3.306377e-13
## GO:0140014 201/11248 237/17913 4.318855e-14 9.761239e-13 3.419506e-13
## GO:0043393 186/11248 217/17913 4.449572e-14 1.002037e-12 3.510284e-13
## GO:0046683 119/11248 130/17913 4.900976e-14 1.095781e-12 3.838682e-13
## GO:0050921 119/11248 130/17913 4.900976e-14 1.095781e-12 3.838682e-13
## GO:0060249 329/11248 413/17913 5.061461e-14 1.127621e-12 3.950223e-13
## GO:0009124 170/11248 196/17913 5.387484e-14 1.195983e-12 4.189705e-13
## GO:0010639 285/11248 352/17913 5.919895e-14 1.309514e-12 4.587422e-13
## GO:0070555 160/11248 183/17913 6.284965e-14 1.385357e-12 4.853110e-13
## GO:0045787 300/11248 373/17913 6.729084e-14 1.478029e-12 5.177753e-13
## GO:0032103 258/11248 315/17913 6.974464e-14 1.526551e-12 5.347733e-13
## GO:1901654 166/11248 191/17913 7.135940e-14 1.556433e-12 5.452415e-13
## GO:0003018 143/11248 161/17913 7.404927e-14 1.606851e-12 5.629035e-13
## GO:0009127 153/11248 174/17913 7.444371e-14 1.606851e-12 5.629035e-13
## GO:0009168 153/11248 174/17913 7.444371e-14 1.606851e-12 5.629035e-13
## GO:0034599 244/11248 296/17913 8.023868e-14 1.725962e-12 6.046298e-13
## GO:0007050 196/11248 231/17913 8.147601e-14 1.746555e-12 6.118438e-13
## GO:0042113 184/11248 215/17913 8.392362e-14 1.792861e-12 6.280657e-13
## GO:0051251 216/11248 258/17913 8.634941e-14 1.838388e-12 6.440143e-13
## GO:0071347 139/11248 156/17913 9.101380e-14 1.931102e-12 6.764935e-13
## GO:0008217 149/11248 169/17913 9.482276e-14 2.005100e-12 7.024159e-13
## GO:0048015 142/11248 160/17913 1.053234e-13 2.219619e-12 7.775653e-13
## GO:1902749 174/11248 202/17913 1.108435e-13 2.328088e-12 8.155633e-13
## GO:0060537 313/11248 392/17913 1.185942e-13 2.482518e-12 8.696627e-13
## GO:0008016 209/11248 249/17913 1.274223e-13 2.658395e-12 9.312750e-13
## GO:0002703 161/11248 185/17913 1.312107e-13 2.728308e-12 9.557665e-13
## GO:0050730 206/11248 245/17913 1.328572e-13 2.753366e-12 9.645445e-13
## GO:0048017 144/11248 163/17913 1.695220e-13 3.501584e-12 1.226656e-12
## GO:0050852 157/11248 180/17913 1.722964e-13 3.547144e-12 1.242617e-12
## GO:0045930 252/11248 308/17913 1.730095e-13 3.550110e-12 1.243656e-12
## GO:0050806 130/11248 145/17913 1.898355e-13 3.882603e-12 1.360133e-12
## GO:0009156 163/11248 188/17913 1.922291e-13 3.918710e-12 1.372782e-12
## GO:0006733 166/11248 192/17913 2.000446e-13 4.064751e-12 1.423942e-12
## GO:0002367 95/11248 101/17913 2.107040e-13 4.267439e-12 1.494947e-12
## GO:0036294 187/11248 220/17913 2.126006e-13 4.291918e-12 1.503522e-12
## GO:0051648 224/11248 270/17913 2.186021e-13 4.398839e-12 1.540978e-12
## GO:0043270 221/11248 266/17913 2.334084e-13 4.681678e-12 1.640061e-12
## GO:0051052 320/11248 403/17913 2.491974e-13 4.981758e-12 1.745183e-12
## GO:0002698 107/11248 116/17913 2.499664e-13 4.981758e-12 1.745183e-12
## GO:0019318 201/11248 239/17913 2.515004e-13 4.996368e-12 1.750301e-12
## GO:0002474 90/11248 95/17913 2.639715e-13 5.210931e-12 1.825466e-12
## GO:0033273 90/11248 95/17913 2.639715e-13 5.210931e-12 1.825466e-12
## GO:0017157 162/11248 187/17913 2.670365e-13 5.254807e-12 1.840836e-12
## GO:0045137 189/11248 223/17913 2.843247e-13 5.577414e-12 1.953850e-12
## GO:0097529 149/11248 170/17913 2.915450e-13 5.701122e-12 1.997187e-12
## GO:0034404 180/11248 211/17913 2.957221e-13 5.764734e-12 2.019471e-12
## GO:0015711 339/11248 430/17913 2.981590e-13 5.794130e-12 2.029769e-12
## GO:0006914 368/11248 471/17913 3.049265e-13 5.888952e-12 2.062986e-12
## GO:0061919 368/11248 471/17913 3.049265e-13 5.888952e-12 2.062986e-12
## GO:0050770 132/11248 148/17913 3.231908e-13 6.222421e-12 2.179806e-12
## GO:1990778 228/11248 276/17913 3.348917e-13 6.427859e-12 2.251774e-12
## GO:2001235 155/11248 178/17913 3.361211e-13 6.431667e-12 2.253108e-12
## GO:0030217 197/11248 234/17913 3.526650e-13 6.727597e-12 2.356776e-12
## GO:0002758 244/11248 298/17913 3.569524e-13 6.788625e-12 2.378155e-12
## GO:0030260 121/11248 134/17913 3.764980e-13 7.074081e-12 2.478155e-12
## GO:0044409 121/11248 134/17913 3.764980e-13 7.074081e-12 2.478155e-12
## GO:0051806 121/11248 134/17913 3.764980e-13 7.074081e-12 2.478155e-12
## GO:0051828 121/11248 134/17913 3.764980e-13 7.074081e-12 2.478155e-12
## GO:0003007 208/11248 249/17913 3.951593e-13 7.402414e-12 2.593175e-12
## GO:0002699 170/11248 198/17913 4.005225e-13 7.435891e-12 2.604902e-12
## GO:0006109 170/11248 198/17913 4.005225e-13 7.435891e-12 2.604902e-12
## GO:0050870 170/11248 198/17913 4.005225e-13 7.435891e-12 2.604902e-12
## GO:0071456 179/11248 210/17913 4.043466e-13 7.484611e-12 2.621969e-12
## GO:0016579 216/11248 260/17913 4.422664e-13 8.162301e-12 2.859374e-12
## GO:0002218 259/11248 319/17913 4.530646e-13 8.336923e-12 2.920547e-12
## GO:0014706 300/11248 376/17913 4.589573e-13 8.420517e-12 2.949831e-12
## GO:0010770 124/11248 138/17913 4.652042e-13 8.510100e-12 2.981213e-12
## GO:0032956 243/11248 297/17913 4.689360e-13 8.553283e-12 2.996341e-12
## GO:0046661 141/11248 160/17913 4.789130e-13 8.709795e-12 3.051169e-12
## GO:0051099 157/11248 181/17913 4.934259e-13 8.947647e-12 3.134492e-12
## GO:0008406 184/11248 217/17913 5.364785e-13 9.700153e-12 3.398106e-12
## GO:0050880 120/11248 133/17913 5.441412e-13 9.810268e-12 3.436681e-12
## GO:0000075 169/11248 197/17913 5.510759e-13 9.901857e-12 3.468766e-12
## GO:0033044 253/11248 311/17913 5.523960e-13 9.901857e-12 3.468766e-12
## GO:0051591 88/11248 93/17913 6.050531e-13 1.079619e-11 3.782064e-12
## GO:0031960 137/11248 155/17913 6.057496e-13 1.079619e-11 3.782064e-12
## GO:0009416 250/11248 307/17913 6.087245e-13 1.081830e-11 3.789810e-12
## GO:0048638 263/11248 325/17913 6.249830e-13 1.107569e-11 3.879978e-12
## GO:0010506 255/11248 314/17913 6.528608e-13 1.153696e-11 4.041565e-12
## GO:0046434 189/11248 224/17913 6.905371e-13 1.216828e-11 4.262727e-12
## GO:0031669 186/11248 220/17913 7.113323e-13 1.249941e-11 4.378728e-12
## GO:0010001 180/11248 212/17913 7.435860e-13 1.302946e-11 4.564413e-12
## GO:0009167 257/11248 317/17913 7.685894e-13 1.342986e-11 4.704678e-12
## GO:0030308 146/11248 167/17913 8.046398e-13 1.402051e-11 4.911591e-12
## GO:0009161 267/11248 331/17913 8.498499e-13 1.476703e-11 5.173108e-12
## GO:0050821 149/11248 171/17913 8.607679e-13 1.491519e-11 5.225012e-12
## GO:1901292 152/11248 175/17913 9.101266e-13 1.572679e-11 5.509325e-12
## GO:0050808 312/11248 394/17913 9.476776e-13 1.633042e-11 5.720787e-12
## GO:0009408 139/11248 158/17913 9.530769e-13 1.637822e-11 5.737531e-12
## GO:0090276 170/11248 199/17913 1.043384e-12 1.788084e-11 6.263922e-12
## GO:0051650 210/11248 253/17913 1.116279e-12 1.907767e-11 6.683190e-12
## GO:0042770 118/11248 131/17913 1.133830e-12 1.927202e-11 6.751273e-12
## GO:0048813 118/11248 131/17913 1.133830e-12 1.927202e-11 6.751273e-12
## GO:0010948 276/11248 344/17913 1.172873e-12 1.988148e-11 6.964774e-12
## GO:0010959 291/11248 365/17913 1.227075e-12 2.074389e-11 7.266891e-12
## GO:0051054 187/11248 222/17913 1.262365e-12 2.128279e-11 7.455673e-12
## GO:0007187 154/11248 178/17913 1.320776e-12 2.220755e-11 7.779631e-12
## GO:0051216 157/11248 182/17913 1.364178e-12 2.287565e-11 8.013677e-12
## GO:0044262 212/11248 256/17913 1.387195e-12 2.319926e-11 8.127041e-12
## GO:0007626 166/11248 194/17913 1.428101e-12 2.381950e-11 8.344321e-12
## GO:0046718 110/11248 121/17913 1.481020e-12 2.463627e-11 8.630447e-12
## GO:0009126 257/11248 318/17913 1.519657e-12 2.521176e-11 8.832049e-12
## GO:0022612 106/11248 116/17913 1.629032e-12 2.695465e-11 9.442609e-12
## GO:0009166 147/11248 169/17913 1.675455e-12 2.764944e-11 9.686005e-12
## GO:0009144 259/11248 321/17913 1.770084e-12 2.913399e-11 1.020607e-11
## GO:1902107 127/11248 143/17913 1.902841e-12 3.123664e-11 1.094266e-11
## GO:0010389 159/11248 185/17913 1.924700e-12 3.151254e-11 1.103931e-11
## GO:0010721 256/11248 317/17913 1.970899e-12 3.218227e-11 1.127392e-11
## GO:0009123 279/11248 349/17913 1.977426e-12 3.218227e-11 1.127392e-11
## GO:0035150 120/11248 134/17913 1.981082e-12 3.218227e-11 1.127392e-11
## GO:0021700 216/11248 262/17913 2.102722e-12 3.406956e-11 1.193507e-11
## GO:0034612 232/11248 284/17913 2.187165e-12 3.533469e-11 1.237826e-11
## GO:1902903 253/11248 313/17913 2.192133e-12 3.533469e-11 1.237826e-11
## GO:0050851 188/11248 224/17913 2.205692e-12 3.546162e-11 1.242273e-11
## GO:0014065 123/11248 138/17913 2.341199e-12 3.754345e-11 1.315202e-11
## GO:0043620 105/11248 115/17913 2.381657e-12 3.809430e-11 1.334499e-11
## GO:0001890 133/11248 151/17913 2.418432e-12 3.858357e-11 1.351639e-11
## GO:0034976 210/11248 254/17913 2.444867e-12 3.890582e-11 1.362928e-11
## GO:0031331 273/11248 341/17913 2.499726e-12 3.967759e-11 1.389964e-11
## GO:0006096 101/11248 110/17913 2.551490e-12 4.039643e-11 1.415146e-11
## GO:0007254 170/11248 200/17913 2.640875e-12 4.170577e-11 1.461015e-11
## GO:0072524 158/11248 184/17913 2.650505e-12 4.175215e-11 1.462639e-11
## GO:0007612 126/11248 142/17913 2.705659e-12 4.251361e-11 1.489314e-11
## GO:0061008 119/11248 133/17913 2.839838e-12 4.450982e-11 1.559245e-11
## GO:0048754 129/11248 146/17913 3.065193e-12 4.792150e-11 1.678761e-11
## GO:0031032 142/11248 163/17913 3.077686e-12 4.799651e-11 1.681388e-11
## GO:0051961 236/11248 290/17913 3.099707e-12 4.821938e-11 1.689196e-11
## GO:0042445 181/11248 215/17913 3.225246e-12 5.004747e-11 1.753237e-11
## GO:0002576 115/11248 128/17913 3.388980e-12 5.240955e-11 1.835984e-11
## GO:0006754 132/11248 150/17913 3.411074e-12 5.240955e-11 1.835984e-11
## GO:0030902 132/11248 150/17913 3.411074e-12 5.240955e-11 1.835984e-11
## GO:0090316 132/11248 150/17913 3.411074e-12 5.240955e-11 1.835984e-11
## GO:0042866 104/11248 114/17913 3.479146e-12 5.332411e-11 1.868022e-11
## GO:0019362 154/11248 179/17913 3.592037e-12 5.474160e-11 1.917679e-11
## GO:0046496 154/11248 179/17913 3.592037e-12 5.474160e-11 1.917679e-11
## GO:0000226 357/11248 460/17913 3.597957e-12 5.474160e-11 1.917679e-11
## GO:0006260 214/11248 260/17913 3.673462e-12 5.575439e-11 1.953158e-11
## GO:0008361 135/11248 154/17913 3.735477e-12 5.655802e-11 1.981310e-11
## GO:0042180 200/11248 241/17913 4.004417e-12 6.048318e-11 2.118815e-11
## GO:0030048 118/11248 132/17913 4.067282e-12 6.128431e-11 2.146880e-11
## GO:0009205 253/11248 314/17913 4.279923e-12 6.433291e-11 2.253677e-11
## GO:0002262 128/11248 145/17913 4.336498e-12 6.502663e-11 2.277978e-11
## GO:0007411 177/11248 210/17913 4.516253e-12 6.755968e-11 2.366715e-11
## GO:0003205 147/11248 170/17913 4.705094e-12 7.004863e-11 2.453906e-11
## GO:0070507 147/11248 170/17913 4.705094e-12 7.004863e-11 2.453906e-11
## GO:0051092 131/11248 149/17913 4.806813e-12 7.139261e-11 2.500988e-11
## GO:1903708 156/11248 182/17913 5.012984e-12 7.427790e-11 2.602064e-11
## GO:0042326 353/11248 455/17913 5.158009e-12 7.624565e-11 2.670997e-11
## GO:0071356 218/11248 266/17913 5.395197e-12 7.956322e-11 2.787217e-11
## GO:1901216 87/11248 93/17913 5.412322e-12 7.962751e-11 2.789469e-11
## GO:0007178 259/11248 323/17913 6.568266e-12 9.640669e-11 3.377268e-11
## GO:0009141 269/11248 337/17913 6.785518e-12 9.936164e-11 3.480784e-11
## GO:0071559 198/11248 239/17913 7.085133e-12 1.035060e-10 3.625967e-11
## GO:0009199 256/11248 319/17913 7.363453e-12 1.073206e-10 3.759599e-11
## GO:0097485 178/11248 212/17913 7.905731e-12 1.149556e-10 4.027063e-11
## GO:0002687 109/11248 121/17913 8.271052e-12 1.199880e-10 4.203355e-11
## GO:0001889 116/11248 130/17913 8.320734e-12 1.204101e-10 4.218142e-11
## GO:0009145 139/11248 160/17913 8.338754e-12 1.204101e-10 4.218142e-11
## GO:0120162 90/11248 97/17913 8.512393e-12 1.226335e-10 4.296032e-11
## GO:0030073 169/11248 200/17913 8.813180e-12 1.266742e-10 4.437584e-11
## GO:0060070 250/11248 311/17913 9.229645e-12 1.323552e-10 4.636599e-11
## GO:0050731 157/11248 184/17913 9.439834e-12 1.348491e-10 4.723961e-11
## GO:0043902 154/11248 180/17913 9.446784e-12 1.348491e-10 4.723961e-11
## GO:0000187 129/11248 147/17913 9.519071e-12 1.355707e-10 4.749241e-11
## GO:0034332 119/11248 134/17913 9.652635e-12 1.371239e-10 4.803653e-11
## GO:0007015 260/11248 325/17913 9.672095e-12 1.371239e-10 4.803653e-11
## GO:0006790 275/11248 346/17913 9.866941e-12 1.395691e-10 4.889311e-11
## GO:0035296 112/11248 125/17913 1.005018e-11 1.412005e-10 4.946462e-11
## GO:0051170 112/11248 125/17913 1.005018e-11 1.412005e-10 4.946462e-11
## GO:0097746 112/11248 125/17913 1.005018e-11 1.412005e-10 4.946462e-11
## GO:0007162 221/11248 271/17913 1.015902e-11 1.424090e-10 4.988796e-11
## GO:1903362 191/11248 230/17913 1.078477e-11 1.505625e-10 5.274425e-11
## GO:0006757 101/11248 111/17913 1.079082e-11 1.505625e-10 5.274425e-11
## GO:0048013 81/11248 86/17913 1.081308e-11 1.505625e-10 5.274425e-11
## GO:0002700 122/11248 138/17913 1.096104e-11 1.516075e-10 5.311034e-11
## GO:0030879 122/11248 138/17913 1.096104e-11 1.516075e-10 5.311034e-11
## GO:0046546 122/11248 138/17913 1.096104e-11 1.516075e-10 5.311034e-11
## GO:0009206 138/11248 159/17913 1.160349e-11 1.601384e-10 5.609883e-11
## GO:0003206 115/11248 129/17913 1.188493e-11 1.636604e-10 5.733265e-11
## GO:0060337 85/11248 91/17913 1.209892e-11 1.658749e-10 5.810842e-11
## GO:0071357 85/11248 91/17913 1.209892e-11 1.658749e-10 5.810842e-11
## GO:0070302 185/11248 222/17913 1.220546e-11 1.669686e-10 5.849155e-11
## GO:0007044 89/11248 96/17913 1.263039e-11 1.724034e-10 6.039546e-11
## GO:0010821 150/11248 175/17913 1.289634e-11 1.752666e-10 6.139847e-11
## GO:0035966 150/11248 175/17913 1.289634e-11 1.752666e-10 6.139847e-11
## GO:0060560 179/11248 214/17913 1.362226e-11 1.843290e-10 6.457317e-11
## GO:0070663 179/11248 214/17913 1.362226e-11 1.843290e-10 6.457317e-11
## GO:0009895 233/11248 288/17913 1.367064e-11 1.845832e-10 6.466220e-11
## GO:0051924 201/11248 244/17913 1.421454e-11 1.915126e-10 6.708968e-11
## GO:0046777 176/11248 210/17913 1.430826e-11 1.923598e-10 6.738646e-11
## GO:0008584 121/11248 137/17913 1.551468e-11 2.081303e-10 7.291110e-11
## GO:0034660 362/11248 470/17913 1.558409e-11 2.086128e-10 7.308013e-11
## GO:0002688 96/11248 105/17913 1.729890e-11 2.310718e-10 8.094786e-11
## GO:0006941 146/11248 170/17913 1.754395e-11 2.338443e-10 8.191910e-11
## GO:0046034 232/11248 287/17913 1.774403e-11 2.360070e-10 8.267671e-11
## GO:0046822 92/11248 100/17913 1.839014e-11 2.440802e-10 8.550487e-11
## GO:0034340 88/11248 95/17913 1.872541e-11 2.480023e-10 8.687887e-11
## GO:0035264 130/11248 149/17913 2.018255e-11 2.667346e-10 9.344106e-11
## GO:0016054 205/11248 250/17913 2.094730e-11 2.750932e-10 9.636921e-11
## GO:0046395 205/11248 250/17913 2.094730e-11 2.750932e-10 9.636921e-11
## GO:0090596 205/11248 250/17913 2.094730e-11 2.750932e-10 9.636921e-11
## GO:0032872 183/11248 220/17913 2.176672e-11 2.852538e-10 9.992861e-11
## GO:0043618 99/11248 109/17913 2.284958e-11 2.988170e-10 1.046800e-10
## GO:0048167 145/11248 169/17913 2.413907e-11 3.150200e-10 1.103561e-10
## GO:0017038 123/11248 140/17913 2.423978e-11 3.151307e-10 1.103949e-10
## GO:0042098 151/11248 177/17913 2.426749e-11 3.151307e-10 1.103949e-10
## GO:0071478 148/11248 173/17913 2.429912e-11 3.151307e-10 1.103949e-10
## GO:0050768 220/11248 271/17913 2.679240e-11 3.467448e-10 1.214698e-10
## GO:0006006 171/11248 204/17913 2.709487e-11 3.499333e-10 1.225868e-10
## GO:1990823 87/11248 94/17913 2.773884e-11 3.567729e-10 1.249828e-10
## GO:1990830 87/11248 94/17913 2.773884e-11 3.567729e-10 1.249828e-10
## GO:0032944 168/11248 200/17913 2.833048e-11 3.628861e-10 1.271243e-10
## GO:0034284 168/11248 200/17913 2.833048e-11 3.628861e-10 1.271243e-10
## GO:1902105 217/11248 267/17913 2.959688e-11 3.783306e-10 1.325348e-10
## GO:0009201 141/11248 164/17913 3.277809e-11 4.181386e-10 1.464801e-10
## GO:0006457 150/11248 176/17913 3.317233e-11 4.223041e-10 1.479393e-10
## GO:0007272 112/11248 126/17913 3.443913e-11 4.357633e-10 1.526543e-10
## GO:0008366 112/11248 126/17913 3.443913e-11 4.357633e-10 1.526543e-10
## GO:0051592 112/11248 126/17913 3.443913e-11 4.357633e-10 1.526543e-10
## GO:1901215 173/11248 207/17913 3.459925e-11 4.369031e-10 1.530536e-10
## GO:0014066 105/11248 117/17913 3.553079e-11 4.477597e-10 1.568568e-10
## GO:0006606 94/11248 103/17913 3.697319e-11 4.649975e-10 1.628955e-10
## GO:0050670 167/11248 199/17913 3.814412e-11 4.787586e-10 1.677162e-10
## GO:0071560 192/11248 233/17913 3.842846e-11 4.813589e-10 1.686271e-10
## GO:0045927 216/11248 266/17913 3.858480e-11 4.823486e-10 1.689738e-10
## GO:0007093 128/11248 147/17913 3.936639e-11 4.911351e-10 1.720519e-10
## GO:0031330 200/11248 244/17913 3.952076e-11 4.920768e-10 1.723817e-10
## GO:0046031 108/11248 121/17913 4.227171e-11 5.252807e-10 1.840136e-10
## GO:0071695 134/11248 155/17913 4.308993e-11 5.343837e-10 1.872025e-10
## GO:1901796 152/11248 179/17913 4.467877e-11 5.529884e-10 1.937200e-10
## GO:0072593 218/11248 269/17913 4.539615e-11 5.607548e-10 1.964407e-10
## GO:0048562 223/11248 276/17913 4.785119e-11 5.899125e-10 2.066550e-10
## GO:1903706 359/11248 468/17913 4.798507e-11 5.903962e-10 2.068245e-10
## GO:0046887 111/11248 125/17913 4.900417e-11 6.017481e-10 2.108012e-10
## GO:0030099 319/11248 411/17913 5.013534e-11 6.144288e-10 2.152434e-10
## GO:1902850 104/11248 116/17913 5.103196e-11 6.241909e-10 2.186633e-10
## GO:0006289 93/11248 102/17913 5.397978e-11 6.589547e-10 2.308415e-10
## GO:0030518 114/11248 129/17913 5.553108e-11 6.765681e-10 2.370118e-10
## GO:0006694 160/11248 190/17913 5.578682e-11 6.783590e-10 2.376391e-10
## GO:0019079 107/11248 120/17913 6.039152e-11 7.329228e-10 2.567536e-10
## GO:0021543 142/11248 166/17913 6.251139e-11 7.571768e-10 2.652502e-10
## GO:0070371 232/11248 289/17913 6.659235e-11 8.050447e-10 2.820190e-10
## GO:0032869 165/11248 197/17913 6.894906e-11 8.319231e-10 2.914349e-10
## GO:0030330 96/11248 106/17913 6.992473e-11 8.404440e-10 2.944199e-10
## GO:0043279 96/11248 106/17913 6.992473e-11 8.404440e-10 2.944199e-10
## GO:0035637 162/11248 193/17913 7.222037e-11 8.663667e-10 3.035010e-10
## GO:0060348 159/11248 189/17913 7.529254e-11 9.014872e-10 3.158042e-10
## GO:1900542 113/11248 128/17913 7.856631e-11 9.388824e-10 3.289043e-10
## GO:0070498 92/11248 101/17913 7.873574e-11 9.391081e-10 3.289834e-10
## GO:1905475 153/11248 181/17913 8.057524e-11 9.592144e-10 3.360269e-10
## GO:0048705 170/11248 204/17913 8.295968e-11 9.857191e-10 3.453119e-10
## GO:0060401 135/11248 157/17913 8.436157e-11 1.000471e-09 3.504795e-10
## GO:0046328 144/11248 169/17913 8.526470e-11 1.006922e-09 3.527395e-10
## GO:0050796 144/11248 169/17913 8.526470e-11 1.006922e-09 3.527395e-10
## GO:0006475 138/11248 161/17913 8.538980e-11 1.006922e-09 3.527395e-10
## GO:0006140 116/11248 132/17913 8.687155e-11 1.022462e-09 3.581834e-10
## GO:0010811 99/11248 110/17913 8.711094e-11 1.023349e-09 3.584940e-10
## GO:0005996 223/11248 277/17913 9.313430e-11 1.092052e-09 3.825619e-10
## GO:0072659 194/11248 237/17913 9.794528e-11 1.146309e-09 4.015689e-10
## GO:0001508 109/11248 123/17913 9.892324e-11 1.155587e-09 4.048190e-10
## GO:0042752 102/11248 114/17913 1.049638e-10 1.223859e-09 4.287357e-10
## GO:0006110 71/11248 75/17913 1.073637e-10 1.247178e-09 4.369048e-10
## GO:1900046 71/11248 75/17913 1.073637e-10 1.247178e-09 4.369048e-10
## GO:0009746 163/11248 195/17913 1.241476e-10 1.439466e-09 5.042662e-10
## GO:1900371 98/11248 109/17913 1.254603e-10 1.451987e-09 5.086526e-10
## GO:0035967 118/11248 135/17913 1.322384e-10 1.526993e-09 5.349280e-10
## GO:0051196 83/11248 90/17913 1.324308e-10 1.526993e-09 5.349280e-10
## GO:0007517 312/11248 403/17913 1.385865e-10 1.593270e-09 5.581458e-10
## GO:0071216 171/11248 206/17913 1.386896e-10 1.593270e-09 5.581458e-10
## GO:0042552 108/11248 122/17913 1.403359e-10 1.608973e-09 5.636469e-10
## GO:0051258 190/11248 232/17913 1.405723e-10 1.608973e-09 5.636469e-10
## GO:0051384 121/11248 139/17913 1.408616e-10 1.609331e-09 5.637724e-10
## GO:0007005 356/11248 466/17913 1.439876e-10 1.642037e-09 5.752298e-10
## GO:0098781 94/11248 104/17913 1.466867e-10 1.669766e-09 5.849435e-10
## GO:0043491 216/11248 268/17913 1.499115e-10 1.703366e-09 5.967141e-10
## GO:0009142 148/11248 175/17913 1.522566e-10 1.726867e-09 6.049469e-10
## GO:1903311 221/11248 275/17913 1.552151e-10 1.757227e-09 6.155823e-10
## GO:0030193 70/11248 74/17913 1.624273e-10 1.835546e-09 6.430188e-10
## GO:0031099 162/11248 194/17913 1.663406e-10 1.876371e-09 6.573202e-10
## GO:0001952 104/11248 117/17913 1.750413e-10 1.967401e-09 6.892097e-10
## GO:0034605 104/11248 117/17913 1.750413e-10 1.967401e-09 6.892097e-10
## GO:0007229 86/11248 94/17913 1.842195e-10 2.063830e-09 7.229899e-10
## GO:0051495 170/11248 205/17913 1.845621e-10 2.063830e-09 7.229899e-10
## GO:0051607 189/11248 231/17913 1.846132e-10 2.063830e-09 7.229899e-10
## GO:0042446 78/11248 84/17913 1.970888e-10 2.192603e-09 7.681010e-10
## GO:0043470 78/11248 84/17913 1.970888e-10 2.192603e-09 7.681010e-10
## GO:0045665 167/11248 201/17913 1.971866e-10 2.192603e-09 7.681010e-10
## GO:0052547 308/11248 398/17913 1.981965e-10 2.199911e-09 7.706612e-10
## GO:1901990 329/11248 428/17913 2.007752e-10 2.224575e-09 7.793014e-10
## GO:0048524 93/11248 103/17913 2.121411e-10 2.346340e-09 8.219575e-10
## GO:0007188 138/11248 162/17913 2.191894e-10 2.420006e-09 8.477637e-10
## GO:0043488 135/11248 158/17913 2.204182e-10 2.429273e-09 8.510101e-10
## GO:0051588 113/11248 129/17913 2.412526e-10 2.654204e-09 9.298068e-10
## GO:0000077 116/11248 133/17913 2.587961e-10 2.828650e-09 9.909176e-10
## GO:0009135 116/11248 133/17913 2.587961e-10 2.828650e-09 9.909176e-10
## GO:0009179 116/11248 133/17913 2.587961e-10 2.828650e-09 9.909176e-10
## GO:1905330 152/11248 181/17913 2.589226e-10 2.828650e-09 9.909176e-10
## GO:0006631 266/11248 339/17913 2.695107e-10 2.939175e-09 1.029636e-09
## GO:0061572 119/11248 137/17913 2.734729e-10 2.977180e-09 1.042950e-09
## GO:0042590 73/11248 78/17913 2.794438e-10 3.033194e-09 1.062572e-09
## GO:0030100 211/11248 262/17913 2.795906e-10 3.033194e-09 1.062572e-09
## GO:0003014 106/11248 120/17913 2.815459e-10 3.049103e-09 1.068146e-09
## GO:0031570 122/11248 141/17913 2.851168e-10 3.082424e-09 1.079818e-09
## GO:0002456 81/11248 88/17913 2.877996e-10 3.106045e-09 1.088093e-09
## GO:0002718 77/11248 83/17913 2.926241e-10 3.147222e-09 1.102518e-09
## GO:0060218 77/11248 83/17913 2.926241e-10 3.147222e-09 1.102518e-09
## GO:0048592 125/11248 145/17913 2.936771e-10 3.147694e-09 1.102684e-09
## GO:0060402 125/11248 145/17913 2.936771e-10 3.147694e-09 1.102684e-09
## GO:0006986 137/11248 161/17913 2.991609e-10 3.195932e-09 1.119582e-09
## GO:0007269 128/11248 149/17913 2.992024e-10 3.195932e-09 1.119582e-09
## GO:0032922 59/11248 61/17913 3.038679e-10 3.240218e-09 1.135096e-09
## GO:0010952 151/11248 180/17913 3.484863e-10 3.709655e-09 1.299547e-09
## GO:0032886 165/11248 199/17913 3.494527e-10 3.713605e-09 1.300930e-09
## GO:0048565 115/11248 132/17913 3.614598e-10 3.828160e-09 1.341061e-09
## GO:0060048 115/11248 132/17913 3.614598e-10 3.828160e-09 1.341061e-09
## GO:1902036 68/11248 72/17913 3.709115e-10 3.921603e-09 1.373795e-09
## GO:0006473 162/11248 195/17913 3.734700e-10 3.941973e-09 1.380931e-09
## GO:0051017 118/11248 136/17913 3.804307e-10 4.008660e-09 1.404292e-09
## GO:0072073 121/11248 140/17913 3.951254e-10 4.156480e-09 1.456076e-09
## GO:0018394 139/11248 164/17913 4.002353e-10 4.203145e-09 1.472423e-09
## GO:0010212 124/11248 144/17913 4.055255e-10 4.251543e-09 1.489378e-09
## GO:0007389 314/11248 408/17913 4.091142e-10 4.281971e-09 1.500037e-09
## GO:0008277 127/11248 148/17913 4.117442e-10 4.302279e-09 1.507152e-09
## GO:0018393 133/11248 156/17913 4.125925e-10 4.303933e-09 1.507731e-09
## GO:0030811 72/11248 77/17913 4.180771e-10 4.339376e-09 1.520147e-09
## GO:0061418 72/11248 77/17913 4.180771e-10 4.339376e-09 1.520147e-09
## GO:0071260 72/11248 77/17913 4.180771e-10 4.339376e-09 1.520147e-09
## GO:1901987 353/11248 464/17913 4.210288e-10 4.362753e-09 1.528337e-09
## GO:0021537 199/11248 246/17913 4.294935e-10 4.443086e-09 1.556478e-09
## GO:0006970 76/11248 82/17913 4.340721e-10 4.483017e-09 1.570467e-09
## GO:0030808 98/11248 110/17913 4.386465e-10 4.515309e-09 1.581779e-09
## GO:1903578 98/11248 110/17913 4.386465e-10 4.515309e-09 1.581779e-09
## GO:0071219 153/11248 183/17913 4.455734e-10 4.579056e-09 1.604111e-09
## GO:0051056 249/11248 316/17913 4.686784e-10 4.799728e-09 1.681415e-09
## GO:1990868 58/11248 60/17913 4.693546e-10 4.799728e-09 1.681415e-09
## GO:1990869 58/11248 60/17913 4.693546e-10 4.799728e-09 1.681415e-09
## GO:0016051 161/11248 194/17913 4.973703e-10 5.077898e-09 1.778862e-09
## GO:0046939 114/11248 131/17913 5.042984e-10 5.140218e-09 1.800694e-09
## GO:0009185 117/11248 135/17913 5.286414e-10 5.370790e-09 1.881467e-09
## GO:2001056 117/11248 135/17913 5.286414e-10 5.370790e-09 1.881467e-09
## GO:0009749 158/11248 190/17913 5.306787e-10 5.382721e-09 1.885646e-09
## GO:0034765 345/11248 453/17913 5.321455e-10 5.388837e-09 1.887789e-09
## GO:0048588 177/11248 216/17913 5.457703e-10 5.517852e-09 1.932985e-09
## GO:0050777 123/11248 143/17913 5.593594e-10 5.646090e-09 1.977908e-09
## GO:0043280 104/11248 118/17913 5.624257e-10 5.667870e-09 1.985538e-09
## GO:0016573 129/11248 151/17913 5.672538e-10 5.698114e-09 1.996133e-09
## GO:2001236 129/11248 151/17913 5.672538e-10 5.698114e-09 1.996133e-09
## GO:0002573 166/11248 201/17913 5.730456e-10 5.747040e-09 2.013273e-09
## GO:0061013 149/11248 178/17913 6.292839e-10 6.300920e-09 2.207305e-09
## GO:0002690 75/11248 81/17913 6.432919e-10 6.420568e-09 2.249219e-09
## GO:0014068 75/11248 81/17913 6.432919e-10 6.420568e-09 2.249219e-09
## GO:0006403 171/11248 208/17913 6.468905e-10 6.446171e-09 2.258189e-09
## GO:0030010 110/11248 126/17913 6.635527e-10 6.591149e-09 2.308977e-09
## GO:0060359 110/11248 126/17913 6.635527e-10 6.591149e-09 2.308977e-09
## GO:0019935 140/11248 166/17913 7.148454e-10 7.089358e-09 2.483506e-09
## GO:0038127 119/11248 138/17913 7.563542e-10 7.489107e-09 2.623544e-09
## GO:1901605 165/11248 200/17913 7.587376e-10 7.500801e-09 2.627641e-09
## GO:0099643 128/11248 150/17913 7.763806e-10 7.663074e-09 2.684487e-09
## GO:0015849 232/11248 293/17913 7.956231e-10 7.828229e-09 2.742344e-09
## GO:0046942 232/11248 293/17913 7.956231e-10 7.828229e-09 2.742344e-09
## GO:0034333 82/11248 90/17913 8.399125e-10 8.225077e-09 2.881366e-09
## GO:1901888 82/11248 90/17913 8.399125e-10 8.225077e-09 2.881366e-09
## GO:2001169 82/11248 90/17913 8.399125e-10 8.225077e-09 2.881366e-09
## GO:0043112 148/11248 177/17913 8.442698e-10 8.254788e-09 2.891774e-09
## GO:0030258 159/11248 192/17913 8.793661e-10 8.571072e-09 3.002572e-09
## GO:0045732 159/11248 192/17913 8.793661e-10 8.571072e-09 3.002572e-09
## GO:0031532 78/11248 85/17913 9.153961e-10 8.908332e-09 3.120720e-09
## GO:2001252 142/11248 169/17913 9.285724e-10 9.022484e-09 3.160709e-09
## GO:0002479 70/11248 75/17913 9.333182e-10 9.040433e-09 3.166997e-09
## GO:0031100 70/11248 75/17913 9.333182e-10 9.040433e-09 3.166997e-09
## GO:0034614 139/11248 165/17913 9.661219e-10 9.343672e-09 3.273226e-09
## GO:0006165 112/11248 129/17913 9.783399e-10 9.447189e-09 3.309489e-09
## GO:1903510 99/11248 112/17913 1.009831e-09 9.736204e-09 3.410735e-09
## GO:0070372 216/11248 271/17913 1.024680e-09 9.864127e-09 3.455549e-09
## GO:0072525 124/11248 145/17913 1.065964e-09 1.024573e-08 3.589231e-09
## GO:0032526 92/11248 103/17913 1.095596e-09 1.051435e-08 3.683331e-09
## GO:0030521 56/11248 58/17913 1.117864e-09 1.069514e-08 3.746666e-09
## GO:0032233 56/11248 58/17913 1.117864e-09 1.069514e-08 3.746666e-09
## GO:0071222 147/11248 176/17913 1.131475e-09 1.079226e-08 3.780688e-09
## GO:1901136 147/11248 176/17913 1.131475e-09 1.079226e-08 3.780688e-09
## GO:0006888 144/11248 172/17913 1.192379e-09 1.133851e-08 3.972046e-09
## GO:0051783 144/11248 172/17913 1.192379e-09 1.133851e-08 3.972046e-09
## GO:0051101 105/11248 120/17913 1.214360e-09 1.152995e-08 4.039110e-09
## GO:0001933 318/11248 416/17913 1.226216e-09 1.162483e-08 4.072347e-09
## GO:0071466 138/11248 164/17913 1.304279e-09 1.234612e-08 4.325026e-09
## GO:1903050 163/11248 198/17913 1.325970e-09 1.253242e-08 4.390292e-09
## GO:0031503 192/11248 238/17913 1.348991e-09 1.273072e-08 4.459757e-09
## GO:0009308 111/11248 128/17913 1.360346e-09 1.281848e-08 4.490504e-09
## GO:0042593 184/11248 227/17913 1.425294e-09 1.341023e-08 4.697801e-09
## GO:0006644 308/11248 402/17913 1.441437e-09 1.354169e-08 4.743853e-09
## GO:0070098 50/11248 51/17913 1.483204e-09 1.391312e-08 4.873972e-09
## GO:0051260 268/11248 345/17913 1.504176e-09 1.408866e-08 4.935466e-09
## GO:0032092 84/11248 93/17913 1.556637e-09 1.453234e-08 5.090893e-09
## GO:0045621 84/11248 93/17913 1.556637e-09 1.453234e-08 5.090893e-09
## GO:0048285 303/11248 395/17913 1.558534e-09 1.453234e-08 5.090893e-09
## GO:0070252 101/11248 115/17913 1.574724e-09 1.466138e-08 5.136099e-09
## GO:2001234 181/11248 223/17913 1.577455e-09 1.466493e-08 5.137339e-09
## GO:0030111 265/11248 341/17913 1.726534e-09 1.602696e-08 5.614480e-09
## GO:0043487 137/11248 163/17913 1.758821e-09 1.630241e-08 5.710974e-09
## GO:0043200 94/11248 106/17913 1.801626e-09 1.667439e-08 5.841285e-09
## GO:0034620 107/11248 123/17913 1.806703e-09 1.669661e-08 5.849068e-09
## GO:0042698 64/11248 68/17913 1.915455e-09 1.767546e-08 6.191974e-09
## GO:1902652 125/11248 147/17913 1.977086e-09 1.821723e-08 6.381763e-09
## GO:0055123 122/11248 143/17913 1.998443e-09 1.838686e-08 6.441186e-09
## GO:0050773 119/11248 139/17913 2.002131e-09 1.839366e-08 6.443568e-09
## GO:0042594 145/11248 174/17913 2.025523e-09 1.858120e-08 6.509267e-09
## GO:0006283 68/11248 73/17913 2.075882e-09 1.901520e-08 6.661306e-09
## GO:0048771 142/11248 170/17913 2.144465e-09 1.961462e-08 6.871292e-09
## GO:1902905 153/11248 185/17913 2.209781e-09 2.018245e-08 7.070208e-09
## GO:0046660 100/11248 114/17913 2.214359e-09 2.019470e-08 7.074500e-09
## GO:0043687 278/11248 360/17913 2.231061e-09 2.031731e-08 7.117453e-09
## GO:0019233 90/11248 101/17913 2.236429e-09 2.033651e-08 7.124179e-09
## GO:0052548 285/11248 370/17913 2.242099e-09 2.035839e-08 7.131845e-09
## GO:0071897 158/11248 192/17913 2.506005e-09 2.272160e-08 7.959711e-09
## GO:0031214 130/11248 154/17913 2.559732e-09 2.317505e-08 8.118562e-09
## GO:0002819 127/11248 150/17913 2.635317e-09 2.375593e-08 8.322053e-09
## GO:0007088 127/11248 150/17913 2.635317e-09 2.375593e-08 8.322053e-09
## GO:0022406 127/11248 150/17913 2.635317e-09 2.375593e-08 8.322053e-09
## GO:0043524 124/11248 146/17913 2.693642e-09 2.424666e-08 8.493963e-09
## GO:0034341 144/11248 173/17913 2.705546e-09 2.428373e-08 8.506948e-09
## GO:0051897 144/11248 173/17913 2.705546e-09 2.428373e-08 8.506948e-09
## GO:0019722 155/11248 188/17913 2.713816e-09 2.432296e-08 8.520691e-09
## GO:0019359 121/11248 142/17913 2.731540e-09 2.437675e-08 8.539534e-09
## GO:0019363 121/11248 142/17913 2.731540e-09 2.437675e-08 8.539534e-09
## GO:0072006 121/11248 142/17913 2.731540e-09 2.437675e-08 8.539534e-09
## GO:0033500 184/11248 228/17913 2.805302e-09 2.499925e-08 8.757605e-09
## GO:0042737 96/11248 109/17913 2.851371e-09 2.537354e-08 8.888725e-09
## GO:1902275 138/11248 165/17913 3.032635e-09 2.694812e-08 9.440322e-09
## GO:0051651 67/11248 72/17913 3.091454e-09 2.743171e-08 9.609730e-09
## GO:0003002 248/11248 318/17913 3.139567e-09 2.781906e-08 9.745427e-09
## GO:0097530 89/11248 100/17913 3.189713e-09 2.822330e-08 9.887037e-09
## GO:0002705 102/11248 117/17913 3.328140e-09 2.940643e-08 1.030151e-08
## GO:0071346 129/11248 153/17913 3.462608e-09 3.055127e-08 1.070256e-08
## GO:0044106 105/11248 121/17913 3.502258e-09 3.085746e-08 1.080982e-08
## GO:0050866 154/11248 187/17913 3.587100e-09 3.156041e-08 1.105607e-08
## GO:0030534 117/11248 137/17913 3.761493e-09 3.303797e-08 1.157369e-08
## GO:0032392 78/11248 86/17913 3.765629e-09 3.303797e-08 1.157369e-08
## GO:0007052 85/11248 95/17913 3.907061e-09 3.423069e-08 1.199151e-08
## GO:0070588 230/11248 293/17913 4.048176e-09 3.541728e-08 1.240719e-08
## GO:0043087 312/11248 410/17913 4.149445e-09 3.625243e-08 1.269976e-08
## GO:0051236 148/11248 179/17913 4.183206e-09 3.649628e-08 1.278518e-08
## GO:0007045 74/11248 81/17913 4.220608e-09 3.666873e-08 1.284560e-08
## GO:0046849 74/11248 81/17913 4.220608e-09 3.666873e-08 1.284560e-08
## GO:0048041 74/11248 81/17913 4.220608e-09 3.666873e-08 1.284560e-08
## GO:0021987 98/11248 112/17913 4.362932e-09 3.779996e-08 1.324188e-08
## GO:0030968 98/11248 112/17913 4.362932e-09 3.779996e-08 1.324188e-08
## GO:0015837 70/11248 76/17913 4.531069e-09 3.920223e-08 1.373312e-08
## GO:0042310 66/11248 71/17913 4.599285e-09 3.962754e-08 1.388211e-08
## GO:0051952 66/11248 71/17913 4.599285e-09 3.962754e-08 1.388211e-08
## GO:0070664 66/11248 71/17913 4.599285e-09 3.962754e-08 1.388211e-08
## GO:0061387 81/11248 90/17913 4.682543e-09 4.028924e-08 1.411392e-08
## GO:0051048 182/11248 226/17913 4.695005e-09 4.034083e-08 1.413199e-08
## GO:0070374 153/11248 186/17913 4.736095e-09 4.063791e-08 1.423606e-08
## GO:0034101 104/11248 120/17913 4.867319e-09 4.170650e-08 1.461040e-08
## GO:0042542 122/11248 144/17913 4.982214e-09 4.257404e-08 1.491431e-08
## GO:0043467 122/11248 144/17913 4.982214e-09 4.257404e-08 1.491431e-08
## GO:0046578 174/11248 215/17913 4.999126e-09 4.266012e-08 1.494447e-08
## GO:0009952 150/11248 182/17913 5.132605e-09 4.373933e-08 1.532253e-08
## GO:1903305 116/11248 136/17913 5.146476e-09 4.379771e-08 1.534298e-08
## GO:0051250 113/11248 132/17913 5.160692e-09 4.385885e-08 1.536440e-08
## GO:0002695 136/11248 163/17913 5.442967e-09 4.618600e-08 1.617964e-08
## GO:0045185 77/11248 85/17913 5.464134e-09 4.618600e-08 1.617964e-08
## GO:0070542 77/11248 85/17913 5.464134e-09 4.618600e-08 1.617964e-08
## GO:1901532 77/11248 85/17913 5.464134e-09 4.618600e-08 1.617964e-08
## GO:0060828 209/11248 264/17913 5.615962e-09 4.740510e-08 1.660670e-08
## GO:0022037 94/11248 107/17913 5.662399e-09 4.773249e-08 1.672139e-08
## GO:0099003 144/11248 174/17913 5.969652e-09 5.025464e-08 1.760494e-08
## GO:0033238 73/11248 80/17913 6.167761e-09 5.185242e-08 1.816467e-08
## GO:0031334 191/11248 239/17913 6.348306e-09 5.329843e-08 1.867122e-08
## GO:0007249 201/11248 253/17913 6.410455e-09 5.374787e-08 1.882867e-08
## GO:0010822 100/11248 115/17913 6.478595e-09 5.424628e-08 1.900327e-08
## GO:0014031 61/11248 65/17913 6.501518e-09 5.436524e-08 1.904494e-08
## GO:0007051 124/11248 147/17913 6.556811e-09 5.460799e-08 1.912998e-08
## GO:0071236 124/11248 147/17913 6.556811e-09 5.460799e-08 1.912998e-08
## GO:1903900 124/11248 147/17913 6.556811e-09 5.460799e-08 1.912998e-08
## GO:0008203 121/11248 143/17913 6.763573e-09 5.625489e-08 1.970692e-08
## GO:0007200 65/11248 70/17913 6.835550e-09 5.677784e-08 1.989011e-08
## GO:0010977 115/11248 135/17913 7.032773e-09 5.833834e-08 2.043678e-08
## GO:0051100 135/11248 162/17913 7.279058e-09 6.022117e-08 2.109636e-08
## GO:0099504 135/11248 162/17913 7.279058e-09 6.022117e-08 2.109636e-08
## GO:0090150 225/11248 287/17913 7.330669e-09 6.056783e-08 2.121780e-08
## GO:0034764 162/11248 199/17913 7.480666e-09 6.172539e-08 2.162331e-08
## GO:0002244 132/11248 158/17913 7.708180e-09 6.351866e-08 2.225152e-08
## GO:0071621 76/11248 84/17913 7.919467e-09 6.517366e-08 2.283129e-08
## GO:0021761 93/11248 106/17913 7.964672e-09 6.545932e-08 2.293136e-08
## GO:0002369 40/11248 40/17913 8.036228e-09 6.596052e-08 2.310694e-08
## GO:0001818 227/11248 290/17913 8.069450e-09 6.614616e-08 2.317197e-08
## GO:0000280 274/11248 357/17913 8.556804e-09 7.004901e-08 2.453920e-08
## GO:1903531 164/11248 202/17913 8.840750e-09 7.227864e-08 2.532027e-08
## GO:0050818 72/11248 79/17913 9.002879e-09 7.350780e-08 2.575086e-08
## GO:0030038 86/11248 97/17913 9.187446e-09 7.481892e-08 2.621017e-08
## GO:0043149 86/11248 97/17913 9.187446e-09 7.481892e-08 2.621017e-08
## GO:0055067 105/11248 122/17913 9.587877e-09 7.797806e-08 2.731686e-08
## GO:0051668 108/11248 126/17913 9.694178e-09 7.864520e-08 2.755057e-08
## GO:0050657 145/11248 176/17913 9.707727e-09 7.864520e-08 2.755057e-08
## GO:0050658 145/11248 176/17913 9.707727e-09 7.864520e-08 2.755057e-08
## GO:0046782 60/11248 64/17913 9.752276e-09 7.890363e-08 2.764110e-08
## GO:0033077 64/11248 69/17913 1.014846e-08 8.200270e-08 2.872675e-08
## GO:0050673 321/11248 425/17913 1.022320e-08 8.249975e-08 2.890088e-08
## GO:0030203 131/11248 157/17913 1.032162e-08 8.318638e-08 2.914141e-08
## GO:0009132 128/11248 153/17913 1.090334e-08 8.776136e-08 3.074409e-08
## GO:0045582 75/11248 83/17913 1.146435e-08 9.215801e-08 3.228431e-08
## GO:2001020 163/11248 201/17913 1.151054e-08 9.241022e-08 3.237266e-08
## GO:1904062 242/11248 312/17913 1.191333e-08 9.552104e-08 3.346243e-08
## GO:0046165 122/11248 145/17913 1.196617e-08 9.582151e-08 3.356768e-08
## GO:0006937 136/11248 164/17913 1.213498e-08 9.704871e-08 3.399759e-08
## GO:0030183 98/11248 113/17913 1.254803e-08 1.002236e-07 3.510980e-08
## GO:0001504 39/11248 39/17913 1.281466e-08 1.022223e-07 3.580998e-08
## GO:0010771 71/11248 78/17913 1.312575e-08 1.045702e-07 3.663247e-08
## GO:0070585 107/11248 125/17913 1.331141e-08 1.059140e-07 3.710324e-08
## GO:0001892 78/11248 87/17913 1.393600e-08 1.107423e-07 3.879467e-08
## GO:0019748 59/11248 63/17913 1.461387e-08 1.159813e-07 4.062996e-08
## GO:0033209 138/11248 167/17913 1.499658e-08 1.187166e-07 4.158816e-08
## GO:0061136 138/11248 167/17913 1.499658e-08 1.187166e-07 4.158816e-08
## GO:0016311 343/11248 458/17913 1.641369e-08 1.297701e-07 4.546036e-08
## GO:0030282 94/11248 108/17913 1.668581e-08 1.317545e-07 4.615554e-08
## GO:0002706 115/11248 136/17913 1.736249e-08 1.369244e-07 4.796663e-08
## GO:0030218 97/11248 112/17913 1.742929e-08 1.372777e-07 4.809039e-08
## GO:0008286 109/11248 128/17913 1.811718e-08 1.425157e-07 4.992535e-08
## GO:1905477 103/11248 120/17913 1.819963e-08 1.429840e-07 5.008940e-08
## GO:0030177 140/11248 170/17913 1.836245e-08 1.440817e-07 5.047396e-08
## GO:0016125 129/11248 155/17913 1.843895e-08 1.445002e-07 5.062055e-08
## GO:0016073 70/11248 77/17913 1.911363e-08 1.495995e-07 5.240691e-08
## GO:0046686 54/11248 57/17913 1.943886e-08 1.518198e-07 5.318470e-08
## GO:0030278 161/11248 199/17913 1.944598e-08 1.518198e-07 5.318470e-08
## GO:0034446 77/11248 86/17913 1.999579e-08 1.559172e-07 5.462008e-08
## GO:0010876 279/11248 366/17913 2.035818e-08 1.584318e-07 5.550100e-08
## GO:0072163 87/11248 99/17913 2.039448e-08 1.584318e-07 5.550100e-08
## GO:0072164 87/11248 99/17913 2.039448e-08 1.584318e-07 5.550100e-08
## GO:0050772 66/11248 72/17913 2.118542e-08 1.641673e-07 5.751021e-08
## GO:0072347 66/11248 72/17913 2.118542e-08 1.641673e-07 5.751021e-08
## GO:0051896 191/11248 241/17913 2.162725e-08 1.671757e-07 5.856410e-08
## GO:0097237 191/11248 241/17913 2.162725e-08 1.671757e-07 5.856410e-08
## GO:0061041 120/11248 143/17913 2.172867e-08 1.677518e-07 5.876591e-08
## GO:0001823 90/11248 103/17913 2.199500e-08 1.695980e-07 5.941268e-08
## GO:1903034 142/11248 173/17913 2.228989e-08 1.716597e-07 6.013492e-08
## GO:0001954 49/11248 51/17913 2.284413e-08 1.752788e-07 6.140275e-08
## GO:0051496 49/11248 51/17913 2.284413e-08 1.752788e-07 6.140275e-08
## GO:0097366 49/11248 51/17913 2.284413e-08 1.752788e-07 6.140275e-08
## GO:0099173 131/11248 158/17913 2.300164e-08 1.762706e-07 6.175017e-08
## GO:0015696 73/11248 81/17913 2.393554e-08 1.832023e-07 6.417847e-08
## GO:0021782 96/11248 111/17913 2.417733e-08 1.848262e-07 6.474733e-08
## GO:0030326 105/11248 123/17913 2.500072e-08 1.906064e-07 6.677224e-08
## GO:0035113 105/11248 123/17913 2.500072e-08 1.906064e-07 6.677224e-08
## GO:0051928 102/11248 119/17913 2.502511e-08 1.906064e-07 6.677224e-08
## GO:0032231 83/11248 94/17913 2.616324e-08 1.990321e-07 6.972386e-08
## GO:0051168 144/11248 176/17913 2.683833e-08 2.039190e-07 7.143584e-08
## GO:2000377 157/11248 194/17913 2.803770e-08 2.127727e-07 7.453742e-08
## GO:0015980 207/11248 264/17913 2.839436e-08 2.150119e-07 7.532182e-08
## GO:0006022 133/11248 161/17913 2.840170e-08 2.150119e-07 7.532182e-08
## GO:0001657 86/11248 98/17913 2.869689e-08 2.167206e-07 7.592040e-08
## GO:0021549 86/11248 98/17913 2.869689e-08 2.167206e-07 7.592040e-08
## GO:0006413 149/11248 183/17913 2.913794e-08 2.197854e-07 7.699404e-08
## GO:0033555 65/11248 71/17913 3.106176e-08 2.340136e-07 8.197840e-08
## GO:0044272 154/11248 190/17913 3.110054e-08 2.340231e-07 8.198174e-08
## GO:0006354 92/11248 106/17913 3.237615e-08 2.433282e-07 8.524146e-08
## GO:0002221 159/11248 197/17913 3.270076e-08 2.452767e-07 8.592403e-08
## GO:0014032 57/11248 61/17913 3.271404e-08 2.452767e-07 8.592403e-08
## GO:0006766 110/11248 130/17913 3.287966e-08 2.462224e-07 8.625535e-08
## GO:0051289 79/11248 89/17913 3.305787e-08 2.472602e-07 8.661889e-08
## GO:0051193 98/11248 114/17913 3.414457e-08 2.550824e-07 8.935913e-08
## GO:0003151 72/11248 80/17913 3.451894e-08 2.575707e-07 9.023082e-08
## GO:0045619 135/11248 164/17913 3.473678e-08 2.588865e-07 9.069176e-08
## GO:0042129 124/11248 149/17913 3.498018e-08 2.603895e-07 9.121827e-08
## GO:0015893 143/11248 175/17913 3.521004e-08 2.617881e-07 9.170823e-08
## GO:0048010 82/11248 93/17913 3.698600e-08 2.746651e-07 9.621921e-08
## GO:0045807 118/11248 141/17913 3.925225e-08 2.908023e-07 1.018723e-07
## GO:0140056 118/11248 141/17913 3.925225e-08 2.908023e-07 1.018723e-07
## GO:1901991 186/11248 235/17913 3.964078e-08 2.933324e-07 1.027586e-07
## GO:0110053 181/11248 228/17913 4.000706e-08 2.956920e-07 1.035853e-07
## GO:0090100 75/11248 84/17913 4.100504e-08 3.027094e-07 1.060436e-07
## GO:0007369 145/11248 178/17913 4.194434e-08 3.089124e-07 1.082166e-07
## GO:0010565 145/11248 178/17913 4.194434e-08 3.089124e-07 1.082166e-07
## GO:0048675 88/11248 101/17913 4.300618e-08 3.163592e-07 1.108253e-07
## GO:0045165 188/11248 238/17913 4.431642e-08 3.256135e-07 1.140672e-07
## GO:0003229 52/11248 55/17913 4.450188e-08 3.262077e-07 1.142753e-07
## GO:0010332 52/11248 55/17913 4.450188e-08 3.262077e-07 1.142753e-07
## GO:0043122 178/11248 224/17913 4.526380e-08 3.314032e-07 1.160954e-07
## GO:0043547 259/11248 339/17913 4.551742e-08 3.328695e-07 1.166091e-07
## GO:2001251 106/11248 125/17913 4.583295e-08 3.347845e-07 1.172799e-07
## GO:1990138 123/11248 148/17913 4.666487e-08 3.403502e-07 1.192297e-07
## GO:0072655 103/11248 121/17913 4.670404e-08 3.403502e-07 1.192297e-07
## GO:0051817 97/11248 113/17913 4.702193e-08 3.422669e-07 1.199011e-07
## GO:0032945 60/11248 65/17913 4.876137e-08 3.536900e-07 1.239028e-07
## GO:0048864 60/11248 65/17913 4.876137e-08 3.536900e-07 1.239028e-07
## GO:0050672 60/11248 65/17913 4.876137e-08 3.536900e-07 1.239028e-07
## GO:0046824 56/11248 60/17913 4.886701e-08 3.540446e-07 1.240270e-07
## GO:0006869 254/11248 332/17913 4.939514e-08 3.574558e-07 1.252220e-07
## GO:0045834 120/11248 144/17913 4.969663e-08 3.585318e-07 1.255990e-07
## GO:0097756 71/11248 79/17913 4.971626e-08 3.585318e-07 1.255990e-07
## GO:1900034 71/11248 79/17913 4.971626e-08 3.585318e-07 1.255990e-07
## GO:0098801 36/11248 36/17913 5.194995e-08 3.742076e-07 1.310904e-07
## GO:0008630 81/11248 92/17913 5.221390e-08 3.756751e-07 1.316045e-07
## GO:0007259 117/11248 140/17913 5.265234e-08 3.783932e-07 1.325567e-07
## GO:0031345 136/11248 166/17913 5.538823e-08 3.975970e-07 1.392841e-07
## GO:0018958 84/11248 96/17913 5.658420e-08 4.057152e-07 1.421280e-07
## GO:0032984 230/11248 298/17913 5.795299e-08 4.150525e-07 1.453990e-07
## GO:0007179 149/11248 184/17913 5.829313e-08 4.170098e-07 1.460847e-07
## GO:1901988 199/11248 254/17913 5.866119e-08 4.191621e-07 1.468386e-07
## GO:0046545 87/11248 100/17913 6.001102e-08 4.283166e-07 1.500456e-07
## GO:0046330 105/11248 124/17913 6.228141e-08 4.440131e-07 1.555443e-07
## GO:0043543 184/11248 233/17913 6.385362e-08 4.547019e-07 1.592888e-07
## GO:0002220 99/11248 116/17913 6.453169e-08 4.590065e-07 1.607967e-07
## GO:0007422 63/11248 69/17913 6.652447e-08 4.726419e-07 1.655734e-07
## GO:0001738 116/11248 139/17913 7.053174e-08 4.999739e-07 1.751482e-07
## GO:0071322 116/11248 139/17913 7.053174e-08 4.999739e-07 1.751482e-07
## GO:0048736 143/11248 176/17913 7.148743e-08 5.045973e-07 1.767679e-07
## GO:0060173 143/11248 176/17913 7.148743e-08 5.045973e-07 1.767679e-07
## GO:0001570 70/11248 78/17913 7.150754e-08 5.045973e-07 1.767679e-07
## GO:0033143 70/11248 78/17913 7.150754e-08 5.045973e-07 1.767679e-07
## GO:0007588 59/11248 64/17913 7.198066e-08 5.073620e-07 1.777364e-07
## GO:0045123 55/11248 59/17913 7.291361e-08 5.133579e-07 1.798368e-07
## GO:0001649 176/11248 222/17913 7.348142e-08 5.161904e-07 1.808291e-07
## GO:0045444 176/11248 222/17913 7.348142e-08 5.161904e-07 1.808291e-07
## GO:0002822 113/11248 135/17913 7.452320e-08 5.223323e-07 1.829807e-07
## GO:0090263 113/11248 135/17913 7.452320e-08 5.223323e-07 1.829807e-07
## GO:0016050 217/11248 280/17913 7.556858e-08 5.290649e-07 1.853392e-07
## GO:0003231 110/11248 131/17913 7.826155e-08 5.473045e-07 1.917288e-07
## GO:0043123 140/11248 172/17913 7.891287e-08 5.512413e-07 1.931079e-07
## GO:0008585 83/11248 95/17913 7.928822e-08 5.526256e-07 1.935929e-07
## GO:0045069 83/11248 95/17913 7.928822e-08 5.526256e-07 1.935929e-07
## GO:0010950 132/11248 161/17913 7.954948e-08 5.538278e-07 1.940140e-07
## GO:0090068 219/11248 283/17913 8.176562e-08 5.686220e-07 1.991967e-07
## GO:0035107 121/11248 146/17913 8.271703e-08 5.739587e-07 2.010662e-07
## GO:0035108 121/11248 146/17913 8.271703e-08 5.739587e-07 2.010662e-07
## GO:0003208 66/11248 73/17913 8.486050e-08 5.881776e-07 2.060473e-07
## GO:0033135 101/11248 119/17913 8.676654e-08 6.007211e-07 2.104414e-07
## GO:0007173 98/11248 115/17913 8.824501e-08 6.102798e-07 2.137900e-07
## GO:0015672 353/11248 477/17913 9.282581e-08 6.412485e-07 2.246388e-07
## GO:0015931 175/11248 221/17913 9.346466e-08 6.449475e-07 2.259346e-07
## GO:0001894 170/11248 214/17913 9.420588e-08 6.488835e-07 2.273134e-07
## GO:0010675 115/11248 138/17913 9.435325e-08 6.488835e-07 2.273134e-07
## GO:0031056 115/11248 138/17913 9.435325e-08 6.488835e-07 2.273134e-07
## GO:0044773 76/11248 86/17913 9.445115e-08 6.488835e-07 2.273134e-07
## GO:0043901 147/11248 182/17913 9.820128e-08 6.739049e-07 2.360788e-07
## GO:0016236 211/11248 272/17913 9.972111e-08 6.835827e-07 2.394691e-07
## GO:0031644 112/11248 134/17913 9.998689e-08 6.846523e-07 2.398438e-07
## GO:0008306 69/11248 77/17913 1.027077e-07 7.025115e-07 2.461001e-07
## GO:0098727 131/11248 160/17913 1.045814e-07 7.145439e-07 2.503153e-07
## GO:0036498 58/11248 63/17913 1.061239e-07 7.242898e-07 2.537294e-07
## GO:0035567 120/11248 145/17913 1.099046e-07 7.492730e-07 2.624814e-07
## GO:0042476 106/11248 126/17913 1.102321e-07 7.498668e-07 2.626894e-07
## GO:0097553 106/11248 126/17913 1.102321e-07 7.498668e-07 2.626894e-07
## GO:0060996 82/11248 94/17913 1.109415e-07 7.530502e-07 2.638046e-07
## GO:0110020 82/11248 94/17913 1.109415e-07 7.530502e-07 2.638046e-07
## GO:0002697 328/11248 441/17913 1.128358e-07 7.650759e-07 2.680173e-07
## GO:1902115 149/11248 185/17913 1.140194e-07 7.722620e-07 2.705347e-07
## GO:0070304 128/11248 156/17913 1.142289e-07 7.728413e-07 2.707377e-07
## GO:0002377 85/11248 98/17913 1.163494e-07 7.863351e-07 2.754647e-07
## GO:0000184 100/11248 118/17913 1.180115e-07 7.958440e-07 2.787959e-07
## GO:0006997 100/11248 118/17913 1.180115e-07 7.958440e-07 2.787959e-07
## GO:1902930 72/11248 81/17913 1.191862e-07 8.028976e-07 2.812669e-07
## GO:0002065 91/11248 106/17913 1.216307e-07 8.175992e-07 2.864170e-07
## GO:2000278 91/11248 106/17913 1.216307e-07 8.175992e-07 2.864170e-07
## GO:0009301 65/11248 72/17913 1.227706e-07 8.243736e-07 2.887902e-07
## GO:0006611 133/11248 163/17913 1.250851e-07 8.381102e-07 2.936023e-07
## GO:2001242 133/11248 163/17913 1.250851e-07 8.381102e-07 2.936023e-07
## GO:0050663 181/11248 230/17913 1.294533e-07 8.664484e-07 3.035296e-07
## GO:0042254 161/11248 202/17913 1.358675e-07 9.084049e-07 3.182276e-07
## GO:0040014 61/11248 67/17913 1.417329e-07 9.445830e-07 3.309013e-07
## GO:0061180 61/11248 67/17913 1.417329e-07 9.445830e-07 3.309013e-07
## GO:1903391 61/11248 67/17913 1.417329e-07 9.445830e-07 3.309013e-07
## GO:0009100 278/11248 369/17913 1.468556e-07 9.775831e-07 3.424617e-07
## GO:0006890 68/11248 76/17913 1.473113e-07 9.775831e-07 3.424617e-07
## GO:0021954 68/11248 76/17913 1.473113e-07 9.775831e-07 3.424617e-07
## GO:0032508 68/11248 76/17913 1.473113e-07 9.775831e-07 3.424617e-07
## GO:0030307 135/11248 166/17913 1.484296e-07 9.839573e-07 3.446947e-07
## GO:0032606 105/11248 125/17913 1.486358e-07 9.842783e-07 3.448072e-07
## GO:0021915 127/11248 155/17913 1.502920e-07 9.931372e-07 3.479106e-07
## GO:0032874 127/11248 155/17913 1.502920e-07 9.931372e-07 3.479106e-07
## GO:0002886 49/11248 52/17913 1.529913e-07 1.007771e-06 3.530372e-07
## GO:0046148 49/11248 52/17913 1.529913e-07 1.007771e-06 3.530372e-07
## GO:0071320 49/11248 52/17913 1.529913e-07 1.007771e-06 3.530372e-07
## GO:0002702 81/11248 93/17913 1.550022e-07 1.018866e-06 3.569237e-07
## GO:0044070 81/11248 93/17913 1.550022e-07 1.018866e-06 3.569237e-07
## GO:0032623 57/11248 62/17913 1.562613e-07 1.026061e-06 3.594442e-07
## GO:0032507 53/11248 57/17913 1.617572e-07 1.058805e-06 3.709151e-07
## GO:0044786 53/11248 57/17913 1.617572e-07 1.058805e-06 3.709151e-07
## GO:0045576 53/11248 57/17913 1.617572e-07 1.058805e-06 3.709151e-07
## GO:0006470 239/11248 313/17913 1.623040e-07 1.061271e-06 3.717788e-07
## GO:0002223 96/11248 113/17913 1.643000e-07 1.072074e-06 3.755635e-07
## GO:0003279 96/11248 113/17913 1.643000e-07 1.072074e-06 3.755635e-07
## GO:0002504 87/11248 101/17913 1.656839e-07 1.078848e-06 3.779363e-07
## GO:1905269 87/11248 101/17913 1.656839e-07 1.078848e-06 3.779363e-07
## GO:0048593 93/11248 109/17913 1.667407e-07 1.084597e-06 3.799503e-07
## GO:0034470 225/11248 293/17913 1.674482e-07 1.088064e-06 3.811650e-07
## GO:0009267 113/11248 136/17913 1.681443e-07 1.090316e-06 3.819537e-07
## GO:0060041 113/11248 136/17913 1.681443e-07 1.090316e-06 3.819537e-07
## GO:0050886 71/11248 80/17913 1.696062e-07 1.098654e-06 3.848746e-07
## GO:0010256 275/11248 365/17913 1.699076e-07 1.099464e-06 3.851584e-07
## GO:0042795 64/11248 71/17913 1.773662e-07 1.146539e-06 4.016496e-07
## GO:0050715 110/11248 132/17913 1.792287e-07 1.157380e-06 4.054472e-07
## GO:0002285 129/11248 158/17913 1.800307e-07 1.160156e-06 4.064198e-07
## GO:0019827 129/11248 158/17913 1.800307e-07 1.160156e-06 4.064198e-07
## GO:0048639 147/11248 183/17913 1.900511e-07 1.223466e-06 4.285983e-07
## GO:0055078 44/11248 46/17913 1.927463e-07 1.239538e-06 4.342283e-07
## GO:0031058 77/11248 88/17913 2.044309e-07 1.313326e-06 4.600775e-07
## GO:0015850 179/11248 228/17913 2.061846e-07 1.323230e-06 4.635470e-07
## GO:0015844 60/11248 66/17913 2.064545e-07 1.323600e-06 4.636766e-07
## GO:0045580 115/11248 139/17913 2.084980e-07 1.335329e-06 4.677854e-07
## GO:0006919 67/11248 75/17913 2.109772e-07 1.349822e-06 4.728624e-07
## GO:0048738 174/11248 221/17913 2.123364e-07 1.357125e-06 4.754209e-07
## GO:0007219 144/11248 179/17913 2.126844e-07 1.357959e-06 4.757129e-07
## GO:2000736 98/11248 116/17913 2.173509e-07 1.386334e-06 4.856532e-07
## GO:0071156 92/11248 108/17913 2.279696e-07 1.452578e-06 5.088596e-07
## GO:0002495 86/11248 100/17913 2.286503e-07 1.455429e-06 5.098582e-07
## GO:0002709 56/11248 61/17913 2.297802e-07 1.458158e-06 5.108141e-07
## GO:0051893 56/11248 61/17913 2.297802e-07 1.458158e-06 5.108141e-07
## GO:0090109 56/11248 61/17913 2.297802e-07 1.458158e-06 5.108141e-07
## GO:0060485 200/11248 258/17913 2.344010e-07 1.485969e-06 5.205568e-07
## GO:0006839 176/11248 224/17913 2.352430e-07 1.489793e-06 5.218964e-07
## GO:0006368 70/11248 79/17913 2.409953e-07 1.524674e-06 5.341158e-07
## GO:0008654 195/11248 251/17913 2.480419e-07 1.567665e-06 5.491762e-07
## GO:0051492 73/11248 83/17913 2.663610e-07 1.681741e-06 5.891385e-07
## GO:0001736 103/11248 123/17913 2.690597e-07 1.693637e-06 5.933061e-07
## GO:0007164 103/11248 123/17913 2.690597e-07 1.693637e-06 5.933061e-07
## GO:0032479 103/11248 123/17913 2.690597e-07 1.693637e-06 5.933061e-07
## GO:0046486 288/11248 385/17913 2.738361e-07 1.721965e-06 6.032297e-07
## GO:0002279 43/11248 45/17913 2.944977e-07 1.846308e-06 6.467889e-07
## GO:0010463 43/11248 45/17913 2.944977e-07 1.846308e-06 6.467889e-07
## GO:0071675 43/11248 45/17913 2.944977e-07 1.846308e-06 6.467889e-07
## GO:0071300 59/11248 65/17913 3.003036e-07 1.878846e-06 6.581872e-07
## GO:0098739 59/11248 65/17913 3.003036e-07 1.878846e-06 6.581872e-07
## GO:0001656 79/11248 91/17913 3.011936e-07 1.878846e-06 6.581872e-07
## GO:0060333 79/11248 91/17913 3.011936e-07 1.878846e-06 6.581872e-07
## GO:1901655 79/11248 91/17913 3.011936e-07 1.878846e-06 6.581872e-07
## GO:0006650 229/11248 300/17913 3.064388e-07 1.909656e-06 6.689804e-07
## GO:0042133 119/11248 145/17913 3.102413e-07 1.931422e-06 6.766056e-07
## GO:0034440 82/11248 95/17913 3.106007e-07 1.931732e-06 6.767140e-07
## GO:0046794 55/11248 60/17913 3.374263e-07 2.096479e-06 7.344275e-07
## GO:0001764 124/11248 152/17913 3.394894e-07 2.107199e-06 7.381827e-07
## GO:1900047 47/11248 50/17913 3.465947e-07 2.149163e-06 7.528834e-07
## GO:0043583 167/11248 212/17913 3.482976e-07 2.157577e-06 7.558311e-07
## GO:0001885 51/11248 55/17913 3.570767e-07 2.207576e-06 7.733465e-07
## GO:0042306 51/11248 55/17913 3.570767e-07 2.207576e-06 7.733465e-07
## GO:0016072 152/11248 191/17913 3.620350e-07 2.236014e-06 7.833086e-07
## GO:0009411 113/11248 137/17913 3.663616e-07 2.260498e-06 7.918859e-07
## GO:0071479 62/11248 69/17913 3.685690e-07 2.271871e-06 7.958699e-07
## GO:0048814 72/11248 82/17913 3.751706e-07 2.310280e-06 8.093252e-07
## GO:0046631 110/11248 133/17913 3.957170e-07 2.434401e-06 8.528066e-07
## GO:0050707 159/11248 201/17913 4.041175e-07 2.483631e-06 8.700524e-07
## GO:0061337 118/11248 144/17913 4.083137e-07 2.506950e-06 8.782213e-07
## GO:0044774 78/11248 90/17913 4.188714e-07 2.569243e-06 9.000436e-07
## GO:0060191 81/11248 94/17913 4.295344e-07 2.632058e-06 9.220487e-07
## GO:0061045 65/11248 73/17913 4.307902e-07 2.637163e-06 9.238371e-07
## GO:0031623 87/11248 102/17913 4.313696e-07 2.638121e-06 9.241726e-07
## GO:0002027 84/11248 98/17913 4.334429e-07 2.648205e-06 9.277051e-07
## GO:0060135 58/11248 64/17913 4.361752e-07 2.662290e-06 9.326395e-07
## GO:0022408 136/11248 169/17913 4.436125e-07 2.705039e-06 9.476149e-07
## GO:0030850 42/11248 44/17913 4.495298e-07 2.735773e-06 9.583814e-07
## GO:0035850 42/11248 44/17913 4.495298e-07 2.735773e-06 9.583814e-07
## GO:0000956 156/11248 197/17913 4.586790e-07 2.788733e-06 9.769341e-07
## GO:0050856 37/11248 38/17913 4.820562e-07 2.928011e-06 1.025725e-06
## GO:0048706 98/11248 117/17913 5.117450e-07 3.102299e-06 1.086781e-06
## GO:1900180 98/11248 117/17913 5.117450e-07 3.102299e-06 1.086781e-06
## GO:0090257 194/11248 251/17913 5.177185e-07 3.135464e-06 1.098399e-06
## GO:0038061 143/11248 179/17913 5.198550e-07 3.138626e-06 1.099507e-06
## GO:0097164 153/11248 193/17913 5.201967e-07 3.138626e-06 1.099507e-06
## GO:0030195 46/11248 49/17913 5.207563e-07 3.138626e-06 1.099507e-06
## GO:0060395 46/11248 49/17913 5.207563e-07 3.138626e-06 1.099507e-06
## GO:2001238 46/11248 49/17913 5.207563e-07 3.138626e-06 1.099507e-06
## GO:0000070 109/11248 132/17913 5.248054e-07 3.159977e-06 1.106986e-06
## GO:1903557 71/11248 81/17913 5.275886e-07 3.173672e-06 1.111784e-06
## GO:0061005 50/11248 54/17913 5.294859e-07 3.179554e-06 1.113844e-06
## GO:0009060 61/11248 68/17913 5.300955e-07 3.179554e-06 1.113844e-06
## GO:0043574 61/11248 68/17913 5.300955e-07 3.179554e-06 1.113844e-06
## GO:0002724 31/11248 31/17913 5.350894e-07 3.203347e-06 1.122180e-06
## GO:2000758 31/11248 31/17913 5.350894e-07 3.203347e-06 1.122180e-06
## GO:0019933 117/11248 143/17913 5.366044e-07 3.206263e-06 1.123201e-06
## GO:0062013 117/11248 143/17913 5.366044e-07 3.206263e-06 1.123201e-06
## GO:0072009 92/11248 109/17913 5.593258e-07 3.338827e-06 1.169640e-06
## GO:0106027 74/11248 85/17913 5.599783e-07 3.339526e-06 1.169885e-06
## GO:0097696 122/11248 150/17913 5.803383e-07 3.457641e-06 1.211263e-06
## GO:0044242 150/11248 189/17913 5.894698e-07 3.508695e-06 1.229147e-06
## GO:0019395 80/11248 93/17913 5.930540e-07 3.526665e-06 1.235442e-06
## GO:0001909 83/11248 97/17913 5.953512e-07 3.530229e-06 1.236691e-06
## GO:0019886 83/11248 97/17913 5.953512e-07 3.530229e-06 1.236691e-06
## GO:1902750 83/11248 97/17913 5.953512e-07 3.530229e-06 1.236691e-06
## GO:0046474 167/11248 213/17913 6.136811e-07 3.635463e-06 1.273556e-06
## GO:0006026 57/11248 63/17913 6.325662e-07 3.736693e-06 1.309018e-06
## GO:0043967 57/11248 63/17913 6.325662e-07 3.736693e-06 1.309018e-06
## GO:0071277 57/11248 63/17913 6.325662e-07 3.736693e-06 1.309018e-06
## GO:0051028 119/11248 146/17913 6.401606e-07 3.777977e-06 1.323481e-06
## GO:0046425 100/11248 120/17913 6.479102e-07 3.820098e-06 1.338237e-06
## GO:0098542 352/11248 481/17913 6.613375e-07 3.895584e-06 1.364680e-06
## GO:0030516 67/11248 76/17913 6.849346e-07 4.026416e-06 1.410513e-06
## GO:0043300 41/11248 43/17913 6.854847e-07 4.026416e-06 1.410513e-06
## GO:0043303 41/11248 43/17913 6.854847e-07 4.026416e-06 1.410513e-06
## GO:0071326 108/11248 131/17913 6.949471e-07 4.078156e-06 1.428638e-06
## GO:0007613 94/11248 112/17913 7.239239e-07 4.239708e-06 1.485232e-06
## GO:0032370 53/11248 58/17913 7.245157e-07 4.239708e-06 1.485232e-06
## GO:1904589 53/11248 58/17913 7.245157e-07 4.239708e-06 1.485232e-06
## GO:0048469 134/11248 167/17913 7.383086e-07 4.316372e-06 1.512089e-06
## GO:0046890 154/11248 195/17913 7.396104e-07 4.319934e-06 1.513337e-06
## GO:0007031 70/11248 80/17913 7.407191e-07 4.322363e-06 1.514187e-06
## GO:0001755 36/11248 37/17913 7.492074e-07 4.363731e-06 1.528679e-06
## GO:0042181 36/11248 37/17913 7.492074e-07 4.363731e-06 1.528679e-06
## GO:0031333 105/11248 127/17913 7.514423e-07 4.368590e-06 1.530381e-06
## GO:0060078 105/11248 127/17913 7.514423e-07 4.368590e-06 1.530381e-06
## GO:0002200 60/11248 67/17913 7.612109e-07 4.408945e-06 1.544518e-06
## GO:0006625 60/11248 67/17913 7.612109e-07 4.408945e-06 1.544518e-06
## GO:0072662 60/11248 67/17913 7.612109e-07 4.408945e-06 1.544518e-06
## GO:0072663 60/11248 67/17913 7.612109e-07 4.408945e-06 1.544518e-06
## GO:0055010 45/11248 48/17913 7.814667e-07 4.522068e-06 1.584147e-06
## GO:0006968 49/11248 53/17913 7.840603e-07 4.528674e-06 1.586461e-06
## GO:0019229 49/11248 53/17913 7.840603e-07 4.528674e-06 1.586461e-06
## GO:0009791 76/11248 88/17913 8.061899e-07 4.647886e-06 1.628223e-06
## GO:0070167 76/11248 88/17913 8.061899e-07 4.647886e-06 1.628223e-06
## GO:0046928 82/11248 96/17913 8.163998e-07 4.702402e-06 1.647321e-06
## GO:0071774 118/11248 145/17913 8.369265e-07 4.816188e-06 1.687181e-06
## GO:0070050 30/11248 30/17913 8.530044e-07 4.904186e-06 1.718008e-06
## GO:1903747 63/11248 71/17913 8.740816e-07 5.020738e-06 1.758838e-06
## GO:0015800 56/11248 62/17913 9.159574e-07 5.256432e-06 1.841406e-06
## GO:0016999 107/11248 130/17913 9.188293e-07 5.263230e-06 1.843787e-06
## GO:0071331 107/11248 130/17913 9.188293e-07 5.263230e-06 1.843787e-06
## GO:0050807 170/11248 218/17913 9.281754e-07 5.311888e-06 1.860833e-06
## GO:0016241 133/11248 166/17913 9.504746e-07 5.434520e-06 1.903792e-06
## GO:0032271 143/11248 180/17913 9.636222e-07 5.504648e-06 1.928359e-06
## GO:0008344 66/11248 75/17913 9.670541e-07 5.519198e-06 1.933456e-06
## GO:1904019 93/11248 111/17913 9.740964e-07 5.554308e-06 1.945756e-06
## GO:0015718 112/11248 137/17913 1.014140e-06 5.772086e-06 2.022047e-06
## GO:2000058 112/11248 137/17913 1.014140e-06 5.772086e-06 2.022047e-06
## GO:0060071 90/11248 107/17913 1.022235e-06 5.812856e-06 2.036329e-06
## GO:0021766 69/11248 79/17913 1.038211e-06 5.898324e-06 2.066270e-06
## GO:0046189 40/11248 42/17913 1.044193e-06 5.926909e-06 2.076284e-06
## GO:0043525 52/11248 57/17913 1.059276e-06 5.996153e-06 2.100541e-06
## GO:0045453 52/11248 57/17913 1.059276e-06 5.996153e-06 2.100541e-06
## GO:0075733 52/11248 57/17913 1.059276e-06 5.996153e-06 2.100541e-06
## GO:0003073 72/11248 83/17913 1.087379e-06 6.149655e-06 2.154315e-06
## GO:0010517 59/11248 66/17913 1.091318e-06 6.156466e-06 2.156700e-06
## GO:0046785 59/11248 66/17913 1.091318e-06 6.156466e-06 2.156700e-06
## GO:0006633 117/11248 144/17913 1.092531e-06 6.156466e-06 2.156700e-06
## GO:0061351 117/11248 144/17913 1.092531e-06 6.156466e-06 2.156700e-06
## GO:2000117 75/11248 87/17913 1.115648e-06 6.280996e-06 2.200325e-06
## GO:0007589 81/11248 95/17913 1.117651e-06 6.280996e-06 2.200325e-06
## GO:0097711 81/11248 95/17913 1.117651e-06 6.280996e-06 2.200325e-06
## GO:0006900 78/11248 91/17913 1.124939e-06 6.310582e-06 2.210690e-06
## GO:0090277 78/11248 91/17913 1.124939e-06 6.310582e-06 2.210690e-06
## GO:0016042 227/11248 300/17913 1.132235e-06 6.345805e-06 2.223029e-06
## GO:0033673 188/11248 244/17913 1.134959e-06 6.355363e-06 2.226377e-06
## GO:0071634 35/11248 36/17913 1.163595e-06 6.509868e-06 2.280503e-06
## GO:0033260 44/11248 47/17913 1.171193e-06 6.546507e-06 2.293338e-06
## GO:1903364 106/11248 129/17913 1.212934e-06 6.773753e-06 2.372945e-06
## GO:0006661 95/11248 114/17913 1.233263e-06 6.881125e-06 2.410559e-06
## GO:0014033 62/11248 70/17913 1.241991e-06 6.923631e-06 2.425450e-06
## GO:0002224 119/11248 147/17913 1.282886e-06 7.145219e-06 2.503075e-06
## GO:0006027 55/11248 61/17913 1.324182e-06 7.355516e-06 2.576746e-06
## GO:0006521 55/11248 61/17913 1.324182e-06 7.355516e-06 2.576746e-06
## GO:0032835 55/11248 61/17913 1.324182e-06 7.355516e-06 2.576746e-06
## GO:0030705 124/11248 154/17913 1.338234e-06 7.426960e-06 2.601773e-06
## GO:0072395 65/11248 74/17913 1.363062e-06 7.558026e-06 2.647688e-06
## GO:1903320 173/11248 223/17913 1.374437e-06 7.614331e-06 2.667412e-06
## GO:0032963 86/11248 102/17913 1.440455e-06 7.972988e-06 2.793055e-06
## GO:0048762 156/11248 199/17913 1.450974e-06 8.019371e-06 2.809304e-06
## GO:0032760 68/11248 78/17913 1.452691e-06 8.019371e-06 2.809304e-06
## GO:1905954 68/11248 78/17913 1.452691e-06 8.019371e-06 2.809304e-06
## GO:0007043 83/11248 98/17913 1.491243e-06 8.210393e-06 2.876222e-06
## GO:0010522 83/11248 98/17913 1.491243e-06 8.210393e-06 2.876222e-06
## GO:0042136 83/11248 98/17913 1.491243e-06 8.210393e-06 2.876222e-06
## GO:0031341 71/11248 82/17913 1.511378e-06 8.306585e-06 2.909919e-06
## GO:0045921 71/11248 82/17913 1.511378e-06 8.306585e-06 2.909919e-06
## GO:0031109 80/11248 94/17913 1.527452e-06 8.380164e-06 2.935695e-06
## GO:0045778 80/11248 94/17913 1.527452e-06 8.380164e-06 2.935695e-06
## GO:0048839 146/11248 185/17913 1.537977e-06 8.424205e-06 2.951123e-06
## GO:0051208 97/11248 117/17913 1.538180e-06 8.424205e-06 2.951123e-06
## GO:0033138 74/11248 86/17913 1.541235e-06 8.433528e-06 2.954389e-06
## GO:0006911 39/11248 41/17913 1.588863e-06 8.671326e-06 3.037693e-06
## GO:0045773 39/11248 41/17913 1.588863e-06 8.671326e-06 3.037693e-06
## GO:0050434 39/11248 41/17913 1.588863e-06 8.671326e-06 3.037693e-06
## GO:0045216 105/11248 128/17913 1.598630e-06 8.709392e-06 3.051028e-06
## GO:0071333 105/11248 128/17913 1.598630e-06 8.709392e-06 3.051028e-06
## GO:0046717 94/11248 113/17913 1.648046e-06 8.970776e-06 3.142595e-06
## GO:0032102 256/11248 343/17913 1.697673e-06 9.232854e-06 3.234404e-06
## GO:0050803 172/11248 222/17913 1.711628e-06 9.293574e-06 3.255676e-06
## GO:0048146 47/11248 51/17913 1.711817e-06 9.293574e-06 3.255676e-06
## GO:0008360 102/11248 124/17913 1.743078e-06 9.455063e-06 3.312248e-06
## GO:0014075 43/11248 46/17913 1.752934e-06 9.467362e-06 3.316556e-06
## GO:0031648 43/11248 46/17913 1.752934e-06 9.467362e-06 3.316556e-06
## GO:0060711 43/11248 46/17913 1.752934e-06 9.467362e-06 3.316556e-06
## GO:0061614 43/11248 46/17913 1.752934e-06 9.467362e-06 3.316556e-06
## GO:1990089 43/11248 46/17913 1.752934e-06 9.467362e-06 3.316556e-06
## GO:0090175 91/11248 109/17913 1.754944e-06 9.470020e-06 3.317487e-06
## GO:0002701 34/11248 35/17913 1.805847e-06 9.727871e-06 3.407816e-06
## GO:0042092 34/11248 35/17913 1.805847e-06 9.727871e-06 3.407816e-06
## GO:0001678 115/11248 142/17913 1.853248e-06 9.974599e-06 3.494249e-06
## GO:0006939 88/11248 105/17913 1.855866e-06 9.980080e-06 3.496169e-06
## GO:0002768 318/11248 434/17913 1.880320e-06 1.010287e-05 3.539185e-06
## GO:0021536 64/11248 73/17913 1.917890e-06 1.026055e-05 3.594420e-06
## GO:0044766 64/11248 73/17913 1.917890e-06 1.026055e-05 3.594420e-06
## GO:0072401 64/11248 73/17913 1.917890e-06 1.026055e-05 3.594420e-06
## GO:0072422 64/11248 73/17913 1.917890e-06 1.026055e-05 3.594420e-06
## GO:1902579 64/11248 73/17913 1.917890e-06 1.026055e-05 3.594420e-06
## GO:0002062 82/11248 97/17913 2.024799e-06 1.082322e-05 3.791533e-06
## GO:0060411 67/11248 77/17913 2.029074e-06 1.083678e-05 3.796285e-06
## GO:0006835 79/11248 93/17913 2.083875e-06 1.111044e-05 3.892149e-06
## GO:0046364 79/11248 93/17913 2.083875e-06 1.111044e-05 3.892149e-06
## GO:0031145 70/11248 81/17913 2.097004e-06 1.116136e-05 3.909988e-06
## GO:0051899 70/11248 81/17913 2.097004e-06 1.116136e-05 3.909988e-06
## GO:0017156 104/11248 127/17913 2.103567e-06 1.118675e-05 3.918882e-06
## GO:0035066 28/11248 28/17913 2.167494e-06 1.151689e-05 4.034535e-06
## GO:0051209 93/11248 112/17913 2.198625e-06 1.166243e-05 4.085522e-06
## GO:0051283 93/11248 112/17913 2.198625e-06 1.166243e-05 4.085522e-06
## GO:0002088 60/11248 68/17913 2.494576e-06 1.319861e-05 4.623669e-06
## GO:0071674 60/11248 68/17913 2.494576e-06 1.319861e-05 4.623669e-06
## GO:1903524 60/11248 68/17913 2.494576e-06 1.319861e-05 4.623669e-06
## GO:0008637 98/11248 119/17913 2.504442e-06 1.323958e-05 4.638020e-06
## GO:0006261 106/11248 130/17913 2.511896e-06 1.326775e-05 4.647886e-06
## GO:0090090 134/11248 169/17913 2.561779e-06 1.351978e-05 4.736177e-06
## GO:0002067 42/11248 45/17913 2.619979e-06 1.380357e-05 4.835594e-06
## GO:0002448 42/11248 45/17913 2.619979e-06 1.380357e-05 4.835594e-06
## GO:0051146 200/11248 263/17913 2.671935e-06 1.406543e-05 4.927325e-06
## GO:1902117 63/11248 72/17913 2.693734e-06 1.416822e-05 4.963337e-06
## GO:1903169 116/11248 144/17913 2.797380e-06 1.470097e-05 5.149967e-06
## GO:0010464 33/11248 34/17913 2.800420e-06 1.470456e-05 5.151224e-06
## GO:0097306 75/11248 88/17913 2.900980e-06 1.520699e-05 5.327232e-06
## GO:1904894 75/11248 88/17913 2.900980e-06 1.520699e-05 5.327232e-06
## GO:0110110 69/11248 80/17913 2.904296e-06 1.521159e-05 5.328843e-06
## GO:0051348 206/11248 272/17913 3.133679e-06 1.639923e-05 5.744893e-06
## GO:0050679 155/11248 199/17913 3.145629e-06 1.644797e-05 5.761967e-06
## GO:0042108 56/11248 63/17913 3.183087e-06 1.662990e-05 5.825698e-06
## GO:0010524 49/11248 54/17913 3.278889e-06 1.705903e-05 5.976030e-06
## GO:0019226 49/11248 54/17913 3.278889e-06 1.705903e-05 5.976030e-06
## GO:0032663 49/11248 54/17913 3.278889e-06 1.705903e-05 5.976030e-06
## GO:0051937 49/11248 54/17913 3.278889e-06 1.705903e-05 5.976030e-06
## GO:0006364 123/11248 154/17913 3.278900e-06 1.705903e-05 5.976030e-06
## GO:0071887 86/11248 103/17913 3.346115e-06 1.737974e-05 6.088378e-06
## GO:0099565 86/11248 103/17913 3.346115e-06 1.737974e-05 6.088378e-06
## GO:0022898 185/11248 242/17913 3.457139e-06 1.794146e-05 6.285157e-06
## GO:0006469 171/11248 222/17913 3.527835e-06 1.829313e-05 6.408352e-06
## GO:0051282 94/11248 114/17913 3.597522e-06 1.863899e-05 6.529512e-06
## GO:0033683 37/11248 39/17913 3.665870e-06 1.896161e-05 6.642529e-06
## GO:0042596 37/11248 39/17913 3.665870e-06 1.896161e-05 6.642529e-06
## GO:0060079 80/11248 95/17913 3.713060e-06 1.918112e-05 6.719429e-06
## GO:0000186 45/11248 49/17913 3.714459e-06 1.918112e-05 6.719429e-06
## GO:0000819 125/11248 157/17913 3.720008e-06 1.919389e-05 6.723900e-06
## GO:0042100 62/11248 71/17913 3.776481e-06 1.946916e-05 6.820335e-06
## GO:0002708 77/11248 91/17913 3.857813e-06 1.987204e-05 6.961466e-06
## GO:0032434 91/11248 110/17913 3.892850e-06 2.001946e-05 7.013110e-06
## GO:0050864 91/11248 110/17913 3.892850e-06 2.001946e-05 7.013110e-06
## GO:0071622 41/11248 44/17913 3.910202e-06 2.009213e-05 7.038567e-06
## GO:0031016 65/11248 75/17913 3.937111e-06 2.018053e-05 7.069535e-06
## GO:0072332 65/11248 75/17913 3.937111e-06 2.018053e-05 7.069535e-06
## GO:1901224 65/11248 75/17913 3.937111e-06 2.018053e-05 7.069535e-06
## GO:0048144 74/11248 87/17913 3.963808e-06 2.026740e-05 7.099970e-06
## GO:0060021 74/11248 87/17913 3.963808e-06 2.026740e-05 7.099970e-06
## GO:1903035 74/11248 87/17913 3.963808e-06 2.026740e-05 7.099970e-06
## GO:0043154 68/11248 79/17913 4.014934e-06 2.051201e-05 7.185658e-06
## GO:0008625 71/11248 83/17913 4.020037e-06 2.052127e-05 7.188903e-06
## GO:0016331 117/11248 146/17913 4.155392e-06 2.119488e-05 7.424877e-06
## GO:0035821 127/11248 160/17913 4.196352e-06 2.138631e-05 7.491939e-06
## GO:0051494 104/11248 128/17913 4.291629e-06 2.185403e-05 7.655786e-06
## GO:0048048 32/11248 33/17913 4.339200e-06 2.202436e-05 7.715456e-06
## GO:0051954 32/11248 33/17913 4.339200e-06 2.202436e-05 7.715456e-06
## GO:0072350 32/11248 33/17913 4.339200e-06 2.202436e-05 7.715456e-06
## GO:1901890 32/11248 33/17913 4.339200e-06 2.202436e-05 7.715456e-06
## GO:0001704 96/11248 117/17913 4.363231e-06 2.211035e-05 7.745580e-06
## GO:0071166 96/11248 117/17913 4.363231e-06 2.211035e-05 7.745580e-06
## GO:0006275 85/11248 102/17913 4.481010e-06 2.268875e-05 7.948202e-06
## GO:2000241 109/11248 135/17913 4.518428e-06 2.285965e-05 8.008073e-06
## GO:0006360 55/11248 62/17913 4.531658e-06 2.288946e-05 8.018514e-06
## GO:0046365 55/11248 62/17913 4.531658e-06 2.288946e-05 8.018514e-06
## GO:0042177 101/11248 124/17913 4.745195e-06 2.394865e-05 8.389563e-06
## GO:0001906 124/11248 156/17913 4.753813e-06 2.397275e-05 8.398005e-06
## GO:1904375 93/11248 113/17913 4.758819e-06 2.397738e-05 8.399631e-06
## GO:0042130 48/11248 53/17913 4.762421e-06 2.397738e-05 8.399631e-06
## GO:0006635 58/11248 66/17913 4.974181e-06 2.498304e-05 8.751927e-06
## GO:0042440 58/11248 66/17913 4.974181e-06 2.498304e-05 8.751927e-06
## GO:2000573 58/11248 66/17913 4.974181e-06 2.498304e-05 8.751927e-06
## GO:0022600 79/11248 94/17913 5.014366e-06 2.516461e-05 8.815535e-06
## GO:0042692 265/11248 359/17913 5.085868e-06 2.550293e-05 8.934051e-06
## GO:0022613 280/11248 381/17913 5.097191e-06 2.553918e-05 8.946750e-06
## GO:0045861 241/11248 324/17913 5.220936e-06 2.613820e-05 9.156597e-06
## GO:0044344 111/11248 138/17913 5.232284e-06 2.614300e-05 9.158277e-06
## GO:0050764 76/11248 90/17913 5.234467e-06 2.614300e-05 9.158277e-06
## GO:0060349 76/11248 90/17913 5.234467e-06 2.614300e-05 9.158277e-06
## GO:0007266 126/11248 159/17913 5.346526e-06 2.665998e-05 9.339382e-06
## GO:0046488 126/11248 159/17913 5.346526e-06 2.665998e-05 9.339382e-06
## GO:0048145 73/11248 86/17913 5.405862e-06 2.693432e-05 9.435488e-06
## GO:0001667 324/11248 446/17913 5.421725e-06 2.699180e-05 9.455623e-06
## GO:0002704 44/11248 48/17913 5.458181e-06 2.711790e-05 9.499799e-06
## GO:0042220 44/11248 48/17913 5.458181e-06 2.711790e-05 9.499799e-06
## GO:0032481 64/11248 74/17913 5.468791e-06 2.711790e-05 9.499799e-06
## GO:0060291 64/11248 74/17913 5.468791e-06 2.711790e-05 9.499799e-06
## GO:1900182 64/11248 74/17913 5.468791e-06 2.711790e-05 9.499799e-06
## GO:0045445 70/11248 82/17913 5.513159e-06 2.727287e-05 9.554086e-06
## GO:0048644 70/11248 82/17913 5.513159e-06 2.727287e-05 9.554086e-06
## GO:0071158 70/11248 82/17913 5.513159e-06 2.727287e-05 9.554086e-06
## GO:0002209 36/11248 38/17913 5.557928e-06 2.738574e-05 9.593629e-06
## GO:0002711 36/11248 38/17913 5.557928e-06 2.738574e-05 9.593629e-06
## GO:0007431 36/11248 38/17913 5.557928e-06 2.738574e-05 9.593629e-06
## GO:0016572 36/11248 38/17913 5.557928e-06 2.738574e-05 9.593629e-06
## GO:0071604 36/11248 38/17913 5.557928e-06 2.738574e-05 9.593629e-06
## GO:0001836 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:0010518 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:0032890 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:0060688 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:0090183 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:1903749 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:2000756 51/11248 57/17913 5.685940e-06 2.786245e-05 9.760625e-06
## GO:0071426 95/11248 116/17913 5.744091e-06 2.812531e-05 9.852708e-06
## GO:0031018 40/11248 43/17913 5.826964e-06 2.846406e-05 9.971378e-06
## GO:0044060 40/11248 43/17913 5.826964e-06 2.846406e-05 9.971378e-06
## GO:1990090 40/11248 43/17913 5.826964e-06 2.846406e-05 9.971378e-06
## GO:0006479 133/11248 169/17913 5.840126e-06 2.848374e-05 9.978275e-06
## GO:0008213 133/11248 169/17913 5.840126e-06 2.848374e-05 9.978275e-06
## GO:0051302 128/11248 162/17913 5.981539e-06 2.915066e-05 1.021190e-05
## GO:0000209 216/11248 288/17913 6.040232e-06 2.941371e-05 1.030406e-05
## GO:0032640 123/11248 155/17913 6.065425e-06 2.949035e-05 1.033090e-05
## GO:1903555 123/11248 155/17913 6.065425e-06 2.949035e-05 1.033090e-05
## GO:0007098 92/11248 112/17913 6.283783e-06 3.052822e-05 1.069449e-05
## GO:0034113 54/11248 61/17913 6.439409e-06 3.123564e-05 1.094230e-05
## GO:0046635 54/11248 61/17913 6.439409e-06 3.123564e-05 1.094230e-05
## GO:0016571 105/11248 130/17913 6.537501e-06 3.168682e-05 1.110036e-05
## GO:0051346 306/11248 420/17913 6.556932e-06 3.175632e-05 1.112471e-05
## GO:0031111 31/11248 32/17913 6.717703e-06 3.248452e-05 1.137980e-05
## GO:0038128 31/11248 32/17913 6.717703e-06 3.248452e-05 1.137980e-05
## GO:0097479 110/11248 137/17913 6.754684e-06 3.263805e-05 1.143359e-05
## GO:0030856 120/11248 151/17913 6.873881e-06 3.316262e-05 1.161735e-05
## GO:0032680 120/11248 151/17913 6.873881e-06 3.316262e-05 1.161735e-05
## GO:0002720 47/11248 52/17913 6.904753e-06 3.328582e-05 1.166051e-05
## GO:0019319 75/11248 89/17913 7.088882e-06 3.414706e-05 1.196222e-05
## GO:0010972 72/11248 85/17913 7.358393e-06 3.536337e-05 1.238831e-05
## GO:0046427 72/11248 85/17913 7.358393e-06 3.536337e-05 1.238831e-05
## GO:0048704 72/11248 85/17913 7.358393e-06 3.536337e-05 1.238831e-05
## GO:0031110 60/11248 69/17913 7.380183e-06 3.544078e-05 1.241543e-05
## GO:0050868 86/11248 104/17913 7.416517e-06 3.558787e-05 1.246695e-05
## GO:1903533 69/11248 81/17913 7.546227e-06 3.613772e-05 1.265957e-05
## GO:0009063 94/11248 115/17913 7.548485e-06 3.613772e-05 1.265957e-05
## GO:0072329 94/11248 115/17913 7.548485e-06 3.613772e-05 1.265957e-05
## GO:0007492 63/11248 73/17913 7.581553e-06 3.626768e-05 1.270510e-05
## GO:0071706 127/11248 161/17913 7.587259e-06 3.626768e-05 1.270510e-05
## GO:0034109 66/11248 77/17913 7.628854e-06 3.638287e-05 1.274545e-05
## GO:0048708 66/11248 77/17913 7.628854e-06 3.638287e-05 1.274545e-05
## GO:0097061 66/11248 77/17913 7.628854e-06 3.638287e-05 1.274545e-05
## GO:0090092 165/11248 215/17913 7.670536e-06 3.655371e-05 1.280530e-05
## GO:0071772 117/11248 147/17913 7.781353e-06 3.702523e-05 1.297048e-05
## GO:0071773 117/11248 147/17913 7.781353e-06 3.702523e-05 1.297048e-05
## GO:0016079 83/11248 100/17913 7.991805e-06 3.799762e-05 1.331113e-05
## GO:0070849 43/11248 47/17913 8.006653e-06 3.801027e-05 1.331556e-05
## GO:0120163 43/11248 47/17913 8.006653e-06 3.801027e-05 1.331556e-05
## GO:0006405 99/11248 122/17913 8.092103e-06 3.835755e-05 1.343721e-05
## GO:0031023 99/11248 122/17913 8.092103e-06 3.835755e-05 1.343721e-05
## GO:0030178 153/11248 198/17913 8.237837e-06 3.901870e-05 1.366882e-05
## GO:0001662 35/11248 37/17913 8.415370e-06 3.973889e-05 1.392112e-05
## GO:0006296 35/11248 37/17913 8.415370e-06 3.973889e-05 1.392112e-05
## GO:0008207 35/11248 37/17913 8.415370e-06 3.973889e-05 1.392112e-05
## GO:0014037 35/11248 37/17913 8.415370e-06 3.973889e-05 1.392112e-05
## GO:1904892 104/11248 129/17913 8.474833e-06 3.998942e-05 1.400888e-05
## GO:0006942 80/11248 96/17913 8.556328e-06 4.034344e-05 1.413290e-05
## GO:0014047 39/11248 42/17913 8.669575e-06 4.084653e-05 1.430914e-05
## GO:0006310 185/11248 244/17913 8.676477e-06 4.084820e-05 1.430973e-05
## GO:0032409 194/11248 257/17913 8.703665e-06 4.094530e-05 1.434374e-05
## GO:0002719 25/11248 25/17913 8.777273e-06 4.113646e-05 1.441071e-05
## GO:0042759 25/11248 25/17913 8.777273e-06 4.113646e-05 1.441071e-05
## GO:0044062 25/11248 25/17913 8.777273e-06 4.113646e-05 1.441071e-05
## GO:0060561 25/11248 25/17913 8.777273e-06 4.113646e-05 1.441071e-05
## GO:0061842 25/11248 25/17913 8.777273e-06 4.113646e-05 1.441071e-05
## GO:0032412 178/11248 234/17913 9.007745e-06 4.218492e-05 1.477800e-05
## GO:0006024 88/11248 107/17913 9.049315e-06 4.234781e-05 1.483506e-05
## GO:0001658 53/11248 60/17913 9.132485e-06 4.257731e-05 1.491546e-05
## GO:0002562 53/11248 60/17913 9.132485e-06 4.257731e-05 1.491546e-05
## GO:0016444 53/11248 60/17913 9.132485e-06 4.257731e-05 1.491546e-05
## GO:0030593 53/11248 60/17913 9.132485e-06 4.257731e-05 1.491546e-05
## GO:0051785 53/11248 60/17913 9.132485e-06 4.257731e-05 1.491546e-05
## GO:0098656 171/11248 224/17913 9.272859e-06 4.319947e-05 1.513341e-05
## GO:0021953 138/11248 177/17913 9.788737e-06 4.556876e-05 1.596341e-05
## GO:0044783 56/11248 64/17913 9.842447e-06 4.578463e-05 1.603903e-05
## GO:0002831 111/11248 139/17913 9.933904e-06 4.617563e-05 1.617600e-05
## GO:0035065 46/11248 51/17913 9.992144e-06 4.632840e-05 1.622952e-05
## GO:1900024 46/11248 51/17913 9.992144e-06 4.632840e-05 1.622952e-05
## GO:0001776 71/11248 84/17913 9.996478e-06 4.632840e-05 1.622952e-05
## GO:0051781 71/11248 84/17913 9.996478e-06 4.632840e-05 1.622952e-05
## GO:0032259 248/11248 336/17913 1.021297e-05 4.729660e-05 1.656869e-05
## GO:0008154 133/11248 170/17913 1.024265e-05 4.739884e-05 1.660451e-05
## GO:0050805 59/11248 68/17913 1.028648e-05 4.756641e-05 1.666321e-05
## GO:0060415 65/11248 76/17913 1.048479e-05 4.839762e-05 1.695440e-05
## GO:0007193 62/11248 72/17913 1.048951e-05 4.839762e-05 1.695440e-05
## GO:1990266 62/11248 72/17913 1.048951e-05 4.839762e-05 1.695440e-05
## GO:0042107 98/11248 121/17913 1.053928e-05 4.859129e-05 1.702224e-05
## GO:0046632 82/11248 99/17913 1.064258e-05 4.895899e-05 1.715105e-05
## GO:0048525 82/11248 99/17913 1.064258e-05 4.895899e-05 1.715105e-05
## GO:0070301 82/11248 99/17913 1.064258e-05 4.895899e-05 1.715105e-05
## GO:0006805 90/11248 110/17913 1.089651e-05 5.009023e-05 1.754735e-05
## GO:0045017 186/11248 246/17913 1.110581e-05 5.101474e-05 1.787121e-05
## GO:0050810 79/11248 95/17913 1.143957e-05 5.247060e-05 1.838122e-05
## GO:0120034 79/11248 95/17913 1.143957e-05 5.247060e-05 1.838122e-05
## GO:0019320 49/11248 55/17913 1.165226e-05 5.328944e-05 1.866807e-05
## GO:0031663 49/11248 55/17913 1.165226e-05 5.328944e-05 1.866807e-05
## GO:0032615 49/11248 55/17913 1.165226e-05 5.328944e-05 1.866807e-05
## GO:0048008 49/11248 55/17913 1.165226e-05 5.328944e-05 1.866807e-05
## GO:0034754 95/11248 117/17913 1.170689e-05 5.338430e-05 1.870131e-05
## GO:0006984 42/11248 46/17913 1.172395e-05 5.338430e-05 1.870131e-05
## GO:0048538 42/11248 46/17913 1.172395e-05 5.338430e-05 1.870131e-05
## GO:0060324 42/11248 46/17913 1.172395e-05 5.338430e-05 1.870131e-05
## GO:0090199 42/11248 46/17913 1.172395e-05 5.338430e-05 1.870131e-05
## GO:0120032 130/11248 166/17913 1.172435e-05 5.338430e-05 1.870131e-05
## GO:0098693 87/11248 106/17913 1.194317e-05 5.434100e-05 1.903645e-05
## GO:1901184 76/11248 91/17913 1.220952e-05 5.551236e-05 1.944680e-05
## GO:0045333 137/11248 176/17913 1.225536e-05 5.567699e-05 1.950447e-05
## GO:0003158 100/11248 124/17913 1.227250e-05 5.567699e-05 1.950447e-05
## GO:0019218 100/11248 124/17913 1.227250e-05 5.567699e-05 1.950447e-05
## GO:0034767 120/11248 152/17913 1.247827e-05 5.656937e-05 1.981708e-05
## GO:0042417 34/11248 36/17913 1.272414e-05 5.760029e-05 2.017823e-05
## GO:0050892 34/11248 36/17913 1.272414e-05 5.760029e-05 2.017823e-05
## GO:0090184 38/11248 41/17913 1.287758e-05 5.816823e-05 2.037719e-05
## GO:1901985 38/11248 41/17913 1.287758e-05 5.816823e-05 2.037719e-05
## GO:1903146 38/11248 41/17913 1.287758e-05 5.816823e-05 2.037719e-05
## GO:0007215 73/11248 87/17913 1.292514e-05 5.830173e-05 2.042395e-05
## GO:1903902 52/11248 59/17913 1.292582e-05 5.830173e-05 2.042395e-05
## GO:0071482 92/11248 113/17913 1.296457e-05 5.843426e-05 2.047038e-05
## GO:0006575 139/11248 179/17913 1.333184e-05 6.004621e-05 2.103507e-05
## GO:0008380 318/11248 440/17913 1.353883e-05 6.093450e-05 2.134625e-05
## GO:0000079 70/11248 83/17913 1.355304e-05 6.095449e-05 2.135326e-05
## GO:0042089 97/11248 120/17913 1.370168e-05 6.157857e-05 2.157188e-05
## GO:0031571 55/11248 63/17913 1.380308e-05 6.190051e-05 2.168466e-05
## GO:0044819 55/11248 63/17913 1.380308e-05 6.190051e-05 2.168466e-05
## GO:0055008 55/11248 63/17913 1.380308e-05 6.190051e-05 2.168466e-05
## GO:0008211 24/11248 24/17913 1.398936e-05 6.260090e-05 2.193002e-05
## GO:0030325 24/11248 24/17913 1.398936e-05 6.260090e-05 2.193002e-05
## GO:0051642 24/11248 24/17913 1.398936e-05 6.260090e-05 2.193002e-05
## GO:0097581 67/11248 79/17913 1.405342e-05 6.284247e-05 2.201464e-05
## GO:0043244 81/11248 98/17913 1.414506e-05 6.316168e-05 2.212646e-05
## GO:0099175 81/11248 98/17913 1.414506e-05 6.316168e-05 2.212646e-05
## GO:0032418 58/11248 67/17913 1.430782e-05 6.380147e-05 2.235059e-05
## GO:1903052 89/11248 109/17913 1.430879e-05 6.380147e-05 2.235059e-05
## GO:0048194 64/11248 75/17913 1.438038e-05 6.407486e-05 2.244637e-05
## GO:0050771 45/11248 50/17913 1.443206e-05 6.425925e-05 2.251096e-05
## GO:0030500 61/11248 71/17913 1.448301e-05 6.434829e-05 2.254215e-05
## GO:0031670 61/11248 71/17913 1.448301e-05 6.434829e-05 2.254215e-05
## GO:0043507 61/11248 71/17913 1.448301e-05 6.434829e-05 2.254215e-05
## GO:0002821 78/11248 94/17913 1.526420e-05 6.772267e-05 2.372425e-05
## GO:0048709 78/11248 94/17913 1.526420e-05 6.772267e-05 2.372425e-05
## GO:0032609 86/11248 105/17913 1.573230e-05 6.974988e-05 2.443441e-05
## GO:0002828 29/11248 30/17913 1.605563e-05 7.108233e-05 2.490119e-05
## GO:0034694 29/11248 30/17913 1.605563e-05 7.108233e-05 2.490119e-05
## GO:0060491 131/11248 168/17913 1.614024e-05 7.140623e-05 2.501465e-05
## GO:0046634 75/11248 90/17913 1.636096e-05 7.233144e-05 2.533877e-05
## GO:0097755 48/11248 54/17913 1.663068e-05 7.347178e-05 2.573825e-05
## GO:0002820 41/11248 45/17913 1.713499e-05 7.553927e-05 2.646252e-05
## GO:0022602 41/11248 45/17913 1.713499e-05 7.553927e-05 2.646252e-05
## GO:0045839 41/11248 45/17913 1.713499e-05 7.553927e-05 2.646252e-05
## GO:2000379 83/11248 101/17913 1.722305e-05 7.587385e-05 2.657973e-05
## GO:0006094 72/11248 86/17913 1.739998e-05 7.649124e-05 2.679601e-05
## GO:0032602 72/11248 86/17913 1.739998e-05 7.649124e-05 2.679601e-05
## GO:2000177 72/11248 86/17913 1.739998e-05 7.649124e-05 2.679601e-05
## GO:0070527 51/11248 58/17913 1.825680e-05 8.008159e-05 2.805376e-05
## GO:0032946 101/11248 126/17913 1.826805e-05 8.008159e-05 2.805376e-05
## GO:0048489 101/11248 126/17913 1.826805e-05 8.008159e-05 2.805376e-05
## GO:0097480 101/11248 126/17913 1.826805e-05 8.008159e-05 2.805376e-05
## GO:0006023 88/11248 108/17913 1.875369e-05 8.215275e-05 2.877932e-05
## GO:0000082 201/11248 269/17913 1.888458e-05 8.266807e-05 2.895984e-05
## GO:0007618 37/11248 40/17913 1.909492e-05 8.322626e-05 2.915538e-05
## GO:0061028 37/11248 40/17913 1.909492e-05 8.322626e-05 2.915538e-05
## GO:0071470 37/11248 40/17913 1.909492e-05 8.322626e-05 2.915538e-05
## GO:1902893 37/11248 40/17913 1.909492e-05 8.322626e-05 2.915538e-05
## GO:2000273 37/11248 40/17913 1.909492e-05 8.322626e-05 2.915538e-05
## GO:0016925 66/11248 78/17913 1.911883e-05 8.322626e-05 2.915538e-05
## GO:0022617 66/11248 78/17913 1.911883e-05 8.322626e-05 2.915538e-05
## GO:0045913 66/11248 78/17913 1.911883e-05 8.322626e-05 2.915538e-05
## GO:0030865 33/11248 35/17913 1.921087e-05 8.345222e-05 2.923454e-05
## GO:0045070 33/11248 35/17913 1.921087e-05 8.345222e-05 2.923454e-05
## GO:2000310 33/11248 35/17913 1.921087e-05 8.345222e-05 2.923454e-05
## GO:0038034 54/11248 62/17913 1.931673e-05 8.379540e-05 2.935476e-05
## GO:0097192 54/11248 62/17913 1.931673e-05 8.379540e-05 2.935476e-05
## GO:0060675 57/11248 66/17913 1.985912e-05 8.608840e-05 3.015803e-05
## GO:0090114 60/11248 70/17913 1.995462e-05 8.644232e-05 3.028202e-05
## GO:0015698 118/11248 150/17913 2.001951e-05 8.666321e-05 3.035940e-05
## GO:0006612 130/11248 167/17913 2.021308e-05 8.744050e-05 3.063169e-05
## GO:0051261 77/11248 93/17913 2.032650e-05 8.787020e-05 3.078222e-05
## GO:0010970 113/11248 143/17913 2.053270e-05 8.863872e-05 3.105145e-05
## GO:0099111 113/11248 143/17913 2.053270e-05 8.863872e-05 3.105145e-05
## GO:0035272 44/11248 49/17913 2.080293e-05 8.974323e-05 3.143837e-05
## GO:0050678 269/11248 369/17913 2.159778e-05 9.310779e-05 3.261703e-05
## GO:0002824 74/11248 89/17913 2.187907e-05 9.425526e-05 3.301900e-05
## GO:0001841 82/11248 100/17913 2.271831e-05 9.773573e-05 3.423826e-05
## GO:2001237 82/11248 100/17913 2.271831e-05 9.773573e-05 3.423826e-05
## GO:0043506 71/11248 85/17913 2.337534e-05 1.004930e-04 3.520418e-05
## GO:0050671 100/11248 125/17913 2.351290e-05 1.010148e-04 3.538696e-05
## GO:1901657 105/11248 132/17913 2.360393e-05 1.013361e-04 3.549952e-05
## GO:0032655 47/11248 53/17913 2.368636e-05 1.015502e-04 3.557452e-05
## GO:0050819 47/11248 53/17913 2.368636e-05 1.015502e-04 3.557452e-05
## GO:0045682 68/11248 81/17913 2.475762e-05 1.057477e-04 3.704497e-05
## GO:0002888 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0006101 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0006294 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0033006 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0045980 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0071480 28/11248 29/17913 2.478408e-05 1.057477e-04 3.704497e-05
## GO:0097327 79/11248 96/17913 2.483814e-05 1.059059e-04 3.710040e-05
## GO:0002437 40/11248 44/17913 2.499458e-05 1.063080e-04 3.724126e-05
## GO:0048483 40/11248 44/17913 2.499458e-05 1.063080e-04 3.724126e-05
## GO:1900274 40/11248 44/17913 2.499458e-05 1.063080e-04 3.724126e-05
## GO:0002429 289/11248 399/17913 2.500062e-05 1.063080e-04 3.724126e-05
## GO:0072431 50/11248 57/17913 2.573106e-05 1.092650e-04 3.827715e-05
## GO:1902400 50/11248 57/17913 2.573106e-05 1.092650e-04 3.827715e-05
## GO:0006892 65/11248 77/17913 2.595445e-05 1.101387e-04 3.858320e-05
## GO:0007601 159/11248 209/17913 2.633396e-05 1.116732e-04 3.912075e-05
## GO:0055001 124/11248 159/17913 2.663402e-05 1.128689e-04 3.953963e-05
## GO:0014013 102/11248 128/17913 2.672130e-05 1.131619e-04 3.964227e-05
## GO:0043627 62/11248 73/17913 2.687983e-05 1.137560e-04 3.985041e-05
## GO:0033627 53/11248 61/17913 2.697411e-05 1.140776e-04 3.996308e-05
## GO:0014020 76/11248 92/17913 2.701198e-05 1.141604e-04 3.999206e-05
## GO:0006446 59/11248 69/17913 2.743366e-05 1.157073e-04 4.053398e-05
## GO:0031146 59/11248 69/17913 2.743366e-05 1.157073e-04 4.053398e-05
## GO:1900006 59/11248 69/17913 2.743366e-05 1.157073e-04 4.053398e-05
## GO:0014823 56/11248 65/17913 2.750423e-05 1.158484e-04 4.058338e-05
## GO:0097194 56/11248 65/17913 2.750423e-05 1.158484e-04 4.058338e-05
## GO:0030049 36/11248 39/17913 2.826262e-05 1.187220e-04 4.159008e-05
## GO:0033003 36/11248 39/17913 2.826262e-05 1.187220e-04 4.159008e-05
## GO:0033275 36/11248 39/17913 2.826262e-05 1.187220e-04 4.159008e-05
## GO:1904591 36/11248 39/17913 2.826262e-05 1.187220e-04 4.159008e-05
## GO:0055002 114/11248 145/17913 2.890547e-05 1.213234e-04 4.250137e-05
## GO:0007435 32/11248 34/17913 2.895969e-05 1.213234e-04 4.250137e-05
## GO:0045777 32/11248 34/17913 2.895969e-05 1.213234e-04 4.250137e-05
## GO:2000249 32/11248 34/17913 2.895969e-05 1.213234e-04 4.250137e-05
## GO:0002286 73/11248 88/17913 2.919701e-05 1.222356e-04 4.282091e-05
## GO:0002761 94/11248 117/17913 2.977207e-05 1.245595e-04 4.363501e-05
## GO:0032648 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0043392 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0044273 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0045840 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0048546 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0061647 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:1903727 43/11248 48/17913 2.992351e-05 1.246081e-04 4.365203e-05
## GO:0043414 205/11248 276/17913 3.001921e-05 1.249232e-04 4.376242e-05
## GO:0006626 70/11248 84/17913 3.133587e-05 1.302286e-04 4.562100e-05
## GO:0042058 70/11248 84/17913 3.133587e-05 1.302286e-04 4.562100e-05
## GO:0061326 78/11248 95/17913 3.281252e-05 1.362746e-04 4.773901e-05
## GO:0010508 91/11248 113/17913 3.339916e-05 1.386187e-04 4.856019e-05
## GO:0051784 46/11248 52/17913 3.366214e-05 1.395245e-04 4.887750e-05
## GO:0060350 46/11248 52/17913 3.366214e-05 1.395245e-04 4.887750e-05
## GO:0006865 106/11248 134/17913 3.380603e-05 1.398422e-04 4.898878e-05
## GO:0030509 106/11248 134/17913 3.380603e-05 1.398422e-04 4.898878e-05
## GO:0070665 106/11248 134/17913 3.380603e-05 1.398422e-04 4.898878e-05
## GO:0000715 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0035584 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0035813 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0042359 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0043302 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0098810 22/11248 22/17913 3.553297e-05 1.464034e-04 5.128725e-05
## GO:0010927 75/11248 91/17913 3.582085e-05 1.474921e-04 5.166864e-05
## GO:0006977 49/11248 56/17913 3.618472e-05 1.487939e-04 5.212468e-05
## GO:0071398 49/11248 56/17913 3.618472e-05 1.487939e-04 5.212468e-05
## GO:0006775 39/11248 43/17913 3.638503e-05 1.492241e-04 5.227539e-05
## GO:0010828 39/11248 43/17913 3.638503e-05 1.492241e-04 5.227539e-05
## GO:0060443 39/11248 43/17913 3.638503e-05 1.492241e-04 5.227539e-05
## GO:0071364 39/11248 43/17913 3.638503e-05 1.492241e-04 5.227539e-05
## GO:0035148 113/11248 144/17913 3.650424e-05 1.496146e-04 5.241221e-05
## GO:0035019 61/11248 72/17913 3.662875e-05 1.499279e-04 5.252195e-05
## GO:0043462 61/11248 72/17913 3.662875e-05 1.499279e-04 5.252195e-05
## GO:0034968 88/11248 109/17913 3.737992e-05 1.529023e-04 5.356392e-05
## GO:0032024 58/11248 68/17913 3.763155e-05 1.536293e-04 5.381861e-05
## GO:0043647 58/11248 68/17913 3.763155e-05 1.536293e-04 5.381861e-05
## GO:0086003 58/11248 68/17913 3.763155e-05 1.536293e-04 5.381861e-05
## GO:0001910 55/11248 64/17913 3.800694e-05 1.550604e-04 5.431993e-05
## GO:0008209 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:0050869 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:0052312 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:0060765 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:0070306 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:1900543 27/11248 28/17913 3.821577e-05 1.553029e-04 5.440489e-05
## GO:0045931 120/11248 154/17913 3.831878e-05 1.556201e-04 5.451602e-05
## GO:1904029 72/11248 87/17913 3.887918e-05 1.577933e-04 5.527733e-05
## GO:0007631 80/11248 98/17913 3.928699e-05 1.593448e-04 5.582082e-05
## GO:0016482 110/11248 140/17913 4.174567e-05 1.687947e-04 5.913127e-05
## GO:0034250 110/11248 140/17913 4.174567e-05 1.687947e-04 5.913127e-05
## GO:0006284 35/11248 38/17913 4.175220e-05 1.687947e-04 5.913127e-05
## GO:0042769 35/11248 38/17913 4.175220e-05 1.687947e-04 5.913127e-05
## GO:0051985 35/11248 38/17913 4.175220e-05 1.687947e-04 5.913127e-05
## GO:0010507 69/11248 83/17913 4.191585e-05 1.693465e-04 5.932458e-05
## GO:0006397 355/11248 499/17913 4.224281e-05 1.705571e-04 5.974865e-05
## GO:0045815 42/11248 47/17913 4.294924e-05 1.729615e-04 6.059095e-05
## GO:0045912 42/11248 47/17913 4.294924e-05 1.729615e-04 6.059095e-05
## GO:0061383 42/11248 47/17913 4.294924e-05 1.729615e-04 6.059095e-05
## GO:0072698 42/11248 47/17913 4.294924e-05 1.729615e-04 6.059095e-05
## GO:0009062 77/11248 94/17913 4.325574e-05 1.738591e-04 6.090539e-05
## GO:0030316 77/11248 94/17913 4.325574e-05 1.738591e-04 6.090539e-05
## GO:2001243 77/11248 94/17913 4.325574e-05 1.738591e-04 6.090539e-05
## GO:0050953 161/11248 213/17913 4.345992e-05 1.742821e-04 6.105357e-05
## GO:0001913 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0002756 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0006409 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0010039 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0042554 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0051031 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0071431 31/11248 33/17913 4.358449e-05 1.742821e-04 6.105357e-05
## GO:0006029 66/11248 79/17913 4.483549e-05 1.789404e-04 6.268544e-05
## GO:0006476 66/11248 79/17913 4.483549e-05 1.789404e-04 6.268544e-05
## GO:0032642 66/11248 79/17913 4.483549e-05 1.789404e-04 6.268544e-05
## GO:0045639 74/11248 90/17913 4.740030e-05 1.890557e-04 6.622899e-05
## GO:0006584 45/11248 51/17913 4.773146e-05 1.900120e-04 6.656400e-05
## GO:0009712 45/11248 51/17913 4.773146e-05 1.900120e-04 6.656400e-05
## GO:2000677 45/11248 51/17913 4.773146e-05 1.900120e-04 6.656400e-05
## GO:0019751 92/11248 115/17913 4.946696e-05 1.967952e-04 6.894026e-05
## GO:1902904 97/11248 122/17913 4.957342e-05 1.970930e-04 6.904459e-05
## GO:0002312 60/11248 71/17913 4.979980e-05 1.974896e-04 6.918352e-05
## GO:0060998 60/11248 71/17913 4.979980e-05 1.974896e-04 6.918352e-05
## GO:1901879 60/11248 71/17913 4.979980e-05 1.974896e-04 6.918352e-05
## GO:1901983 60/11248 71/17913 4.979980e-05 1.974896e-04 6.918352e-05
## GO:0000422 48/11248 55/17913 5.076839e-05 2.006928e-04 7.030564e-05
## GO:0016445 48/11248 55/17913 5.076839e-05 2.006928e-04 7.030564e-05
## GO:0042982 48/11248 55/17913 5.076839e-05 2.006928e-04 7.030564e-05
## GO:0060997 48/11248 55/17913 5.076839e-05 2.006928e-04 7.030564e-05
## GO:0061726 48/11248 55/17913 5.076839e-05 2.006928e-04 7.030564e-05
## GO:0006901 57/11248 67/17913 5.150158e-05 2.030764e-04 7.114064e-05
## GO:0010812 57/11248 67/17913 5.150158e-05 2.030764e-04 7.114064e-05
## GO:0051705 57/11248 67/17913 5.150158e-05 2.030764e-04 7.114064e-05
## GO:0072171 57/11248 67/17913 5.150158e-05 2.030764e-04 7.114064e-05
## GO:0061097 71/11248 86/17913 5.165871e-05 2.035673e-04 7.131261e-05
## GO:0007519 121/11248 156/17913 5.209880e-05 2.051719e-04 7.187474e-05
## GO:0033013 51/11248 59/17913 5.224177e-05 2.052167e-04 7.189044e-05
## GO:0072413 51/11248 59/17913 5.224177e-05 2.052167e-04 7.189044e-05
## GO:1902402 51/11248 59/17913 5.224177e-05 2.052167e-04 7.189044e-05
## GO:1902403 51/11248 59/17913 5.224177e-05 2.052167e-04 7.189044e-05
## GO:0051262 128/11248 166/17913 5.268803e-05 2.068395e-04 7.245891e-05
## GO:0010863 38/11248 42/17913 5.285360e-05 2.070985e-04 7.254964e-05
## GO:0021983 38/11248 42/17913 5.285360e-05 2.070985e-04 7.254964e-05
## GO:0032456 38/11248 42/17913 5.285360e-05 2.070985e-04 7.254964e-05
## GO:0050954 123/11248 159/17913 5.636589e-05 2.207222e-04 7.732222e-05
## GO:0032373 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0032376 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0032928 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0035455 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0035743 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0072010 21/11248 21/17913 5.662741e-05 2.209142e-04 7.738950e-05
## GO:0072080 76/11248 93/17913 5.689999e-05 2.217003e-04 7.766487e-05
## GO:1903076 76/11248 93/17913 5.689999e-05 2.217003e-04 7.766487e-05
## GO:0044843 212/11248 288/17913 5.794622e-05 2.256358e-04 7.904354e-05
## GO:0006099 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0009651 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0032201 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0043304 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0043921 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0052472 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:0072378 26/11248 27/17913 5.885792e-05 2.281888e-04 7.993788e-05
## GO:1903008 65/11248 78/17913 6.013257e-05 2.329857e-04 8.161832e-05
## GO:0031638 41/11248 46/17913 6.150553e-05 2.371785e-04 8.308711e-05
## GO:0060986 41/11248 46/17913 6.150553e-05 2.371785e-04 8.308711e-05
## GO:0030212 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0030574 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0033046 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0034405 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0042307 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0051932 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:2000648 34/11248 37/17913 6.155690e-05 2.371785e-04 8.308711e-05
## GO:0007498 101/11248 128/17913 6.216808e-05 2.392378e-04 8.380853e-05
## GO:0072175 101/11248 128/17913 6.216808e-05 2.392378e-04 8.380853e-05
## GO:0006903 73/11248 89/17913 6.258516e-05 2.406029e-04 8.428672e-05
## GO:0006406 86/11248 107/17913 6.271566e-05 2.406029e-04 8.428672e-05
## GO:0050905 86/11248 107/17913 6.271566e-05 2.406029e-04 8.428672e-05
## GO:0062014 86/11248 107/17913 6.271566e-05 2.406029e-04 8.428672e-05
## GO:0071427 86/11248 107/17913 6.271566e-05 2.406029e-04 8.428672e-05
## GO:1903038 96/11248 121/17913 6.332164e-05 2.426897e-04 8.501776e-05
## GO:0030041 113/11248 145/17913 6.333741e-05 2.426897e-04 8.501776e-05
## GO:0009116 91/11248 114/17913 6.357252e-05 2.434410e-04 8.528097e-05
## GO:0030104 62/11248 74/17913 6.406903e-05 2.448913e-04 8.578903e-05
## GO:0055072 62/11248 74/17913 6.406903e-05 2.448913e-04 8.578903e-05
## GO:0086001 62/11248 74/17913 6.406903e-05 2.448913e-04 8.578903e-05
## GO:0022900 134/11248 175/17913 6.459726e-05 2.467592e-04 8.644337e-05
## GO:0060538 127/11248 165/17913 6.528484e-05 2.492331e-04 8.731002e-05
## GO:0001975 30/11248 32/17913 6.548174e-05 2.496791e-04 8.746628e-05
## GO:0071276 30/11248 32/17913 6.548174e-05 2.496791e-04 8.746628e-05
## GO:0031343 44/11248 50/17913 6.752266e-05 2.569313e-04 9.000682e-05
## GO:0044380 44/11248 50/17913 6.752266e-05 2.569313e-04 9.000682e-05
## GO:0048199 59/11248 70/17913 6.754847e-05 2.569313e-04 9.000682e-05
## GO:0060193 59/11248 70/17913 6.754847e-05 2.569313e-04 9.000682e-05
## GO:0042475 70/11248 85/17913 6.848501e-05 2.603348e-04 9.119912e-05
## GO:0061035 56/11248 66/17913 7.031685e-05 2.671355e-04 9.358149e-05
## GO:0032091 83/11248 103/17913 7.038370e-05 2.672267e-04 9.361345e-05
## GO:0006643 145/11248 191/17913 7.050264e-05 2.675155e-04 9.371461e-05
## GO:0001541 47/11248 54/17913 7.106024e-05 2.694673e-04 9.439837e-05
## GO:0061025 93/11248 117/17913 7.190173e-05 2.724927e-04 9.545821e-05
## GO:0043966 50/11248 58/17913 7.244520e-05 2.742191e-04 9.606300e-05
## GO:0071384 50/11248 58/17913 7.244520e-05 2.742191e-04 9.606300e-05
## GO:0055117 67/11248 81/17913 7.449335e-05 2.818008e-04 9.871897e-05
## GO:0009101 221/11248 302/17913 7.627007e-05 2.883471e-04 1.010122e-04
## GO:0008631 37/11248 41/17913 7.660530e-05 2.887395e-04 1.011497e-04
## GO:0010677 37/11248 41/17913 7.660530e-05 2.887395e-04 1.011497e-04
## GO:0050432 37/11248 41/17913 7.660530e-05 2.887395e-04 1.011497e-04
## GO:0098659 37/11248 41/17913 7.660530e-05 2.887395e-04 1.011497e-04
## GO:0099587 37/11248 41/17913 7.660530e-05 2.887395e-04 1.011497e-04
## GO:0010906 90/11248 113/17913 8.153376e-05 3.071302e-04 1.075922e-04
## GO:0003197 40/11248 45/17913 8.787133e-05 3.304047e-04 1.157456e-04
## GO:0033628 40/11248 45/17913 8.787133e-05 3.304047e-04 1.157456e-04
## GO:0046850 40/11248 45/17913 8.787133e-05 3.304047e-04 1.157456e-04
## GO:0090287 203/11248 276/17913 8.942309e-05 3.360369e-04 1.177187e-04
## GO:0007620 20/11248 20/17913 9.024175e-05 3.363461e-04 1.178270e-04
## GO:0097734 20/11248 20/17913 9.024175e-05 3.363461e-04 1.178270e-04
## GO:0002053 25/11248 26/17913 9.053672e-05 3.363461e-04 1.178270e-04
## GO:0019934 25/11248 26/17913 9.053672e-05 3.363461e-04 1.178270e-04
## GO:0048668 25/11248 26/17913 9.053672e-05 3.363461e-04 1.178270e-04
## GO:0071624 25/11248 26/17913 9.053672e-05 3.363461e-04 1.178270e-04
## GO:1903579 25/11248 26/17913 9.053672e-05 3.363461e-04 1.178270e-04
## GO:0006007 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0006734 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0009187 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0010742 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0031076 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0033144 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0070670 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0086091 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0090077 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0090218 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0097064 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:1900026 33/11248 36/17913 9.056483e-05 3.363461e-04 1.178270e-04
## GO:0006767 69/11248 84/17913 9.058374e-05 3.363461e-04 1.178270e-04
## GO:1904064 109/11248 140/17913 9.119754e-05 3.384237e-04 1.185548e-04
## GO:0050795 58/11248 69/17913 9.140227e-05 3.389818e-04 1.187503e-04
## GO:0071103 205/11248 279/17913 9.150949e-05 3.391778e-04 1.188190e-04
## GO:0031396 148/11248 196/17913 9.497856e-05 3.518268e-04 1.232501e-04
## GO:0007595 43/11248 49/17913 9.528764e-05 3.521353e-04 1.233582e-04
## GO:0031529 43/11248 49/17913 9.528764e-05 3.521353e-04 1.233582e-04
## GO:0043113 43/11248 49/17913 9.528764e-05 3.521353e-04 1.233582e-04
## GO:1903793 43/11248 49/17913 9.528764e-05 3.521353e-04 1.233582e-04
## GO:0048207 55/11248 65/17913 9.577186e-05 3.530880e-04 1.236919e-04
## GO:0048208 55/11248 65/17913 9.577186e-05 3.530880e-04 1.236919e-04
## GO:0071242 55/11248 65/17913 9.577186e-05 3.530880e-04 1.236919e-04
## GO:1904888 55/11248 65/17913 9.577186e-05 3.530880e-04 1.236919e-04
## GO:0000041 74/11248 91/17913 9.780499e-05 3.601579e-04 1.261686e-04
## GO:0043473 74/11248 91/17913 9.780499e-05 3.601579e-04 1.261686e-04
## GO:0015872 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:0030866 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:0045920 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:0051955 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:1903393 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:1905508 29/11248 31/17913 9.820063e-05 3.603385e-04 1.262319e-04
## GO:0003170 52/11248 61/17913 9.887553e-05 3.621759e-04 1.268756e-04
## GO:0031646 52/11248 61/17913 9.887553e-05 3.621759e-04 1.268756e-04
## GO:0046888 52/11248 61/17913 9.887553e-05 3.621759e-04 1.268756e-04
## GO:2001023 66/11248 80/17913 9.896289e-05 3.622832e-04 1.269131e-04
## GO:0033047 49/11248 57/17913 1.002134e-04 3.664309e-04 1.283661e-04
## GO:0035418 49/11248 57/17913 1.002134e-04 3.664309e-04 1.283661e-04
## GO:1901606 79/11248 98/17913 1.022879e-04 3.737971e-04 1.309466e-04
## GO:0045446 84/11248 105/17913 1.043449e-04 3.808682e-04 1.334237e-04
## GO:0055076 84/11248 105/17913 1.043449e-04 3.808682e-04 1.334237e-04
## GO:0006814 143/11248 189/17913 1.047997e-04 3.823045e-04 1.339269e-04
## GO:0014015 63/11248 76/17913 1.074045e-04 3.915775e-04 1.371754e-04
## GO:0002823 36/11248 40/17913 1.107720e-04 4.026780e-04 1.410640e-04
## GO:0019835 36/11248 40/17913 1.107720e-04 4.026780e-04 1.410640e-04
## GO:0031279 36/11248 40/17913 1.107720e-04 4.026780e-04 1.410640e-04
## GO:0042987 36/11248 40/17913 1.107720e-04 4.026780e-04 1.410640e-04
## GO:0050435 36/11248 40/17913 1.107720e-04 4.026780e-04 1.410640e-04
## GO:0071824 178/11248 240/17913 1.117796e-04 4.061043e-04 1.422643e-04
## GO:1903409 96/11248 122/17913 1.140843e-04 4.142362e-04 1.451130e-04
## GO:0001676 76/11248 94/17913 1.145091e-04 4.150537e-04 1.453994e-04
## GO:0007030 76/11248 94/17913 1.145091e-04 4.150537e-04 1.453994e-04
## GO:0007189 76/11248 94/17913 1.145091e-04 4.150537e-04 1.453994e-04
## GO:0043624 147/11248 195/17913 1.152877e-04 4.176336e-04 1.463032e-04
## GO:0018107 81/11248 101/17913 1.177140e-04 4.256813e-04 1.491224e-04
## GO:0035335 81/11248 101/17913 1.177140e-04 4.256813e-04 1.491224e-04
## GO:0048661 81/11248 101/17913 1.177140e-04 4.256813e-04 1.491224e-04
## GO:0007586 103/11248 132/17913 1.204267e-04 4.352384e-04 1.524704e-04
## GO:0009581 98/11248 125/17913 1.259644e-04 4.549888e-04 1.593893e-04
## GO:0035710 73/11248 90/17913 1.277907e-04 4.610517e-04 1.615132e-04
## GO:0051225 73/11248 90/17913 1.277907e-04 4.610517e-04 1.615132e-04
## GO:0071230 54/11248 64/17913 1.301140e-04 4.691624e-04 1.643545e-04
## GO:0006361 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0007257 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0033048 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0045740 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0060416 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0090322 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0110111 32/11248 35/17913 1.329471e-04 4.774463e-04 1.672565e-04
## GO:0007622 42/11248 48/17913 1.341293e-04 4.808613e-04 1.684528e-04
## GO:0010171 42/11248 48/17913 1.341293e-04 4.808613e-04 1.684528e-04
## GO:0060389 42/11248 48/17913 1.341293e-04 4.808613e-04 1.684528e-04
## GO:0021885 51/11248 60/17913 1.353109e-04 4.845403e-04 1.697416e-04
## GO:0050766 51/11248 60/17913 1.353109e-04 4.845403e-04 1.697416e-04
## GO:0003179 45/11248 52/17913 1.381770e-04 4.929888e-04 1.727012e-04
## GO:0007632 45/11248 52/17913 1.381770e-04 4.929888e-04 1.727012e-04
## GO:0051353 45/11248 52/17913 1.381770e-04 4.929888e-04 1.727012e-04
## GO:0090307 45/11248 52/17913 1.381770e-04 4.929888e-04 1.727012e-04
## GO:0031294 48/11248 56/17913 1.382704e-04 4.929888e-04 1.727012e-04
## GO:0009582 100/11248 128/17913 1.383024e-04 4.929888e-04 1.727012e-04
## GO:0045667 100/11248 128/17913 1.383024e-04 4.929888e-04 1.727012e-04
## GO:1903322 100/11248 128/17913 1.383024e-04 4.929888e-04 1.727012e-04
## GO:0006706 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0042730 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0048596 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0050901 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0051894 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0070897 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:1900739 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:1900740 24/11248 25/17913 1.390796e-04 4.935031e-04 1.728814e-04
## GO:0001843 70/11248 86/17913 1.421001e-04 5.036479e-04 1.764353e-04
## GO:1903725 70/11248 86/17913 1.421001e-04 5.036479e-04 1.764353e-04
## GO:0016126 62/11248 75/17913 1.430191e-04 5.062389e-04 1.773429e-04
## GO:0048678 62/11248 75/17913 1.430191e-04 5.062389e-04 1.773429e-04
## GO:0002577 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0002726 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0009713 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0031280 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0033189 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0042423 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0051580 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0071731 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:1902170 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:1990182 19/11248 19/17913 1.438050e-04 5.062389e-04 1.773429e-04
## GO:0009303 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0010543 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0010743 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0010862 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0032743 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0060603 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0061082 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0071539 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0090022 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:2000142 28/11248 30/17913 1.469825e-04 5.145211e-04 1.802443e-04
## GO:0032649 75/11248 93/17913 1.487816e-04 5.205271e-04 1.823483e-04
## GO:0060840 80/11248 100/17913 1.517272e-04 5.305349e-04 1.858542e-04
## GO:2000060 67/11248 82/17913 1.573522e-04 5.498953e-04 1.926364e-04
## GO:0000096 35/11248 39/17913 1.597860e-04 5.577757e-04 1.953970e-04
## GO:0050433 35/11248 39/17913 1.597860e-04 5.577757e-04 1.953970e-04
## GO:0035303 154/11248 206/17913 1.643769e-04 5.733025e-04 2.008363e-04
## GO:0000723 118/11248 154/17913 1.644178e-04 5.733025e-04 2.008363e-04
## GO:0006665 111/11248 144/17913 1.658671e-04 5.775668e-04 2.023301e-04
## GO:0033866 56/11248 67/17913 1.661037e-04 5.775668e-04 2.023301e-04
## GO:0034030 56/11248 67/17913 1.661037e-04 5.775668e-04 2.023301e-04
## GO:0034033 56/11248 67/17913 1.661037e-04 5.775668e-04 2.023301e-04
## GO:0045669 56/11248 67/17913 1.661037e-04 5.775668e-04 2.023301e-04
## GO:0042035 87/11248 110/17913 1.698499e-04 5.902640e-04 2.067782e-04
## GO:0043242 53/11248 63/17913 1.763127e-04 6.120416e-04 2.144072e-04
## GO:0046637 53/11248 63/17913 1.763127e-04 6.120416e-04 2.144072e-04
## GO:0003044 38/11248 43/17913 1.780147e-04 6.165773e-04 2.159961e-04
## GO:0035094 38/11248 43/17913 1.780147e-04 6.165773e-04 2.159961e-04
## GO:0051602 38/11248 43/17913 1.780147e-04 6.165773e-04 2.159961e-04
## GO:0097028 38/11248 43/17913 1.780147e-04 6.165773e-04 2.159961e-04
## GO:0060759 138/11248 183/17913 1.794001e-04 6.210311e-04 2.175563e-04
## GO:0001838 94/11248 120/17913 1.821448e-04 6.301825e-04 2.207622e-04
## GO:0032272 50/11248 59/17913 1.846864e-04 6.382682e-04 2.235947e-04
## GO:0034394 50/11248 59/17913 1.846864e-04 6.382682e-04 2.235947e-04
## GO:1903901 69/11248 85/17913 1.858845e-04 6.420530e-04 2.249206e-04
## GO:0031113 41/11248 47/17913 1.883069e-04 6.486242e-04 2.272226e-04
## GO:0044764 41/11248 47/17913 1.883069e-04 6.486242e-04 2.272226e-04
## GO:0046638 41/11248 47/17913 1.883069e-04 6.486242e-04 2.272226e-04
## GO:0048168 41/11248 47/17913 1.883069e-04 6.486242e-04 2.272226e-04
## GO:0048512 41/11248 47/17913 1.883069e-04 6.486242e-04 2.272226e-04
## GO:0021675 61/11248 74/17913 1.899642e-04 6.536111e-04 2.289696e-04
## GO:0043367 61/11248 74/17913 1.899642e-04 6.536111e-04 2.289696e-04
## GO:0002381 47/11248 55/17913 1.902748e-04 6.539583e-04 2.290912e-04
## GO:0031295 47/11248 55/17913 1.902748e-04 6.539583e-04 2.290912e-04
## GO:0001837 108/11248 140/17913 1.915087e-04 6.574548e-04 2.303161e-04
## GO:0002712 44/11248 51/17913 1.919245e-04 6.574548e-04 2.303161e-04
## GO:0002889 44/11248 51/17913 1.919245e-04 6.574548e-04 2.303161e-04
## GO:0030239 44/11248 51/17913 1.919245e-04 6.574548e-04 2.303161e-04
## GO:0072132 44/11248 51/17913 1.919245e-04 6.574548e-04 2.303161e-04
## GO:1901607 44/11248 51/17913 1.919245e-04 6.574548e-04 2.303161e-04
## GO:0009452 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0014072 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0021955 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0036260 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0043276 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0043278 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0048566 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0060428 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0072595 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:1901030 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:1902622 31/11248 34/17913 1.947074e-04 6.629828e-04 2.322526e-04
## GO:0032755 66/11248 81/17913 2.066289e-04 7.022697e-04 2.460154e-04
## GO:0051702 66/11248 81/17913 2.066289e-04 7.022697e-04 2.460154e-04
## GO:0006855 58/11248 70/17913 2.066956e-04 7.022697e-04 2.460154e-04
## GO:1904427 58/11248 70/17913 2.066956e-04 7.022697e-04 2.460154e-04
## GO:0035265 135/11248 179/17913 2.079405e-04 7.061149e-04 2.473624e-04
## GO:0072089 91/11248 116/17913 2.088557e-04 7.088367e-04 2.483159e-04
## GO:0002407 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0003181 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0009299 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0035812 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0050687 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0090023 23/11248 24/17913 2.133425e-04 7.217085e-04 2.528251e-04
## GO:0008543 86/11248 109/17913 2.159870e-04 7.302586e-04 2.558203e-04
## GO:1904035 71/11248 88/17913 2.166173e-04 7.319928e-04 2.564278e-04
## GO:0000083 27/11248 29/17913 2.195435e-04 7.398771e-04 2.591898e-04
## GO:0001844 27/11248 29/17913 2.195435e-04 7.398771e-04 2.591898e-04
## GO:0010737 27/11248 29/17913 2.195435e-04 7.398771e-04 2.591898e-04
## GO:0014044 27/11248 29/17913 2.195435e-04 7.398771e-04 2.591898e-04
## GO:0035666 27/11248 29/17913 2.195435e-04 7.398771e-04 2.591898e-04
## GO:0060993 76/11248 95/17913 2.208272e-04 7.438014e-04 2.605646e-04
## GO:0030809 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:0035994 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:0051023 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:0072311 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:1900372 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:1902644 18/11248 18/17913 2.291531e-04 7.693526e-04 2.695155e-04
## GO:0002707 34/11248 38/17913 2.298969e-04 7.706055e-04 2.699544e-04
## GO:0033280 34/11248 38/17913 2.298969e-04 7.706055e-04 2.699544e-04
## GO:0051931 34/11248 38/17913 2.298969e-04 7.706055e-04 2.699544e-04
## GO:0016197 141/11248 188/17913 2.367743e-04 7.932319e-04 2.778808e-04
## GO:0007605 107/11248 139/17913 2.375801e-04 7.955044e-04 2.786769e-04
## GO:0002637 52/11248 62/17913 2.382770e-04 7.957022e-04 2.787462e-04
## GO:0007585 52/11248 62/17913 2.382770e-04 7.957022e-04 2.787462e-04
## GO:0035249 52/11248 62/17913 2.382770e-04 7.957022e-04 2.787462e-04
## GO:0043550 52/11248 62/17913 2.382770e-04 7.957022e-04 2.787462e-04
## GO:2001244 52/11248 62/17913 2.382770e-04 7.957022e-04 2.787462e-04
## GO:0000018 68/11248 84/17913 2.425621e-04 8.091456e-04 2.834556e-04
## GO:2001057 68/11248 84/17913 2.425621e-04 8.091456e-04 2.834556e-04
## GO:0017158 73/11248 91/17913 2.493994e-04 8.315091e-04 2.912899e-04
## GO:0050848 78/11248 98/17913 2.503523e-04 8.342401e-04 2.922466e-04
## GO:0010324 49/11248 58/17913 2.513958e-04 8.372701e-04 2.933080e-04
## GO:0008652 60/11248 73/17913 2.516673e-04 8.372805e-04 2.933117e-04
## GO:0051881 60/11248 73/17913 2.516673e-04 8.372805e-04 2.933117e-04
## GO:0042088 37/11248 42/17913 2.523679e-04 8.391635e-04 2.939713e-04
## GO:0002763 46/11248 54/17913 2.611203e-04 8.668805e-04 3.036810e-04
## GO:0071385 46/11248 54/17913 2.611203e-04 8.668805e-04 3.036810e-04
## GO:0099132 46/11248 54/17913 2.611203e-04 8.668805e-04 3.036810e-04
## GO:0042471 90/11248 115/17913 2.634846e-04 8.724704e-04 3.056392e-04
## GO:0021695 40/11248 46/17913 2.636433e-04 8.724704e-04 3.056392e-04
## GO:0045687 40/11248 46/17913 2.636433e-04 8.724704e-04 3.056392e-04
## GO:0048806 40/11248 46/17913 2.636433e-04 8.724704e-04 3.056392e-04
## GO:1904036 40/11248 46/17913 2.636433e-04 8.724704e-04 3.056392e-04
## GO:2000107 40/11248 46/17913 2.636433e-04 8.724704e-04 3.056392e-04
## GO:0008347 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0032608 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0035176 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0051703 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0051966 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0055081 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0070671 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:2000179 43/11248 50/17913 2.658440e-04 8.760352e-04 3.068880e-04
## GO:0030004 65/11248 80/17913 2.706527e-04 8.904702e-04 3.119448e-04
## GO:0032637 65/11248 80/17913 2.706527e-04 8.904702e-04 3.119448e-04
## GO:1903363 65/11248 80/17913 2.706527e-04 8.904702e-04 3.119448e-04
## GO:0006353 57/11248 69/17913 2.752370e-04 9.045987e-04 3.168942e-04
## GO:0070509 57/11248 69/17913 2.752370e-04 9.045987e-04 3.168942e-04
## GO:0035601 70/11248 87/17913 2.809975e-04 9.225593e-04 3.231861e-04
## GO:0060606 70/11248 87/17913 2.809975e-04 9.225593e-04 3.231861e-04
## GO:0007041 75/11248 94/17913 2.840681e-04 9.295053e-04 3.256194e-04
## GO:0048640 75/11248 94/17913 2.840681e-04 9.295053e-04 3.256194e-04
## GO:0006370 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:0032094 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:0042339 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:0043516 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:0071353 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:1902100 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:1905819 30/11248 33/17913 2.844543e-04 9.295053e-04 3.256194e-04
## GO:0030832 113/11248 148/17913 2.884992e-04 9.422292e-04 3.300768e-04
## GO:0007059 200/11248 275/17913 2.903698e-04 9.478425e-04 3.320432e-04
## GO:0006801 54/11248 65/17913 2.987025e-04 9.745324e-04 3.413930e-04
## GO:0003281 62/11248 76/17913 3.007408e-04 9.791342e-04 3.430051e-04
## GO:0006809 62/11248 76/17913 3.007408e-04 9.791342e-04 3.430051e-04
## GO:0006885 62/11248 76/17913 3.007408e-04 9.791342e-04 3.430051e-04
## GO:1902803 62/11248 76/17913 3.007408e-04 9.791342e-04 3.430051e-04
## GO:0051053 108/11248 141/17913 3.140292e-04 1.021864e-03 3.579741e-04
## GO:0000375 249/11248 348/17913 3.176316e-04 1.033048e-03 3.618919e-04
## GO:0002753 51/11248 61/17913 3.211310e-04 1.043341e-03 3.654978e-04
## GO:0043388 51/11248 61/17913 3.211310e-04 1.043341e-03 3.654978e-04
## GO:0015908 72/11248 90/17913 3.217270e-04 1.044190e-03 3.657951e-04
## GO:0042102 72/11248 90/17913 3.217270e-04 1.044190e-03 3.657951e-04
## GO:0001945 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0006297 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0010288 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0010758 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0031114 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0071526 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0072215 22/11248 23/17913 3.267520e-04 1.053204e-03 3.689530e-04
## GO:0034698 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0039694 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0040001 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0044550 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0045737 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0048384 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0051294 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0061615 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0061620 26/11248 28/17913 3.272059e-04 1.053204e-03 3.689530e-04
## GO:0001990 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0006778 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0045124 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0046326 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0051567 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0051590 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:0051930 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:1905314 33/11248 37/17913 3.298802e-04 1.057447e-03 3.704394e-04
## GO:1901222 89/11248 114/17913 3.316734e-04 1.062649e-03 3.722617e-04
## GO:0006695 59/11248 72/17913 3.325283e-04 1.064295e-03 3.728383e-04
## GO:1902653 59/11248 72/17913 3.325283e-04 1.064295e-03 3.728383e-04
## GO:0001959 128/11248 170/17913 3.391444e-04 1.084914e-03 3.800614e-04
## GO:0035023 96/11248 124/17913 3.399761e-04 1.087017e-03 3.807981e-04
## GO:0022029 48/11248 57/17913 3.412413e-04 1.089388e-03 3.816285e-04
## GO:0030888 48/11248 57/17913 3.412413e-04 1.089388e-03 3.816285e-04
## GO:1902041 48/11248 57/17913 3.412413e-04 1.089388e-03 3.816285e-04
## GO:0042509 64/11248 79/17913 3.535981e-04 1.127105e-03 3.948416e-04
## GO:0061333 64/11248 79/17913 3.535981e-04 1.127105e-03 3.948416e-04
## GO:0072028 64/11248 79/17913 3.535981e-04 1.127105e-03 3.948416e-04
## GO:0008064 112/11248 147/17913 3.543445e-04 1.128907e-03 3.954729e-04
## GO:0014003 36/11248 41/17913 3.567719e-04 1.134324e-03 3.973703e-04
## GO:0019048 36/11248 41/17913 3.567719e-04 1.134324e-03 3.973703e-04
## GO:0031641 36/11248 41/17913 3.567719e-04 1.134324e-03 3.973703e-04
## GO:1903580 36/11248 41/17913 3.567719e-04 1.134324e-03 3.973703e-04
## GO:0035384 45/11248 53/17913 3.573257e-04 1.134927e-03 3.975818e-04
## GO:0071616 45/11248 53/17913 3.573257e-04 1.134927e-03 3.975818e-04
## GO:0045727 91/11248 117/17913 3.616639e-04 1.148122e-03 4.022039e-04
## GO:1901800 74/11248 93/17913 3.645329e-04 1.151545e-03 4.034030e-04
## GO:0006704 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0007194 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0010224 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0017085 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0032930 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0043923 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0055003 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0061318 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0072112 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:2000811 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:2001267 17/11248 17/17913 3.651433e-04 1.151545e-03 4.034030e-04
## GO:0009064 56/11248 68/17913 3.655111e-04 1.151545e-03 4.034030e-04
## GO:0050891 56/11248 68/17913 3.655111e-04 1.151545e-03 4.034030e-04
## GO:0061515 56/11248 68/17913 3.655111e-04 1.151545e-03 4.034030e-04
## GO:0016447 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:0045981 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:0050879 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:0050881 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:0071349 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:1900544 42/11248 49/17913 3.671793e-04 1.153305e-03 4.040199e-04
## GO:0006998 39/11248 45/17913 3.680652e-04 1.153764e-03 4.041806e-04
## GO:0035987 39/11248 45/17913 3.680652e-04 1.153764e-03 4.041806e-04
## GO:0042551 39/11248 45/17913 3.680652e-04 1.153764e-03 4.041806e-04
## GO:0045058 39/11248 45/17913 3.680652e-04 1.153764e-03 4.041806e-04
## GO:0043409 134/11248 179/17913 3.840602e-04 1.203298e-03 4.215332e-04
## GO:0050729 116/11248 153/17913 3.951023e-04 1.237273e-03 4.334349e-04
## GO:0007260 66/11248 82/17913 4.098950e-04 1.282953e-03 4.494373e-04
## GO:0031112 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0032228 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0033028 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0043552 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0045745 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0045841 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0046688 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0060317 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0061384 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0071295 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0097421 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:2000816 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:2001171 29/11248 32/17913 4.144832e-04 1.288906e-03 4.515229e-04
## GO:0002294 50/11248 60/17913 4.315644e-04 1.341355e-03 4.698962e-04
## GO:2000300 58/11248 71/17913 4.381730e-04 1.361217e-03 4.768542e-04
## GO:0007569 90/11248 116/17913 4.525846e-04 1.405288e-03 4.922929e-04
## GO:0005976 78/11248 99/17913 4.554851e-04 1.412887e-03 4.949552e-04
## GO:1902106 78/11248 99/17913 4.554851e-04 1.412887e-03 4.949552e-04
## GO:0010827 63/11248 78/17913 4.607397e-04 1.427671e-03 5.001342e-04
## GO:0051279 63/11248 78/17913 4.607397e-04 1.427671e-03 5.001342e-04
## GO:0033619 47/11248 56/17913 4.618532e-04 1.427671e-03 5.001342e-04
## GO:0061098 47/11248 56/17913 4.618532e-04 1.427671e-03 5.001342e-04
## GO:0086002 47/11248 56/17913 4.618532e-04 1.427671e-03 5.001342e-04
## GO:1900449 47/11248 56/17913 4.618532e-04 1.427671e-03 5.001342e-04
## GO:1901880 47/11248 56/17913 4.618532e-04 1.427671e-03 5.001342e-04
## GO:0003091 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:0008038 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:0033762 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:0046825 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:0050982 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:2000516 32/11248 36/17913 4.720057e-04 1.454729e-03 5.096130e-04
## GO:0018210 85/11248 109/17913 4.796652e-04 1.477606e-03 5.176270e-04
## GO:0007004 55/11248 67/17913 4.840367e-04 1.485523e-03 5.204005e-04
## GO:0002026 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0003148 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0006735 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0009112 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0009261 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0035116 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0035883 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0035902 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0036475 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0045761 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0045907 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0046885 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0060512 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0061621 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0061718 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:1902624 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:2000171 25/11248 27/17913 4.865218e-04 1.485523e-03 5.204005e-04
## GO:0048747 44/11248 52/17913 4.875356e-04 1.486436e-03 5.207203e-04
## GO:0097345 44/11248 52/17913 4.875356e-04 1.486436e-03 5.207203e-04
## GO:1901799 44/11248 52/17913 4.875356e-04 1.486436e-03 5.207203e-04
## GO:0000717 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0006582 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0030318 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0034695 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0035809 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0048305 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0048799 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0051195 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0051654 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0060390 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0060444 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0071378 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:1903306 21/11248 22/17913 4.996107e-04 1.513633e-03 5.302481e-04
## GO:0001912 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:0006509 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:0030810 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:0033574 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:0051281 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:1900373 35/11248 40/17913 5.028845e-04 1.519125e-03 5.321719e-04
## GO:0031050 41/11248 48/17913 5.056327e-04 1.523738e-03 5.337877e-04
## GO:0044003 41/11248 48/17913 5.056327e-04 1.523738e-03 5.337877e-04
## GO:0070918 41/11248 48/17913 5.056327e-04 1.523738e-03 5.337877e-04
## GO:0071825 41/11248 48/17913 5.056327e-04 1.523738e-03 5.337877e-04
## GO:1905268 41/11248 48/17913 5.056327e-04 1.523738e-03 5.337877e-04
## GO:0002548 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0021795 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0035196 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0048701 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0060393 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0071827 38/11248 44/17913 5.123147e-04 1.539412e-03 5.392786e-04
## GO:0042472 75/11248 95/17913 5.212214e-04 1.565421e-03 5.483900e-04
## GO:0007006 94/11248 122/17913 5.263132e-04 1.579193e-03 5.532145e-04
## GO:0018022 94/11248 122/17913 5.263132e-04 1.579193e-03 5.532145e-04
## GO:0046209 65/11248 81/17913 5.307496e-04 1.589763e-03 5.569174e-04
## GO:0061053 65/11248 81/17913 5.307496e-04 1.589763e-03 5.569174e-04
## GO:0030101 52/11248 63/17913 5.311988e-04 1.589763e-03 5.569174e-04
## GO:0050854 52/11248 63/17913 5.311988e-04 1.589763e-03 5.569174e-04
## GO:0140029 52/11248 63/17913 5.311988e-04 1.589763e-03 5.569174e-04
## GO:0098732 70/11248 88/17913 5.313652e-04 1.589763e-03 5.569174e-04
## GO:1904950 143/11248 193/17913 5.454189e-04 1.631027e-03 5.713729e-04
## GO:0000377 245/11248 344/17913 5.532927e-04 1.652988e-03 5.790662e-04
## GO:0000398 245/11248 344/17913 5.532927e-04 1.652988e-03 5.790662e-04
## GO:0043484 89/11248 115/17913 5.650889e-04 1.687422e-03 5.911287e-04
## GO:0033045 57/11248 70/17913 5.757646e-04 1.717656e-03 6.017203e-04
## GO:1902476 57/11248 70/17913 5.757646e-04 1.717656e-03 6.017203e-04
## GO:0045071 49/11248 59/17913 5.782715e-04 1.720083e-03 6.025704e-04
## GO:0070059 49/11248 59/17913 5.782715e-04 1.720083e-03 6.025704e-04
## GO:1901616 49/11248 59/17913 5.782715e-04 1.720083e-03 6.025704e-04
## GO:0002830 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0010875 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0010919 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0019372 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0022616 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0030214 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0031958 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0034116 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0042448 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0044849 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0051482 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0071732 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0071871 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0097067 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:1903541 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:2001170 16/11248 16/17913 5.818171e-04 1.720083e-03 6.025704e-04
## GO:0034644 62/11248 77/17913 5.987153e-04 1.767528e-03 6.191909e-04
## GO:0051851 62/11248 77/17913 5.987153e-04 1.767528e-03 6.191909e-04
## GO:0072088 62/11248 77/17913 5.987153e-04 1.767528e-03 6.191909e-04
## GO:0006363 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:0007099 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:0030431 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:0030513 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:0051204 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:0051385 28/11248 31/17913 6.022795e-04 1.773015e-03 6.211134e-04
## GO:1901019 67/11248 84/17913 6.040697e-04 1.777447e-03 6.226657e-04
## GO:0032722 46/11248 55/17913 6.232196e-04 1.832930e-03 6.421022e-04
## GO:0043255 74/11248 94/17913 6.622527e-04 1.946811e-03 6.819965e-04
## GO:0032613 43/11248 51/17913 6.631611e-04 1.947645e-03 6.822888e-04
## GO:0032781 43/11248 51/17913 6.631611e-04 1.947645e-03 6.822888e-04
## GO:0072384 59/11248 73/17913 6.732996e-04 1.969223e-03 6.898476e-04
## GO:0001893 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0003203 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0007528 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0021587 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0035137 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0048246 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0071312 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:1901998 31/11248 35/17913 6.733491e-04 1.969223e-03 6.898476e-04
## GO:0002204 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0002208 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0007091 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0008542 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0009066 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0010965 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0035722 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0045190 40/11248 47/17913 6.941369e-04 2.022432e-03 7.084876e-04
## GO:0030501 34/11248 39/17913 7.066508e-04 2.056011e-03 7.202509e-04
## GO:0038179 34/11248 39/17913 7.066508e-04 2.056011e-03 7.202509e-04
## GO:0045823 34/11248 39/17913 7.066508e-04 2.056011e-03 7.202509e-04
## GO:0009409 37/11248 43/17913 7.108789e-04 2.063500e-03 7.228746e-04
## GO:0042771 37/11248 43/17913 7.108789e-04 2.063500e-03 7.228746e-04
## GO:0045103 37/11248 43/17913 7.108789e-04 2.063500e-03 7.228746e-04
## GO:1901028 37/11248 43/17913 7.108789e-04 2.063500e-03 7.228746e-04
## GO:1902373 37/11248 43/17913 7.108789e-04 2.063500e-03 7.228746e-04
## GO:0035304 104/11248 137/17913 7.152977e-04 2.072423e-03 7.260002e-04
## GO:0003171 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0006700 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0006779 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0007205 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0007263 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0009154 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0022011 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0032292 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0032967 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0034114 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0039528 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0050820 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0060142 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0060706 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0061437 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0061440 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0070168 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0070911 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0072202 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:1902175 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:1903203 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:1904353 24/11248 26/17913 7.215938e-04 2.072423e-03 7.260002e-04
## GO:0090130 257/11248 363/17913 7.325523e-04 2.102927e-03 7.366864e-04
## GO:1903312 56/11248 69/17913 7.543841e-04 2.164604e-03 7.582925e-04
## GO:0098661 71/11248 90/17913 7.587844e-04 2.172979e-03 7.612267e-04
## GO:0006293 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0006295 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0007026 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0015813 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0019228 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0032469 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0035162 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0042438 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0043090 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0046827 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0048485 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0060396 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0060479 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0071379 20/11248 21/17913 7.625284e-04 2.172979e-03 7.612267e-04
## GO:0042093 48/11248 58/17913 7.724999e-04 2.199386e-03 7.704772e-04
## GO:0051057 48/11248 58/17913 7.724999e-04 2.199386e-03 7.704772e-04
## GO:0046916 66/11248 83/17913 7.754987e-04 2.205910e-03 7.727628e-04
## GO:1905897 66/11248 83/17913 7.754987e-04 2.205910e-03 7.727628e-04
## GO:0006338 117/11248 156/17913 7.764838e-04 2.207705e-03 7.733917e-04
## GO:0006813 143/11248 194/17913 7.943026e-04 2.257339e-03 7.907791e-04
## GO:0006909 220/11248 308/17913 8.011641e-04 2.275802e-03 7.972470e-04
## GO:0010823 45/11248 54/17913 8.383524e-04 2.378191e-03 8.331153e-04
## GO:0046173 45/11248 54/17913 8.383524e-04 2.378191e-03 8.331153e-04
## GO:1904645 45/11248 54/17913 8.383524e-04 2.378191e-03 8.331153e-04
## GO:0032635 112/11248 149/17913 8.649583e-04 2.452550e-03 8.591643e-04
## GO:0007034 80/11248 103/17913 8.702020e-04 2.460776e-03 8.620460e-04
## GO:0001569 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0006362 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0007094 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0031572 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0031577 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0032728 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0046596 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0071173 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0071174 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0090659 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:1902895 27/11248 30/17913 8.725932e-04 2.460776e-03 8.620460e-04
## GO:0071901 103/11248 136/17913 8.742262e-04 2.464267e-03 8.632690e-04
## GO:0043666 87/11248 113/17913 8.748839e-04 2.464372e-03 8.633059e-04
## GO:0002028 58/11248 72/17913 8.758438e-04 2.464372e-03 8.633059e-04
## GO:0002532 58/11248 72/17913 8.758438e-04 2.464372e-03 8.633059e-04
## GO:0006081 58/11248 72/17913 8.758438e-04 2.464372e-03 8.633059e-04
## GO:2001021 63/11248 79/17913 8.826096e-04 2.482290e-03 8.695827e-04
## GO:0007602 42/11248 50/17913 8.991900e-04 2.524369e-03 8.843235e-04
## GO:0010718 42/11248 50/17913 8.991900e-04 2.524369e-03 8.843235e-04
## GO:0060425 42/11248 50/17913 8.991900e-04 2.524369e-03 8.843235e-04
## GO:0099024 42/11248 50/17913 8.991900e-04 2.524369e-03 8.843235e-04
## GO:1901861 114/11248 152/17913 9.015188e-04 2.529768e-03 8.862150e-04
## GO:0010566 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0030812 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0033540 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0035815 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0042362 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0042535 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0042921 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0042994 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0043518 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0044406 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0046184 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0051198 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0051883 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:1903543 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:2000369 15/11248 15/17913 9.270331e-04 2.583929e-03 9.051882e-04
## GO:0002287 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0002293 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0016575 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0030032 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0042733 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0048645 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0070988 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:1904377 50/11248 61/17913 9.335343e-04 2.592781e-03 9.082895e-04
## GO:0032273 89/11248 116/17913 9.359362e-04 2.598296e-03 9.102212e-04
## GO:0032330 39/11248 46/17913 9.498446e-04 2.632221e-03 9.221059e-04
## GO:0032480 39/11248 46/17913 9.498446e-04 2.632221e-03 9.221059e-04
## GO:0032757 39/11248 46/17913 9.498446e-04 2.632221e-03 9.221059e-04
## GO:0070169 39/11248 46/17913 9.498446e-04 2.632221e-03 9.221059e-04
## GO:0018149 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0032148 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0032435 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0032735 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0035088 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0061245 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0071392 30/11248 34/17913 9.575560e-04 2.645365e-03 9.267103e-04
## GO:0002792 107/11248 142/17913 9.614967e-04 2.655076e-03 9.301121e-04
## GO:0030833 98/11248 129/17913 9.635408e-04 2.659035e-03 9.314989e-04
## GO:0009119 70/11248 89/17913 9.637828e-04 2.659035e-03 9.314989e-04
## GO:0032731 36/11248 42/17913 9.831965e-04 2.706611e-03 9.481655e-04
## GO:0045104 36/11248 42/17913 9.831965e-04 2.706611e-03 9.481655e-04
## GO:0051489 36/11248 42/17913 9.831965e-04 2.706611e-03 9.481655e-04
## GO:0060999 36/11248 42/17913 9.831965e-04 2.706611e-03 9.481655e-04
## GO:1900271 36/11248 42/17913 9.831965e-04 2.706611e-03 9.481655e-04
## GO:0072091 55/11248 68/17913 9.854914e-04 2.711731e-03 9.499594e-04
## GO:0032350 33/11248 38/17913 9.897700e-04 2.719905e-03 9.528228e-04
## GO:0043331 33/11248 38/17913 9.897700e-04 2.719905e-03 9.528228e-04
## GO:0072583 33/11248 38/17913 9.897700e-04 2.719905e-03 9.528228e-04
## GO:0034502 65/11248 82/17913 9.928406e-04 2.725942e-03 9.549375e-04
## GO:2000106 65/11248 82/17913 9.928406e-04 2.725942e-03 9.549375e-04
## GO:0072078 60/11248 75/17913 1.002502e-03 2.751257e-03 9.638059e-04
## GO:1903509 84/11248 109/17913 1.012959e-03 2.778734e-03 9.734312e-04
## GO:0006879 47/11248 57/17913 1.028729e-03 2.818275e-03 9.872833e-04
## GO:0035904 47/11248 57/17913 1.028729e-03 2.818275e-03 9.872833e-04
## GO:0045604 47/11248 57/17913 1.028729e-03 2.818275e-03 9.872833e-04
## GO:0006821 72/11248 92/17913 1.060859e-03 2.903746e-03 1.017225e-03
## GO:2001022 72/11248 92/17913 1.060859e-03 2.903746e-03 1.017225e-03
## GO:0001702 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0002068 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0003071 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0003309 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0009065 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0010460 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0030194 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0032104 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0032107 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0032616 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0060740 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0090025 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:1900048 23/11248 25/17913 1.067366e-03 2.904986e-03 1.017659e-03
## GO:0006282 86/11248 112/17913 1.084757e-03 2.949745e-03 1.033339e-03
## GO:1903828 86/11248 112/17913 1.084757e-03 2.949745e-03 1.033339e-03
## GO:0051224 139/11248 189/17913 1.091439e-03 2.966622e-03 1.039251e-03
## GO:0019915 52/11248 64/17913 1.104464e-03 3.000717e-03 1.051195e-03
## GO:0034308 62/11248 78/17913 1.133371e-03 3.077913e-03 1.078238e-03
## GO:0034637 57/11248 71/17913 1.135959e-03 3.082258e-03 1.079760e-03
## GO:1903036 57/11248 71/17913 1.135959e-03 3.082258e-03 1.079760e-03
## GO:0010634 128/11248 173/17913 1.141910e-03 3.097059e-03 1.084945e-03
## GO:0003323 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0014046 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0014059 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0030878 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0042053 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0042069 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0045821 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0046823 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0060231 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0060487 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0060713 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0071636 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0098743 19/11248 20/17913 1.161506e-03 3.132500e-03 1.097361e-03
## GO:0044784 41/11248 49/17913 1.215206e-03 3.274495e-03 1.147104e-03
## GO:0051306 41/11248 49/17913 1.215206e-03 3.274495e-03 1.147104e-03
## GO:0043271 108/11248 144/17913 1.216085e-03 3.275449e-03 1.147438e-03
## GO:0002260 49/11248 60/17913 1.231785e-03 3.313443e-03 1.160748e-03
## GO:0006940 49/11248 60/17913 1.231785e-03 3.313443e-03 1.160748e-03
## GO:0010676 49/11248 60/17913 1.231785e-03 3.313443e-03 1.160748e-03
## GO:0006664 83/11248 108/17913 1.257375e-03 3.380821e-03 1.184351e-03
## GO:0006929 26/11248 29/17913 1.260280e-03 3.381344e-03 1.184534e-03
## GO:0021602 26/11248 29/17913 1.260280e-03 3.381344e-03 1.184534e-03
## GO:0034205 26/11248 29/17913 1.260280e-03 3.381344e-03 1.184534e-03
## GO:0048873 26/11248 29/17913 1.260280e-03 3.381344e-03 1.184534e-03
## GO:0072606 26/11248 29/17913 1.260280e-03 3.381344e-03 1.184534e-03
## GO:0000910 110/11248 147/17913 1.264606e-03 3.391494e-03 1.188090e-03
## GO:0042531 54/11248 67/17913 1.283479e-03 3.436199e-03 1.203751e-03
## GO:0050918 54/11248 67/17913 1.283479e-03 3.436199e-03 1.203751e-03
## GO:0070227 54/11248 67/17913 1.283479e-03 3.436199e-03 1.203751e-03
## GO:1903051 54/11248 67/17913 1.283479e-03 3.436199e-03 1.203751e-03
## GO:2001257 123/11248 166/17913 1.287156e-03 3.444564e-03 1.206681e-03
## GO:0032570 38/11248 45/17913 1.295383e-03 3.463609e-03 1.213353e-03
## GO:0043039 38/11248 45/17913 1.295383e-03 3.463609e-03 1.213353e-03
## GO:0001709 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0007080 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0031057 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0048066 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0050873 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0051653 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0090224 35/11248 41/17913 1.355208e-03 3.611848e-03 1.265283e-03
## GO:0032892 29/11248 33/17913 1.357193e-03 3.611848e-03 1.265283e-03
## GO:0097242 29/11248 33/17913 1.357193e-03 3.611848e-03 1.265283e-03
## GO:1901186 29/11248 33/17913 1.357193e-03 3.611848e-03 1.265283e-03
## GO:1902742 29/11248 33/17913 1.357193e-03 3.611848e-03 1.265283e-03
## GO:0007416 127/11248 172/17913 1.360679e-03 3.619580e-03 1.267992e-03
## GO:0086065 46/11248 56/17913 1.365505e-03 3.630869e-03 1.271947e-03
## GO:0044091 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0045684 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0048488 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0060236 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0072665 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0140238 32/11248 37/17913 1.381609e-03 3.664318e-03 1.283665e-03
## GO:0033002 175/11248 243/17913 1.437834e-03 3.810545e-03 1.334890e-03
## GO:0033865 96/11248 127/17913 1.439186e-03 3.810545e-03 1.334890e-03
## GO:0033875 96/11248 127/17913 1.439186e-03 3.810545e-03 1.334890e-03
## GO:0034032 96/11248 127/17913 1.439186e-03 3.810545e-03 1.334890e-03
## GO:0045685 61/11248 77/17913 1.451143e-03 3.840574e-03 1.345410e-03
## GO:0002523 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0006837 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0014857 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0019883 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0030207 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0030889 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0033151 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0035810 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0042033 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0042447 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0045064 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0046068 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0048569 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0050755 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0050862 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0060732 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0070669 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0070672 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0072216 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0099509 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:2001212 14/11248 14/17913 1.477031e-03 3.874566e-03 1.357318e-03
## GO:0048016 43/11248 52/17913 1.502260e-03 3.937437e-03 1.379342e-03
## GO:1905818 43/11248 52/17913 1.502260e-03 3.937437e-03 1.379342e-03
## GO:0022404 68/11248 87/17913 1.542235e-03 4.035430e-03 1.413670e-03
## GO:0022405 68/11248 87/17913 1.542235e-03 4.035430e-03 1.413670e-03
## GO:0043648 68/11248 87/17913 1.542235e-03 4.035430e-03 1.413670e-03
## GO:0072676 68/11248 87/17913 1.542235e-03 4.035430e-03 1.413670e-03
## GO:0090132 251/11248 357/17913 1.574102e-03 4.098587e-03 1.435795e-03
## GO:0000132 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0001914 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0010640 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0032528 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0032897 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0032958 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0033081 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0046639 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0060343 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0072012 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:2000209 22/11248 24/17913 1.574257e-03 4.098587e-03 1.435795e-03
## GO:0010631 249/11248 354/17913 1.577465e-03 4.105227e-03 1.438121e-03
## GO:0016202 111/11248 149/17913 1.578468e-03 4.106124e-03 1.438436e-03
## GO:0010921 126/11248 171/17913 1.618345e-03 4.205502e-03 1.473249e-03
## GO:0043433 126/11248 171/17913 1.618345e-03 4.205502e-03 1.473249e-03
## GO:0090303 48/11248 59/17913 1.620042e-03 4.205502e-03 1.473249e-03
## GO:0120193 48/11248 59/17913 1.620042e-03 4.205502e-03 1.473249e-03
## GO:2000514 48/11248 59/17913 1.620042e-03 4.205502e-03 1.473249e-03
## GO:0002686 40/11248 48/17913 1.636658e-03 4.241576e-03 1.485886e-03
## GO:0032653 40/11248 48/17913 1.636658e-03 4.241576e-03 1.485886e-03
## GO:0045933 40/11248 48/17913 1.636658e-03 4.241576e-03 1.485886e-03
## GO:1903307 40/11248 48/17913 1.636658e-03 4.241576e-03 1.485886e-03
## GO:0031398 84/11248 110/17913 1.655533e-03 4.288711e-03 1.502399e-03
## GO:0048332 58/11248 73/17913 1.659015e-03 4.294164e-03 1.504309e-03
## GO:0050688 58/11248 73/17913 1.659015e-03 4.294164e-03 1.504309e-03
## GO:0002292 53/11248 66/17913 1.666334e-03 4.307747e-03 1.509067e-03
## GO:0016239 53/11248 66/17913 1.666334e-03 4.307747e-03 1.509067e-03
## GO:1900076 53/11248 66/17913 1.666334e-03 4.307747e-03 1.509067e-03
## GO:0048259 77/11248 100/17913 1.689912e-03 4.366890e-03 1.529786e-03
## GO:1903825 86/11248 113/17913 1.753243e-03 4.517101e-03 1.582407e-03
## GO:1905039 86/11248 113/17913 1.753243e-03 4.517101e-03 1.582407e-03
## GO:0030071 37/11248 44/17913 1.760433e-03 4.517101e-03 1.582407e-03
## GO:0046164 37/11248 44/17913 1.760433e-03 4.517101e-03 1.582407e-03
## GO:0051205 37/11248 44/17913 1.760433e-03 4.517101e-03 1.582407e-03
## GO:0072523 37/11248 44/17913 1.760433e-03 4.517101e-03 1.582407e-03
## GO:1903214 37/11248 44/17913 1.760433e-03 4.517101e-03 1.582407e-03
## GO:0001502 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0002544 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0010738 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0032495 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0034104 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0034643 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0045061 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0046599 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0047497 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0048670 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0050860 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0051546 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0060716 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0070987 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0089718 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0090201 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:1902074 18/11248 19/17913 1.765420e-03 4.517101e-03 1.582407e-03
## GO:0006112 65/11248 83/17913 1.777686e-03 4.546620e-03 1.592748e-03
## GO:0002066 45/11248 55/17913 1.806450e-03 4.592814e-03 1.608930e-03
## GO:0031102 45/11248 55/17913 1.806450e-03 4.592814e-03 1.608930e-03
## GO:0051310 45/11248 55/17913 1.806450e-03 4.592814e-03 1.608930e-03
## GO:0120192 45/11248 55/17913 1.806450e-03 4.592814e-03 1.608930e-03
## GO:0098813 159/11248 220/17913 1.810299e-03 4.592814e-03 1.608930e-03
## GO:0001964 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0006482 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0006972 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0007628 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0008214 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0010165 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0018146 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0021884 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0031116 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0032770 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0033032 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0034367 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0034368 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0034369 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0042634 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0048265 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0060292 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0085029 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0090200 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:1902932 25/11248 28/17913 1.814154e-03 4.592814e-03 1.608930e-03
## GO:0008037 97/11248 129/17913 1.831735e-03 4.635440e-03 1.623863e-03
## GO:0048844 60/11248 76/17913 1.852473e-03 4.686020e-03 1.641582e-03
## GO:0001756 50/11248 62/17913 1.884626e-03 4.763491e-03 1.668721e-03
## GO:0032729 50/11248 62/17913 1.884626e-03 4.763491e-03 1.668721e-03
## GO:0003176 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0006356 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0016486 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0046685 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0060674 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0086019 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:1904031 28/11248 32/17913 1.916854e-03 4.823915e-03 1.689888e-03
## GO:0015682 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0033572 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0043114 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0045911 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0046636 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0051293 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0051973 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0072512 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0090313 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:1905332 31/11248 36/17913 1.921678e-03 4.823915e-03 1.689888e-03
## GO:0006383 42/11248 51/17913 2.000658e-03 5.012091e-03 1.755809e-03
## GO:0021545 42/11248 51/17913 2.000658e-03 5.012091e-03 1.755809e-03
## GO:0045744 42/11248 51/17913 2.000658e-03 5.012091e-03 1.755809e-03
## GO:0046579 42/11248 51/17913 2.000658e-03 5.012091e-03 1.755809e-03
## GO:0051058 42/11248 51/17913 2.000658e-03 5.012091e-03 1.755809e-03
## GO:0035051 114/11248 154/17913 2.012018e-03 5.036504e-03 1.764362e-03
## GO:1901568 114/11248 154/17913 2.012018e-03 5.036504e-03 1.764362e-03
## GO:0042303 83/11248 109/17913 2.037625e-03 5.095951e-03 1.785187e-03
## GO:0042633 83/11248 109/17913 2.037625e-03 5.095951e-03 1.785187e-03
## GO:0010951 152/11248 210/17913 2.038217e-03 5.095951e-03 1.785187e-03
## GO:0001708 62/11248 79/17913 2.047911e-03 5.114039e-03 1.791523e-03
## GO:0010833 62/11248 79/17913 2.047911e-03 5.114039e-03 1.791523e-03
## GO:0032204 62/11248 79/17913 2.047911e-03 5.114039e-03 1.791523e-03
## GO:0032677 57/11248 72/17913 2.124397e-03 5.302915e-03 1.857689e-03
## GO:0006687 52/11248 65/17913 2.156416e-03 5.378538e-03 1.884181e-03
## GO:0030858 52/11248 65/17913 2.156416e-03 5.378538e-03 1.884181e-03
## GO:0006953 39/11248 47/17913 2.196419e-03 5.473937e-03 1.917600e-03
## GO:0043370 39/11248 47/17913 2.196419e-03 5.473937e-03 1.917600e-03
## GO:0051291 96/11248 128/17913 2.220024e-03 5.528348e-03 1.936662e-03
## GO:0070972 96/11248 128/17913 2.220024e-03 5.528348e-03 1.936662e-03
## GO:0017015 87/11248 115/17913 2.262023e-03 5.630686e-03 1.972512e-03
## GO:0036473 71/11248 92/17913 2.272116e-03 5.653555e-03 1.980523e-03
## GO:0006119 98/11248 131/17913 2.307819e-03 5.729618e-03 2.007170e-03
## GO:0006458 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0007413 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0007530 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0009404 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0032703 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0050926 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0051570 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0060143 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0060445 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0071157 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0071677 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0106030 21/11248 23/17913 2.314626e-03 5.729618e-03 2.007170e-03
## GO:0006206 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0006705 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0006883 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0007320 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0007494 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0008212 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0009635 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0009650 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0010745 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0014842 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0020027 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0032530 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0032536 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0033008 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0033127 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0034374 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0035723 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0035745 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0042790 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0043306 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0045073 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0045820 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0047484 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0048291 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0048308 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0048313 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0051938 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0060347 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0060397 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0071350 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0071352 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0071872 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0097152 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:1901836 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:1902894 13/11248 13/17913 2.353258e-03 5.745449e-03 2.012715e-03
## GO:0051341 80/11248 105/17913 2.368847e-03 5.781248e-03 2.025256e-03
## GO:0046605 44/11248 54/17913 2.381485e-03 5.803840e-03 2.033171e-03
## GO:0070830 44/11248 54/17913 2.381485e-03 5.803840e-03 2.033171e-03
## GO:1903078 44/11248 54/17913 2.381485e-03 5.803840e-03 2.033171e-03
## GO:0050850 36/11248 43/17913 2.383687e-03 5.803840e-03 2.033171e-03
## GO:0051339 36/11248 43/17913 2.383687e-03 5.803840e-03 2.033171e-03
## GO:1904646 36/11248 43/17913 2.383687e-03 5.803840e-03 2.033171e-03
## GO:0048634 113/11248 153/17913 2.400503e-03 5.842505e-03 2.046715e-03
## GO:0032436 54/11248 68/17913 2.432861e-03 5.918950e-03 2.073495e-03
## GO:0019217 73/11248 95/17913 2.435104e-03 5.922096e-03 2.074597e-03
## GO:0001942 66/11248 85/17913 2.440121e-03 5.931985e-03 2.078062e-03
## GO:0035773 49/11248 61/17913 2.449641e-03 5.950492e-03 2.084545e-03
## GO:2000243 49/11248 61/17913 2.449641e-03 5.950492e-03 2.084545e-03
## GO:0050709 102/11248 137/17913 2.476859e-03 6.014265e-03 2.106885e-03
## GO:0006720 91/11248 121/17913 2.478107e-03 6.014953e-03 2.107127e-03
## GO:0006195 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:0021575 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:0030204 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:0032784 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:0071548 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:2000008 33/11248 39/17913 2.546925e-03 6.167593e-03 2.160599e-03
## GO:0055013 61/11248 78/17913 2.591387e-03 6.272155e-03 2.197228e-03
## GO:0033559 75/11248 98/17913 2.596161e-03 6.272155e-03 2.197228e-03
## GO:0001958 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0003081 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0006298 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0010714 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0036075 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0036336 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0050858 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:1901661 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:2000191 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:2001025 24/11248 27/17913 2.602170e-03 6.272155e-03 2.197228e-03
## GO:0044264 68/11248 88/17913 2.634918e-03 6.346184e-03 2.223161e-03
## GO:1900407 68/11248 88/17913 2.634918e-03 6.346184e-03 2.223161e-03
## GO:0000731 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0001706 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0002931 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0014009 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0036465 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0045540 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0086009 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0106118 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:1905517 41/11248 50/17913 2.654836e-03 6.356672e-03 2.226836e-03
## GO:0007157 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0007603 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0050775 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0060323 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0061077 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0071402 30/11248 35/17913 2.662797e-03 6.356672e-03 2.226836e-03
## GO:0001779 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0007221 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0007271 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0007597 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0009309 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0010107 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0010888 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0032288 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0033005 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0034063 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0036303 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0042789 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0044320 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0046641 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0060749 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0061377 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0070633 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0070932 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0070977 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0071371 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:1901739 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:1902176 17/11248 18/17913 2.676976e-03 6.356672e-03 2.226836e-03
## GO:0045742 27/11248 31/17913 2.697210e-03 6.394982e-03 2.240256e-03
## GO:0061036 27/11248 31/17913 2.697210e-03 6.394982e-03 2.240256e-03
## GO:1901976 27/11248 31/17913 2.697210e-03 6.394982e-03 2.240256e-03
## GO:1902230 27/11248 31/17913 2.697210e-03 6.394982e-03 2.240256e-03
## GO:0001707 56/11248 71/17913 2.711701e-03 6.422016e-03 2.249727e-03
## GO:0019674 56/11248 71/17913 2.711701e-03 6.422016e-03 2.249727e-03
## GO:0043407 56/11248 71/17913 2.711701e-03 6.422016e-03 2.249727e-03
## GO:0015909 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:0015914 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:0031060 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:0045670 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:0046128 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:1905710 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:2000378 51/11248 64/17913 2.781368e-03 6.569546e-03 2.301409e-03
## GO:0007009 70/11248 91/17913 2.827729e-03 6.676524e-03 2.338885e-03
## GO:1903844 88/11248 117/17913 2.883909e-03 6.806592e-03 2.384449e-03
## GO:0043038 38/11248 46/17913 2.936691e-03 6.923310e-03 2.425337e-03
## GO:0061912 38/11248 46/17913 2.936691e-03 6.923310e-03 2.425337e-03
## GO:1902099 38/11248 46/17913 2.936691e-03 6.923310e-03 2.425337e-03
## GO:0045637 178/11248 250/17913 3.017106e-03 7.109297e-03 2.490491e-03
## GO:0048284 72/11248 94/17913 3.017861e-03 7.109297e-03 2.490491e-03
## GO:0055006 65/11248 84/17913 3.055839e-03 7.193331e-03 2.519930e-03
## GO:0090559 65/11248 84/17913 3.055839e-03 7.193331e-03 2.519930e-03
## GO:0031123 81/11248 107/17913 3.063149e-03 7.204047e-03 2.523684e-03
## GO:1904659 81/11248 107/17913 3.063149e-03 7.204047e-03 2.523684e-03
## GO:0032675 103/11248 139/17913 3.063857e-03 7.204047e-03 2.523684e-03
## GO:0042278 53/11248 67/17913 3.115714e-03 7.323219e-03 2.565431e-03
## GO:0000768 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0030166 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0032210 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0043551 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0050994 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0140253 43/11248 53/17913 3.128274e-03 7.336156e-03 2.569963e-03
## GO:0046324 48/11248 60/17913 3.173070e-03 7.435616e-03 2.604806e-03
## GO:2000401 48/11248 60/17913 3.173070e-03 7.435616e-03 2.604806e-03
## GO:0035725 83/11248 110/17913 3.212202e-03 7.511915e-03 2.631534e-03
## GO:0006418 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0009069 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0009311 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0017001 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0045429 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0050654 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0061001 35/11248 42/17913 3.215263e-03 7.511915e-03 2.631534e-03
## GO:0006541 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0006783 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0009110 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0010226 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0030813 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0031342 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0031639 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0032634 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0032656 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0042094 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0044321 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0048714 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0050927 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0051197 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0051220 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0051350 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0051457 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0072643 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0140112 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:1901522 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:1903429 20/11248 22/17913 3.391706e-03 7.862304e-03 2.754281e-03
## GO:0050871 55/11248 70/17913 3.450098e-03 7.994692e-03 2.800658e-03
## GO:0007223 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0007520 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0042149 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0043277 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0071867 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0071869 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0097178 32/11248 38/17913 3.471417e-03 8.023230e-03 2.810655e-03
## GO:0048260 40/11248 49/17913 3.509777e-03 8.105883e-03 2.839610e-03
## GO:0090102 40/11248 49/17913 3.509777e-03 8.105883e-03 2.839610e-03
## GO:0009798 62/11248 80/17913 3.544146e-03 8.182229e-03 2.866355e-03
## GO:0043297 50/11248 63/17913 3.575166e-03 8.247739e-03 2.889304e-03
## GO:0090181 50/11248 63/17913 3.575166e-03 8.247739e-03 2.889304e-03
## GO:0006826 45/11248 56/17913 3.610316e-03 8.325750e-03 2.916633e-03
## GO:0007019 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:0010259 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:0032212 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:0071868 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:0071870 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:1901385 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:2000403 29/11248 34/17913 3.675089e-03 8.453248e-03 2.961297e-03
## GO:0002507 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0002691 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0016577 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0033598 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0042044 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0060037 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0060351 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0061217 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0071377 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0086010 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0098868 23/11248 26/17913 3.718286e-03 8.470598e-03 2.967375e-03
## GO:0006613 80/11248 106/17913 3.740988e-03 8.470598e-03 2.967375e-03
## GO:0000460 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0002468 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0002517 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0002566 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0003084 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0006491 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0019374 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0031115 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0032252 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0033197 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0033605 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0034309 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0036005 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0036006 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0038110 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0042340 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0042368 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0042416 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0043301 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0044650 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0045472 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0046112 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0048302 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0051481 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0051608 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0051873 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0060391 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0060442 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0060900 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0070486 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0070493 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0071472 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0097284 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0098712 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0099640 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:1902337 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:2001053 12/11248 12/17913 3.749170e-03 8.470598e-03 2.967375e-03
## GO:0006471 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0007202 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0016056 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0019098 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0042168 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0043372 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0045197 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0050690 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0060325 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0060338 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:0090314 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:1902991 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:1904837 26/11248 30/17913 3.780241e-03 8.500773e-03 2.977946e-03
## GO:1903779 57/11248 73/17913 3.782319e-03 8.502380e-03 2.978509e-03
## GO:0032465 64/11248 83/17913 3.815372e-03 8.573591e-03 3.003455e-03
## GO:0001974 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0002833 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0030199 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0046580 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0060412 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0072604 37/11248 45/17913 3.911286e-03 8.770167e-03 3.072318e-03
## GO:0042116 73/11248 96/17913 3.944875e-03 8.842304e-03 3.097589e-03
## GO:0006906 52/11248 66/17913 3.976720e-03 8.910481e-03 3.121473e-03
## GO:0003198 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0009067 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0030540 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0031000 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0033145 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0034375 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0036270 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0042401 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0045187 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0051788 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0051957 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0060438 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0060644 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0061298 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0061323 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0071280 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0072673 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:1990573 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:2000136 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:2000831 16/11248 17/17913 4.048598e-03 9.006831e-03 3.155225e-03
## GO:0021879 42/11248 52/17913 4.093929e-03 9.091749e-03 3.184973e-03
## GO:0043954 42/11248 52/17913 4.093929e-03 9.091749e-03 3.184973e-03
## GO:1901185 42/11248 52/17913 4.093929e-03 9.091749e-03 3.184973e-03
## GO:0042267 47/11248 59/17913 4.095514e-03 9.091749e-03 3.184973e-03
## GO:0046530 47/11248 59/17913 4.095514e-03 9.091749e-03 3.184973e-03
## GO:0072678 47/11248 59/17913 4.095514e-03 9.091749e-03 3.184973e-03
## GO:0007033 97/11248 131/17913 4.140802e-03 9.189016e-03 3.219048e-03
## GO:0002639 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:0014002 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:0033173 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:0072210 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:1903053 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:2000404 34/11248 41/17913 4.319620e-03 9.565420e-03 3.350907e-03
## GO:0031124 68/11248 89/17913 4.341875e-03 9.611290e-03 3.366976e-03
## GO:0002181 54/11248 69/17913 4.374875e-03 9.680905e-03 3.391363e-03
## GO:0002460 207/11248 295/17913 4.443377e-03 9.829001e-03 3.443244e-03
## GO:0055007 90/11248 121/17913 4.536152e-03 1.003067e-02 3.513890e-03
## GO:0035794 49/11248 62/17913 4.579316e-03 1.011894e-02 3.544814e-03
## GO:0048857 49/11248 62/17913 4.579316e-03 1.011894e-02 3.544814e-03
## GO:0048659 126/11248 174/17913 4.583425e-03 1.012444e-02 3.546739e-03
## GO:0031103 39/11248 48/17913 4.622051e-03 1.019892e-02 3.572833e-03
## GO:0034656 39/11248 48/17913 4.622051e-03 1.019892e-02 3.572833e-03
## GO:0051972 39/11248 48/17913 4.622051e-03 1.019892e-02 3.572833e-03
## GO:0006949 44/11248 55/17913 4.681624e-03 1.031578e-02 3.613769e-03
## GO:0070936 44/11248 55/17913 4.681624e-03 1.031578e-02 3.613769e-03
## GO:0098586 44/11248 55/17913 4.681624e-03 1.031578e-02 3.613769e-03
## GO:0098900 44/11248 55/17913 4.681624e-03 1.031578e-02 3.613769e-03
## GO:0002714 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0002891 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0003009 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0043029 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0045214 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0048278 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:1904358 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:1905898 31/11248 37/17913 4.712036e-03 1.035353e-02 3.626995e-03
## GO:0000724 81/11248 108/17913 4.747977e-03 1.042149e-02 3.650802e-03
## GO:0032411 81/11248 108/17913 4.747977e-03 1.042149e-02 3.650802e-03
## GO:0045047 81/11248 108/17913 4.747977e-03 1.042149e-02 3.650802e-03
## GO:0050000 56/11248 72/17913 4.767266e-03 1.045647e-02 3.663056e-03
## GO:0051303 56/11248 72/17913 4.767266e-03 1.045647e-02 3.663056e-03
## GO:0000423 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0002089 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0003177 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0015721 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0030728 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0032674 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0034204 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0035024 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0036344 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0036499 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0039531 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0042454 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0045332 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0050802 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0051589 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0055093 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0060260 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0071711 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0072111 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:1902667 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:1903055 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:2000144 19/11248 21/17913 4.951792e-03 1.077784e-02 3.775635e-03
## GO:0065004 150/11248 210/17913 5.048484e-03 1.094783e-02 3.835185e-03
## GO:0003338 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0006084 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0006308 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0007616 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0009225 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0043928 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0048011 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0055094 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0098751 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:1901797 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:2000352 28/11248 33/17913 5.050953e-03 1.094783e-02 3.835185e-03
## GO:0030641 51/11248 65/17913 5.057978e-03 1.095544e-02 3.837851e-03
## GO:0045428 51/11248 65/17913 5.057978e-03 1.095544e-02 3.837851e-03
## GO:0010043 36/11248 44/17913 5.188332e-03 1.122998e-02 3.934029e-03
## GO:0097720 36/11248 44/17913 5.188332e-03 1.122998e-02 3.934029e-03
## GO:0032200 121/11248 167/17913 5.230324e-03 1.131695e-02 3.964494e-03
## GO:0030520 46/11248 58/17913 5.266700e-03 1.136252e-02 3.980457e-03
## GO:0046626 46/11248 58/17913 5.266700e-03 1.136252e-02 3.980457e-03
## GO:0046847 46/11248 58/17913 5.266700e-03 1.136252e-02 3.980457e-03
## GO:0010575 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0021696 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0033014 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0043457 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0070528 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0070536 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0071549 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:2000036 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:2000778 25/11248 29/17913 5.275872e-03 1.136252e-02 3.980457e-03
## GO:0060271 233/11248 335/17913 5.285053e-03 1.136252e-02 3.980457e-03
## GO:0001963 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0006517 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0014829 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0035640 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0048169 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0060669 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0070076 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0097066 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:2000482 22/11248 25/17913 5.291458e-03 1.136252e-02 3.980457e-03
## GO:0032206 41/11248 51/17913 5.336966e-03 1.145235e-02 4.011928e-03
## GO:0045620 41/11248 51/17913 5.336966e-03 1.145235e-02 4.011928e-03
## GO:0046323 53/11248 68/17913 5.528461e-03 1.185919e-02 4.154450e-03
## GO:0002449 205/11248 293/17913 5.673688e-03 1.216654e-02 4.262118e-03
## GO:1905952 110/11248 151/17913 5.717326e-03 1.225590e-02 4.293423e-03
## GO:0033146 33/11248 40/17913 5.779032e-03 1.237542e-02 4.335292e-03
## GO:0043403 33/11248 40/17913 5.779032e-03 1.237542e-02 4.335292e-03
## GO:0048286 33/11248 40/17913 5.779032e-03 1.237542e-02 4.335292e-03
## GO:0051453 48/11248 61/17913 5.844190e-03 1.251066e-02 4.382668e-03
## GO:0007018 159/11248 224/17913 5.890631e-03 1.252405e-02 4.387358e-03
## GO:0030510 62/11248 81/17913 5.892358e-03 1.252405e-02 4.387358e-03
## GO:0046889 62/11248 81/17913 5.892358e-03 1.252405e-02 4.387358e-03
## GO:0015748 71/11248 94/17913 5.926239e-03 1.252405e-02 4.387358e-03
## GO:0001821 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0001867 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0002483 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0002604 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0002923 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0003093 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0003157 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0006681 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0006702 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0007100 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0007216 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0009071 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0009437 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0009950 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0010623 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0016446 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0019042 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0019371 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0021534 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0031581 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0031915 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0032276 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0032351 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0032494 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0032908 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0033089 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0033860 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0034776 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0035404 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0035457 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0039532 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0042501 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0043247 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0045059 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0045628 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0046886 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0050667 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0051024 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0051573 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0060433 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0061307 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0061308 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0070278 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0070471 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0070757 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0071679 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0072310 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0072611 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0090042 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0090085 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0099566 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:1904263 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:1905383 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:2000551 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:2000615 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:2001241 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:2001269 11/11248 11/17913 5.972914e-03 1.252405e-02 4.387358e-03
## GO:0090174 55/11248 71/17913 5.988337e-03 1.255217e-02 4.397209e-03
## GO:0006636 43/11248 54/17913 6.047543e-03 1.264852e-02 4.430962e-03
## GO:0002832 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:0006301 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:0042059 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:0045646 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:1903115 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:2000059 38/11248 47/17913 6.062283e-03 1.264852e-02 4.430962e-03
## GO:0001780 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0001916 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0001977 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0002076 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0006086 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0006555 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0010934 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0015919 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0030033 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0030252 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0031643 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0032354 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0032695 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0033033 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0035459 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0035970 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0045623 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0048385 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0050774 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0055075 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0055119 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0061548 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0070293 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0072224 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0090493 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0099010 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0099170 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:2000251 15/11248 16/17913 6.105273e-03 1.264852e-02 4.430962e-03
## GO:0048660 124/11248 172/17913 6.242359e-03 1.292823e-02 4.528950e-03
## GO:0034219 86/11248 116/17913 6.341822e-03 1.312987e-02 4.599585e-03
## GO:0003156 30/11248 36/17913 6.368392e-03 1.316739e-02 4.612732e-03
## GO:0010573 30/11248 36/17913 6.368392e-03 1.316739e-02 4.612732e-03
## GO:0048255 30/11248 36/17913 6.368392e-03 1.316739e-02 4.612732e-03
## GO:1905521 30/11248 36/17913 6.368392e-03 1.316739e-02 4.612732e-03
## GO:0006278 57/11248 74/17913 6.435700e-03 1.329775e-02 4.658396e-03
## GO:0042246 57/11248 74/17913 6.435700e-03 1.329775e-02 4.658396e-03
## GO:0098773 66/11248 87/17913 6.587232e-03 1.360634e-02 4.766502e-03
## GO:0090305 188/11248 268/17913 6.602509e-03 1.363338e-02 4.775975e-03
## GO:0006614 77/11248 103/17913 6.704696e-03 1.383981e-02 4.848288e-03
## GO:0038093 170/11248 241/17913 6.735019e-03 1.389780e-02 4.868604e-03
## GO:0010466 158/11248 223/17913 6.744030e-03 1.391179e-02 4.873506e-03
## GO:0045824 45/11248 57/17913 6.747107e-03 1.391354e-02 4.874117e-03
## GO:0010883 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:0034198 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:0043616 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:1902743 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:1904407 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:2001239 35/11248 43/17913 6.853410e-03 1.410477e-02 4.941110e-03
## GO:0007190 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0030261 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0032633 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0032733 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0040018 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0043368 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0046949 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0050931 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0061462 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0071709 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:1903955 27/11248 32/17913 6.911135e-03 1.417214e-02 4.964710e-03
## GO:0030901 68/11248 90/17913 6.915910e-03 1.417727e-02 4.966508e-03
## GO:0045851 40/11248 50/17913 6.929540e-03 1.419589e-02 4.973028e-03
## GO:0099072 40/11248 50/17913 6.929540e-03 1.419589e-02 4.973028e-03
## GO:0006721 79/11248 106/17913 6.943046e-03 1.421888e-02 4.981084e-03
## GO:0045995 94/11248 128/17913 7.013779e-03 1.435903e-02 5.030178e-03
## GO:0045598 96/11248 131/17913 7.161369e-03 1.460262e-02 5.115512e-03
## GO:0000725 81/11248 109/17913 7.170771e-03 1.460262e-02 5.115512e-03
## GO:0002052 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0002320 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0002374 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0009081 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0009083 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0015874 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0030220 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0031498 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0032727 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0032816 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0032986 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0033630 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0035357 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0035929 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0039529 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0043371 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0043984 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0051797 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0061162 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0070584 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0086014 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0086026 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0086066 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0097062 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0098780 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:1903204 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:1903599 18/11248 20/17913 7.200650e-03 1.460262e-02 5.115512e-03
## GO:0006637 70/11248 93/17913 7.231557e-03 1.465101e-02 5.132463e-03
## GO:0035383 70/11248 93/17913 7.231557e-03 1.465101e-02 5.132463e-03
## GO:0051983 70/11248 93/17913 7.231557e-03 1.465101e-02 5.132463e-03
## GO:0000305 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0000737 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0001773 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0003180 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0030511 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0032607 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0032814 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0036296 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0042311 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0050974 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0070198 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:1902745 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:1903846 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:1990776 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:2000406 24/11248 28/17913 7.330264e-03 1.477899e-02 5.177297e-03
## GO:0008645 83/11248 112/17913 7.387931e-03 1.488563e-02 5.214655e-03
## GO:0072599 83/11248 112/17913 7.387931e-03 1.488563e-02 5.214655e-03
## GO:0009880 47/11248 60/17913 7.430503e-03 1.496174e-02 5.241319e-03
## GO:1902686 47/11248 60/17913 7.430503e-03 1.496174e-02 5.241319e-03
## GO:0003272 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0006688 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0008210 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0021680 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0021952 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0022410 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0032800 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0032925 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0036003 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0045724 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0046697 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0050996 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0062009 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0070199 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:1901889 21/11248 24/17913 7.497211e-03 1.502332e-02 5.262891e-03
## GO:0006672 63/11248 83/17913 7.689834e-03 1.537967e-02 5.387726e-03
## GO:0031062 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0042269 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0045616 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0046834 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0048713 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0090279 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:1902229 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:2000826 32/11248 39/17913 7.697664e-03 1.537967e-02 5.387726e-03
## GO:0006486 161/11248 228/17913 7.702164e-03 1.537967e-02 5.387726e-03
## GO:0043413 161/11248 228/17913 7.702164e-03 1.537967e-02 5.387726e-03
## GO:0008593 74/11248 99/17913 7.823027e-03 1.561601e-02 5.470519e-03
## GO:0030837 37/11248 46/17913 7.917956e-03 1.579035e-02 5.531591e-03
## GO:0070231 37/11248 46/17913 7.917956e-03 1.579035e-02 5.531591e-03
## GO:1990928 37/11248 46/17913 7.917956e-03 1.579035e-02 5.531591e-03
## GO:0043500 89/11248 121/17913 7.977254e-03 1.590352e-02 5.571236e-03
## GO:0034103 65/11248 86/17913 8.075887e-03 1.608987e-02 5.636518e-03
## GO:1903321 65/11248 86/17913 8.075887e-03 1.608987e-02 5.636518e-03
## GO:0002228 49/11248 63/17913 8.093840e-03 1.611020e-02 5.643641e-03
## GO:0006487 49/11248 63/17913 8.093840e-03 1.611020e-02 5.643641e-03
## GO:0021872 49/11248 63/17913 8.093840e-03 1.611020e-02 5.643641e-03
## GO:0009953 67/11248 89/17913 8.445229e-03 1.680425e-02 5.886777e-03
## GO:0031397 58/11248 76/17913 8.507702e-03 1.692316e-02 5.928433e-03
## GO:0019076 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0030224 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0035890 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0035891 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0045622 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0048333 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0052126 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0052192 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0098534 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:1903131 29/11248 35/17913 8.567835e-03 1.698861e-02 5.951359e-03
## GO:0050684 80/11248 108/17913 8.610606e-03 1.706799e-02 5.979168e-03
## GO:0000271 51/11248 66/17913 8.734253e-03 1.730758e-02 6.063101e-03
## GO:0046620 82/11248 111/17913 8.847070e-03 1.752557e-02 6.139466e-03
## GO:0003254 39/11248 49/17913 8.959920e-03 1.772660e-02 6.209890e-03
## GO:0008333 39/11248 49/17913 8.959920e-03 1.772660e-02 6.209890e-03
## GO:0060563 39/11248 49/17913 8.959920e-03 1.772660e-02 6.209890e-03
## GO:1902369 39/11248 49/17913 8.959920e-03 1.772660e-02 6.209890e-03
## GO:0036503 60/11248 79/17913 8.982882e-03 1.776640e-02 6.223831e-03
## GO:0051181 34/11248 42/17913 9.013134e-03 1.780365e-02 6.236881e-03
## GO:0051646 34/11248 42/17913 9.013134e-03 1.780365e-02 6.236881e-03
## GO:0086004 34/11248 42/17913 9.013134e-03 1.780365e-02 6.236881e-03
## GO:0090311 34/11248 42/17913 9.013134e-03 1.780365e-02 6.236881e-03
## GO:0015749 84/11248 114/17913 9.070869e-03 1.787824e-02 6.263011e-03
## GO:0072527 71/11248 95/17913 9.133347e-03 1.787824e-02 6.263011e-03
## GO:0001946 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0002693 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0006474 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0006895 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0009415 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0010759 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0010819 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0014856 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0015732 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032105 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032108 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032274 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032352 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032486 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0032736 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0034349 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0034616 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0035864 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0043931 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0044144 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0046629 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0048012 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0048268 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0051709 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0060134 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0060766 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0070262 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0071218 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0071380 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0072109 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0072160 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0090197 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0098840 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0098856 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0099118 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0099590 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:1900119 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:1900451 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:1901741 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:1905153 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:2000484 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:2001028 14/11248 15/17913 9.177000e-03 1.787824e-02 6.263011e-03
## GO:0008643 107/11248 148/17913 9.235027e-03 1.798006e-02 6.298678e-03
## GO:1902600 107/11248 148/17913 9.235027e-03 1.798006e-02 6.298678e-03
## GO:0000281 53/11248 69/17913 9.349714e-03 1.806896e-02 6.329821e-03
## GO:0051298 46/11248 59/17913 9.410896e-03 1.806896e-02 6.329821e-03
## GO:0003382 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0006904 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0016601 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0030262 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0033198 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0035767 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0035774 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0043330 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0044068 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0045987 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:1900077 26/11248 31/17913 9.412002e-03 1.806896e-02 6.329821e-03
## GO:0046470 62/11248 82/17913 9.436839e-03 1.806896e-02 6.329821e-03
## GO:0043266 73/11248 98/17913 9.452233e-03 1.806896e-02 6.329821e-03
## GO:0000338 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0001553 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0001886 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0002664 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0002713 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0002887 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0002890 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0006188 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0006563 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0006596 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0006971 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0007016 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0009162 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0009263 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0010739 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0010749 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0019062 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0021548 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0021924 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0021930 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0021936 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0030647 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032070 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032275 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032341 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032342 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032353 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0032488 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0035865 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0036376 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0036500 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0045060 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0045080 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0045647 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0046040 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0046501 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0048304 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0051583 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0051593 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0051934 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0060033 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0060068 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0060368 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0060525 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0060767 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0070099 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0070472 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0070942 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0071104 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0071803 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0072015 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0075522 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0086070 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0090030 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0090037 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0090557 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0097050 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:0106049 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1901838 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1903800 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1904526 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1904779 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1990535 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:2000665 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:2001054 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:2001214 10/11248 10/17913 9.515312e-03 1.806896e-02 6.329821e-03
## GO:1903426 75/11248 101/17913 9.754581e-03 1.851767e-02 6.487014e-03
## GO:0070085 169/11248 241/17913 9.840416e-03 1.867494e-02 6.542105e-03
## GO:0006073 55/11248 72/17913 9.938862e-03 1.885030e-02 6.603536e-03
## GO:0044042 55/11248 72/17913 9.938862e-03 1.885030e-02 6.603536e-03
## GO:0007566 41/11248 52/17913 9.970104e-03 1.889806e-02 6.620268e-03
## GO:0051568 41/11248 52/17913 9.970104e-03 1.889806e-02 6.620268e-03
## GO:0000303 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0002183 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0032673 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0035456 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0042745 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0048520 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0072207 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:1902751 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:1905144 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:1905145 23/11248 27/17913 1.013595e-02 1.915421e-02 6.710003e-03
## GO:0045739 48/11248 62/17913 1.018090e-02 1.923334e-02 6.737720e-03
## GO:0001825 31/11248 38/17913 1.020621e-02 1.925781e-02 6.746295e-03
## GO:0086005 31/11248 38/17913 1.020621e-02 1.925781e-02 6.746295e-03
## GO:1902042 31/11248 38/17913 1.020621e-02 1.925781e-02 6.746295e-03
## GO:2000279 31/11248 38/17913 1.020621e-02 1.925781e-02 6.746295e-03
## GO:0070316 36/11248 45/17913 1.029651e-02 1.942233e-02 6.803929e-03
## GO:0002710 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0002827 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0003215 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0006833 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0007095 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0010544 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0023019 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0031061 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0032026 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0032069 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0032095 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0032303 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0032331 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0035728 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0045063 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0045076 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0046597 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0048486 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0061081 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0072576 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0090280 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:0140131 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:1900409 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:1903392 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:1903798 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:1905939 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:2000678 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:2000696 17/11248 19/17913 1.042520e-02 1.949997e-02 6.831127e-03
## GO:1903201 57/11248 75/17913 1.050088e-02 1.963563e-02 6.878650e-03
## GO:0001919 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0003416 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0007617 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0009648 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0021801 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0021895 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0022030 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0030517 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0030539 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0031579 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0032098 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0032753 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0051882 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0051953 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0051968 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0071305 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0072243 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0072666 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0086012 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0090140 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0090189 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:1902003 20/11248 23/17913 1.057224e-02 1.963955e-02 6.880023e-03
## GO:0010717 68/11248 91/17913 1.067007e-02 1.980949e-02 6.939555e-03
## GO:0030148 68/11248 91/17913 1.067007e-02 1.980949e-02 6.939555e-03
## GO:0098754 83/11248 113/17913 1.080495e-02 2.005393e-02 7.025186e-03
## GO:0032387 50/11248 65/17913 1.091743e-02 2.025065e-02 7.094101e-03
## GO:0072577 50/11248 65/17913 1.091743e-02 2.025065e-02 7.094101e-03
## GO:0035306 43/11248 55/17913 1.094209e-02 2.029035e-02 7.108008e-03
## GO:1902882 72/11248 97/17913 1.138675e-02 2.110863e-02 7.394664e-03
## GO:0000291 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0010574 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0035909 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0045730 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0048536 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0051180 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0060795 28/11248 34/17913 1.147165e-02 2.122187e-02 7.434333e-03
## GO:0006749 38/11248 48/17913 1.153517e-02 2.131409e-02 7.466639e-03
## GO:0030042 38/11248 48/17913 1.153517e-02 2.131409e-02 7.466639e-03
## GO:0051452 38/11248 48/17913 1.153517e-02 2.131409e-02 7.466639e-03
## GO:0090329 38/11248 48/17913 1.153517e-02 2.131409e-02 7.466639e-03
## GO:0032414 74/11248 100/17913 1.171459e-02 2.163921e-02 7.580533e-03
## GO:0032881 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0050798 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0051445 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0070317 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0090317 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0098927 33/11248 41/17913 1.179911e-02 2.175668e-02 7.621685e-03
## GO:0015807 45/11248 58/17913 1.187159e-02 2.187740e-02 7.663975e-03
## GO:1902110 45/11248 58/17913 1.187159e-02 2.187740e-02 7.663975e-03
## GO:0005977 54/11248 71/17913 1.228504e-02 2.263263e-02 7.928541e-03
## GO:0006898 208/11248 301/17913 1.232004e-02 2.269041e-02 7.948785e-03
## GO:1902305 40/11248 51/17913 1.272072e-02 2.341036e-02 8.200995e-03
## GO:1903707 109/11248 152/17913 1.275053e-02 2.341036e-02 8.200995e-03
## GO:0006270 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0021799 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0046633 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0051491 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0065005 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0071108 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0090075 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:1905476 25/11248 30/17913 1.275403e-02 2.341036e-02 8.200995e-03
## GO:0008088 47/11248 61/17913 1.275598e-02 2.341036e-02 8.200995e-03
## GO:1904356 47/11248 61/17913 1.275598e-02 2.341036e-02 8.200995e-03
## GO:0046902 56/11248 74/17913 1.291521e-02 2.368864e-02 8.298481e-03
## GO:0070373 56/11248 74/17913 1.291521e-02 2.368864e-02 8.298481e-03
## GO:0001754 35/11248 44/17913 1.332871e-02 2.442553e-02 8.556624e-03
## GO:0030225 35/11248 44/17913 1.332871e-02 2.442553e-02 8.556624e-03
## GO:0042461 35/11248 44/17913 1.332871e-02 2.442553e-02 8.556624e-03
## GO:0001941 30/11248 37/17913 1.346706e-02 2.467181e-02 8.642897e-03
## GO:0030279 58/11248 77/17913 1.350980e-02 2.474285e-02 8.667784e-03
## GO:2000134 90/11248 124/17913 1.368104e-02 2.486554e-02 8.710764e-03
## GO:0001921 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0003214 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0007214 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0009214 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0010248 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0010820 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0010885 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0010935 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0014048 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0014841 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0014854 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0015936 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0019081 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0032310 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0032688 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0032780 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0035791 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0042976 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0044126 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0044146 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0045591 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0045651 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0046606 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0046851 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0051123 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0051547 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0060099 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0071801 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0072677 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0086069 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0090128 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0090399 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0090494 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0097202 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0098884 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0140239 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:1900452 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:1901386 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:1901722 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:1902043 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:2000846 13/11248 14/17913 1.374421e-02 2.486554e-02 8.710764e-03
## GO:0000380 42/11248 54/17913 1.384798e-02 2.503149e-02 8.768900e-03
## GO:0002011 42/11248 54/17913 1.384798e-02 2.503149e-02 8.768900e-03
## GO:0061178 42/11248 54/17913 1.384798e-02 2.503149e-02 8.768900e-03
## GO:0046467 92/11248 127/17913 1.385422e-02 2.503553e-02 8.770313e-03
## GO:0002360 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0002825 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0022400 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0030206 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0031645 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0032647 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0034377 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0043501 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0045992 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0060074 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0061037 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0072273 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:2000679 22/11248 26/17913 1.394390e-02 2.510305e-02 8.793968e-03
## GO:0021510 75/11248 102/17913 1.435409e-02 2.583405e-02 9.050048e-03
## GO:0044782 237/11248 346/17913 1.462539e-02 2.631474e-02 9.218439e-03
## GO:0006576 37/11248 47/17913 1.478394e-02 2.647328e-02 9.273981e-03
## GO:0008206 37/11248 47/17913 1.478394e-02 2.647328e-02 9.273981e-03
## GO:0042743 37/11248 47/17913 1.478394e-02 2.647328e-02 9.273981e-03
## GO:0045023 37/11248 47/17913 1.478394e-02 2.647328e-02 9.273981e-03
## GO:0090630 37/11248 47/17913 1.478394e-02 2.647328e-02 9.273981e-03
## GO:0006309 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0006623 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0007398 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0019430 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0032682 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0032786 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0032799 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0033622 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0034067 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0034243 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0036119 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0042744 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0043496 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0045109 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0045606 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0046835 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0046856 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0051000 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0060065 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0061213 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0071359 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:1900078 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:2000810 19/11248 22/17913 1.483234e-02 2.647328e-02 9.273981e-03
## GO:0006399 114/11248 160/17913 1.495512e-02 2.662818e-02 9.328243e-03
## GO:0001911 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0006337 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0006346 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0007252 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0007549 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0009190 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0031293 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0032460 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0034471 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0035089 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0038083 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0039535 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0042276 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0043011 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0048557 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0051084 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0051895 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0052652 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0055083 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0072574 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0072575 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0090026 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0090330 16/11248 18/17913 1.502157e-02 2.662818e-02 9.328243e-03
## GO:0000045 53/11248 70/17913 1.512895e-02 2.681090e-02 9.392252e-03
## GO:0006921 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0010092 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0016242 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0031128 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0032801 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0035115 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0036314 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0042755 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0045191 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0048821 27/11248 33/17913 1.528195e-02 2.700533e-02 9.460365e-03
## GO:0019369 32/11248 40/17913 1.537219e-02 2.714173e-02 9.508146e-03
## GO:0019985 32/11248 40/17913 1.537219e-02 2.714173e-02 9.508146e-03
## GO:0032924 32/11248 40/17913 1.537219e-02 2.714173e-02 9.508146e-03
## GO:1905037 55/11248 73/17913 1.582712e-02 2.793706e-02 9.786762e-03
## GO:0031348 165/11248 237/17913 1.598813e-02 2.821329e-02 9.883531e-03
## GO:0032732 39/11248 50/17913 1.615854e-02 2.848981e-02 9.980401e-03
## GO:0045661 39/11248 50/17913 1.615854e-02 2.848981e-02 9.980401e-03
## GO:0050732 39/11248 50/17913 1.615854e-02 2.848981e-02 9.980401e-03
## GO:0071715 34/11248 43/17913 1.717209e-02 3.019134e-02 1.057647e-02
## GO:1901571 34/11248 43/17913 1.717209e-02 3.019134e-02 1.057647e-02
## GO:0008608 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0009262 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0010644 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0045940 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0046627 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0050650 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0050718 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0060441 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0070723 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0090162 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:1900117 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:1903539 24/11248 29/17913 1.719135e-02 3.019134e-02 1.057647e-02
## GO:0051604 241/11248 353/17913 1.728933e-02 3.035487e-02 1.063376e-02
## GO:0032964 41/11248 53/17913 1.744963e-02 3.062769e-02 1.072933e-02
## GO:0061640 61/11248 82/17913 1.765791e-02 3.097071e-02 1.084949e-02
## GO:0002755 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0008156 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0035872 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0045776 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0048009 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0060251 29/11248 36/17913 1.767981e-02 3.097071e-02 1.084949e-02
## GO:0051926 50/11248 66/17913 1.773987e-02 3.105846e-02 1.088023e-02
## GO:1990542 50/11248 66/17913 1.773987e-02 3.105846e-02 1.088023e-02
## GO:0032368 88/11248 122/17913 1.881480e-02 3.293118e-02 1.153628e-02
## GO:0070534 36/11248 46/17913 1.885932e-02 3.299985e-02 1.156033e-02
## GO:0001556 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0009649 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0031664 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0034110 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0045948 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0095500 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1900101 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1900120 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1901623 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1903831 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1904385 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:1905809 21/11248 25/17913 1.907742e-02 3.326948e-02 1.165479e-02
## GO:0003333 54/11248 72/17913 1.932357e-02 3.368932e-02 1.180187e-02
## GO:0033692 45/11248 59/17913 1.978098e-02 3.446752e-02 1.207448e-02
## GO:2000351 45/11248 59/17913 1.978098e-02 3.446752e-02 1.207448e-02
## GO:0044275 31/11248 39/17913 1.992682e-02 3.470227e-02 1.215671e-02
## GO:0045746 31/11248 39/17913 1.992682e-02 3.470227e-02 1.215671e-02
## GO:0009164 26/11248 32/17913 2.024910e-02 3.519947e-02 1.233089e-02
## GO:1902475 38/11248 49/17913 2.043147e-02 3.519947e-02 1.233089e-02
## GO:0002679 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0002829 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0002921 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0003337 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0006000 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0006703 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0006743 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0009313 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0010642 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0010763 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0016114 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0021535 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0021692 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0021819 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0021984 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0030299 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0032096 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0032099 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0032239 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0032754 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0035020 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0042538 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0042635 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0043116 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0043252 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0043568 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0043970 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0044130 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0045086 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0045342 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0046500 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0050966 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0051085 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0051386 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0051917 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0060123 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0061029 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0061430 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0061478 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0071285 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0071415 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0071850 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0072182 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0090239 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:1900025 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:1900272 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:1903025 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:1903651 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:2001044 12/11248 13/17913 2.050011e-02 3.519947e-02 1.233089e-02
## GO:0001956 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0006085 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0006907 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0006925 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0021854 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0023058 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0031290 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0036120 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0036507 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0036508 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0042749 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0046058 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0051043 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0051156 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0051900 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0060008 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0060575 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0061339 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0070920 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0071498 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0072337 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0099563 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:1901798 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:1902884 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:1903010 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:1904886 18/11248 21/17913 2.069380e-02 3.527956e-02 1.235895e-02
## GO:0002418 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0002643 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0003184 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0006266 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0006978 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0007213 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0010744 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0021783 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0030502 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0032740 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0034199 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0035729 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0035855 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0035988 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0042268 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0042753 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0044110 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0044116 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0048532 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0048711 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0051818 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0051969 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0060850 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0070233 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0090185 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:1901524 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:1903209 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:1904355 15/11248 17/17913 2.153033e-02 3.642696e-02 1.276090e-02
## GO:0006513 49/11248 65/17913 2.179044e-02 3.685704e-02 1.291156e-02
## GO:2000242 40/11248 52/17913 2.188944e-02 3.701445e-02 1.296671e-02
## GO:0001953 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0002715 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0018023 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0032309 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0035307 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0090382 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0099622 33/11248 42/17913 2.201436e-02 3.715518e-02 1.301601e-02
## GO:0051304 51/11248 68/17913 2.268194e-02 3.827156e-02 1.340709e-02
## GO:0010458 23/11248 28/17913 2.304211e-02 3.882677e-02 1.360159e-02
## GO:0070229 23/11248 28/17913 2.304211e-02 3.882677e-02 1.360159e-02
## GO:0090344 23/11248 28/17913 2.304211e-02 3.882677e-02 1.360159e-02
## GO:0090383 23/11248 28/17913 2.304211e-02 3.882677e-02 1.360159e-02
## GO:0090662 23/11248 28/17913 2.304211e-02 3.882677e-02 1.360159e-02
## GO:0065002 28/11248 35/17913 2.308691e-02 3.886026e-02 1.361332e-02
## GO:0070423 28/11248 35/17913 2.308691e-02 3.886026e-02 1.361332e-02
## GO:0070884 28/11248 35/17913 2.308691e-02 3.886026e-02 1.361332e-02
## GO:0106056 28/11248 35/17913 2.308691e-02 3.886026e-02 1.361332e-02
## GO:0009435 42/11248 55/17913 2.323624e-02 3.910106e-02 1.369768e-02
## GO:0035282 68/11248 93/17913 2.325009e-02 3.911382e-02 1.370215e-02
## GO:1901570 70/11248 96/17913 2.363822e-02 3.975606e-02 1.392713e-02
## GO:0030834 35/11248 45/17913 2.394141e-02 4.021178e-02 1.408678e-02
## GO:0045581 35/11248 45/17913 2.394141e-02 4.021178e-02 1.408678e-02
## GO:0050922 35/11248 45/17913 2.394141e-02 4.021178e-02 1.408678e-02
## GO:1901068 35/11248 45/17913 2.394141e-02 4.021178e-02 1.408678e-02
## GO:1903018 35/11248 45/17913 2.394141e-02 4.021178e-02 1.408678e-02
## GO:0007405 44/11248 58/17913 2.447620e-02 4.108788e-02 1.439369e-02
## GO:0030433 44/11248 58/17913 2.447620e-02 4.108788e-02 1.439369e-02
## GO:0009451 86/11248 120/17913 2.560005e-02 4.296290e-02 1.505054e-02
## GO:0003407 46/11248 61/17913 2.561444e-02 4.297548e-02 1.505494e-02
## GO:0010559 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0032620 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0032941 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0035329 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0044088 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0045022 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:2001222 30/11248 38/17913 2.569524e-02 4.303004e-02 1.507406e-02
## GO:0002762 37/11248 48/17913 2.571165e-02 4.304596e-02 1.507963e-02
## GO:0000188 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0002861 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0010971 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0044346 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0045954 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0060571 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0071450 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0071451 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:1902914 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:1903649 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:2000178 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:2001026 20/11248 24/17913 2.594736e-02 4.330113e-02 1.516902e-02
## GO:0032768 48/11248 64/17913 2.665642e-02 4.442722e-02 1.556351e-02
## GO:0000266 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:0006369 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:0010765 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:0015695 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:0035587 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:1902186 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:1902253 25/11248 31/17913 2.667912e-02 4.442722e-02 1.556351e-02
## GO:0040013 255/11248 377/17913 2.698114e-02 4.491817e-02 1.573550e-02
## GO:0045766 141/11248 203/17913 2.731641e-02 4.546419e-02 1.592677e-02
## GO:0045599 39/11248 51/17913 2.733145e-02 4.547708e-02 1.593129e-02
## GO:0099601 50/11248 67/17913 2.760778e-02 4.592462e-02 1.608807e-02
## GO:0009163 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0010569 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0035136 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0035337 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0060612 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0090278 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:2000649 32/11248 41/17913 2.807647e-02 4.661725e-02 1.633071e-02
## GO:0000966 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0002438 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0006622 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0006817 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0010560 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0010869 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0014821 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0021697 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0034505 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0046628 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0048846 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0060602 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0061003 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0070734 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0072234 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0140058 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:1902284 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:1905523 17/11248 20/17913 2.869766e-02 4.742146e-02 1.661243e-02
## GO:0060760 41/11248 54/17913 2.880871e-02 4.759235e-02 1.667230e-02
## GO:0001938 77/11248 107/17913 2.909757e-02 4.803140e-02 1.682611e-02
## GO:0014902 77/11248 107/17913 2.909757e-02 4.803140e-02 1.682611e-02
## GO:1990748 77/11248 107/17913 2.909757e-02 4.803140e-02 1.682611e-02
## GO:0034763 87/11248 122/17913 2.983554e-02 4.902706e-02 1.717490e-02
## GO:0007212 27/11248 34/17913 2.997884e-02 4.902706e-02 1.717490e-02
## GO:0006302 146/11248 211/17913 2.999167e-02 4.902706e-02 1.717490e-02
## GO:0007224 93/11248 131/17913 2.999558e-02 4.902706e-02 1.717490e-02
## GO:1903428 43/11248 57/17913 3.015203e-02 4.902706e-02 1.717490e-02
## GO:0016574 34/11248 44/17913 3.023957e-02 4.902706e-02 1.717490e-02
## GO:0032459 34/11248 44/17913 3.023957e-02 4.902706e-02 1.717490e-02
## GO:0048599 34/11248 44/17913 3.023957e-02 4.902706e-02 1.717490e-02
## GO:0071806 34/11248 44/17913 3.023957e-02 4.902706e-02 1.717490e-02
## GO:0000098 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0000212 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0000722 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0001976 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0002371 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0002863 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0003334 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0006744 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0006999 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0007171 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0009886 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0010452 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0010457 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0010752 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0010826 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0014889 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0015812 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0016082 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0016558 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0032230 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0032905 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0032968 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0033004 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0034380 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0042308 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0042738 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0043922 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0045346 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0045410 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0045579 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0045779 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0046689 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0051299 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0051549 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0051712 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0051798 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0060081 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0060100 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0060670 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0060707 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0070307 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0071073 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0071107 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0071257 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0071340 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0072520 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0090110 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0097201 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0098885 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0099633 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0099645 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1901550 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1901663 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1902430 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1902855 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1902916 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1902950 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1903140 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1903894 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1904181 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1904590 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:1905155 11/11248 12/17913 3.043410e-02 4.902706e-02 1.717490e-02
## GO:0002070 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0002739 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0003222 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0006957 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0007567 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0008340 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0009048 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0010225 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0010878 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0016540 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0030397 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0030575 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0032225 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0032305 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0033262 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0033631 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0036124 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0039692 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0043217 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0043981 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0043982 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0044117 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0045683 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0045721 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0045780 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0046852 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0048243 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0048820 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0050655 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0051081 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0051131 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0051571 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0055012 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0060253 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0060413 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0061684 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0070200 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0070242 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0072176 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0072283 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0090036 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0097091 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0099116 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:1902166 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:2000001 14/11248 16/17913 3.067909e-02 4.902706e-02 1.717490e-02
## GO:0001782 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0002063 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0009394 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0019054 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0033137 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0042273 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0045671 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0046640 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0051569 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0099131 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:2000515 22/11248 27/17913 3.069889e-02 4.902706e-02 1.717490e-02
## GO:0009247 45/11248 60/17913 3.137021e-02 5.008636e-02 1.754599e-02
## GO:1904063 62/11248 85/17913 3.171279e-02 5.062036e-02 1.773306e-02
## GO:0014911 36/11248 47/17913 3.219693e-02 5.136686e-02 1.799457e-02
## GO:0060042 36/11248 47/17913 3.219693e-02 5.136686e-02 1.799457e-02
## GO:0007007 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0046006 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0046461 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0046464 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0060306 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0097120 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:1901021 29/11248 37/17913 3.295106e-02 5.247605e-02 1.838313e-02
## GO:0016101 70/11248 97/17913 3.326267e-02 5.294527e-02 1.854751e-02
## GO:0034766 70/11248 97/17913 3.326267e-02 5.294527e-02 1.854751e-02
## GO:0014812 74/11248 103/17913 3.377227e-02 5.374272e-02 1.882686e-02
## GO:0032873 38/11248 50/17913 3.396244e-02 5.400400e-02 1.891839e-02
## GO:0060976 38/11248 50/17913 3.396244e-02 5.400400e-02 1.891839e-02
## GO:0070303 38/11248 50/17913 3.396244e-02 5.400400e-02 1.891839e-02
## GO:0022904 76/11248 106/17913 3.397122e-02 5.400419e-02 1.891846e-02
## GO:0045454 51/11248 69/17913 3.435919e-02 5.459313e-02 1.912478e-02
## GO:1901264 51/11248 69/17913 3.435919e-02 5.459313e-02 1.912478e-02
## GO:0009799 88/11248 124/17913 3.453201e-02 5.485375e-02 1.921608e-02
## GO:0003209 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0006739 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0019433 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0032689 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0046320 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0051194 24/11248 30/17913 3.494064e-02 5.541818e-02 1.941380e-02
## GO:0001783 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0006884 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0010447 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0016578 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0032878 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0035561 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0042537 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0044818 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0060055 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0070841 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0072170 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:1902254 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:2000637 19/11248 23/17913 3.506783e-02 5.543667e-02 1.942028e-02
## GO:0050710 53/11248 72/17913 3.516018e-02 5.556858e-02 1.946649e-02
## GO:0046503 40/11248 53/17913 3.555037e-02 5.615681e-02 1.967255e-02
## GO:0050853 40/11248 53/17913 3.555037e-02 5.615681e-02 1.967255e-02
## GO:0031952 31/11248 40/17913 3.561500e-02 5.623042e-02 1.969834e-02
## GO:0035735 31/11248 40/17913 3.561500e-02 5.623042e-02 1.969834e-02
## GO:0035050 55/11248 75/17913 3.587558e-02 5.661317e-02 1.983243e-02
## GO:0048024 55/11248 75/17913 3.587558e-02 5.661317e-02 1.983243e-02
## GO:0030838 61/11248 84/17913 3.757112e-02 5.927382e-02 2.076449e-02
## GO:0006893 33/11248 43/17913 3.799383e-02 5.988012e-02 2.097689e-02
## GO:0010761 33/11248 43/17913 3.799383e-02 5.988012e-02 2.097689e-02
## GO:0021762 33/11248 43/17913 3.799383e-02 5.988012e-02 2.097689e-02
## GO:0099518 33/11248 43/17913 3.799383e-02 5.988012e-02 2.097689e-02
## GO:0006040 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0010837 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0030947 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0042462 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0042558 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0070873 26/11248 33/17913 3.869848e-02 6.089837e-02 2.133359e-02
## GO:0006690 73/11248 102/17913 3.939256e-02 6.181761e-02 2.165562e-02
## GO:0001710 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0001991 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0002029 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0002689 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0007625 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0016048 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0022401 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0030859 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0031281 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0032332 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0032891 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0035338 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0042403 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0043153 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0051412 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0072074 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0072077 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0090190 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0090670 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0090671 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0090672 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0090685 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:2000010 16/11248 19/17913 3.953554e-02 6.181761e-02 2.165562e-02
## GO:0007292 93/11248 132/17913 3.953958e-02 6.181761e-02 2.165562e-02
## GO:0051963 75/11248 105/17913 3.954028e-02 6.181761e-02 2.165562e-02
## GO:0009855 87/11248 123/17913 3.976077e-02 6.214380e-02 2.176989e-02
## GO:0006304 81/11248 114/17913 3.977881e-02 6.214380e-02 2.176989e-02
## GO:0006638 81/11248 114/17913 3.977881e-02 6.214380e-02 2.176989e-02
## GO:0009948 35/11248 46/17913 4.011170e-02 6.264817e-02 2.194658e-02
## GO:0031440 21/11248 26/17913 4.063817e-02 6.342279e-02 2.221793e-02
## GO:1900027 21/11248 26/17913 4.063817e-02 6.342279e-02 2.221793e-02
## GO:1903959 21/11248 26/17913 4.063817e-02 6.342279e-02 2.221793e-02
## GO:0034260 37/11248 49/17913 4.199218e-02 6.548454e-02 2.294020e-02
## GO:0006699 28/11248 36/17913 4.201172e-02 6.548454e-02 2.294020e-02
## GO:0032205 28/11248 36/17913 4.201172e-02 6.548454e-02 2.294020e-02
## GO:0032885 28/11248 36/17913 4.201172e-02 6.548454e-02 2.294020e-02
## GO:0044058 28/11248 36/17913 4.201172e-02 6.548454e-02 2.294020e-02
## GO:0034121 52/11248 71/17913 4.208013e-02 6.557478e-02 2.297181e-02
## GO:0009583 54/11248 74/17913 4.277302e-02 6.663789e-02 2.334423e-02
## GO:0001829 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0002716 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0003417 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0006144 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0006577 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0007076 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0007158 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0007512 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0014061 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0021542 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0030238 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0031468 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0034310 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0035635 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0035930 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0042762 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0043101 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0045091 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0045475 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0045838 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0046321 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0046931 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0050651 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0050961 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0050965 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0055089 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0060009 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0071474 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0071599 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0072075 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0090192 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1901841 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1902001 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1902992 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1903358 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1905874 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:1990000 13/11248 15/17913 4.343107e-02 6.704356e-02 2.348634e-02
## GO:0009268 30/11248 39/17913 4.492330e-02 6.795911e-02 2.380708e-02
## GO:0021532 30/11248 39/17913 4.492330e-02 6.795911e-02 2.380708e-02
## GO:0030890 30/11248 39/17913 4.492330e-02 6.795911e-02 2.380708e-02
## GO:0000027 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0001682 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0001767 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0001787 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0002638 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0002730 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0002836 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0002839 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0003174 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0006558 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0006559 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0006707 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0006991 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0009086 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0009143 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0010172 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0010755 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0010870 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0014820 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0014870 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0016127 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0019373 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0021561 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0021604 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0021610 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0031987 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0032306 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0032463 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0032957 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0033148 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0033169 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0033632 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0033700 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0040015 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0042711 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0042756 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0043383 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0045793 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0046007 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0046831 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0048875 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0051561 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0051574 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0055015 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0060174 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0060746 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0060992 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0061314 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0070106 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0070213 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0070254 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0070525 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0070673 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0071372 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0072017 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0072110 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0072321 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0072537 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0072584 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0090193 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0097048 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0098814 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0099149 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0099188 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0099624 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0140052 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1900112 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1902065 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1902221 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1902222 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1902224 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1904321 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1904322 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1905214 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1905245 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1905941 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:1990440 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:2000392 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:2000668 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:2001204 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:2001223 10/11248 11/17913 4.493929e-02 6.795911e-02 2.380708e-02
## GO:0042775 64/11248 89/17913 4.505159e-02 6.811241e-02 2.386078e-02
## GO:0002090 41/11248 55/17913 4.512809e-02 6.821155e-02 2.389551e-02
## GO:0003016 23/11248 29/17913 4.547004e-02 6.869510e-02 2.406491e-02
## GO:0019692 23/11248 29/17913 4.547004e-02 6.869510e-02 2.406491e-02
## GO:0006641 68/11248 95/17913 4.552366e-02 6.875947e-02 2.408745e-02
## GO:0006639 80/11248 113/17913 4.589865e-02 6.930907e-02 2.427999e-02
## GO:0051271 245/11248 365/17913 4.610985e-02 6.961114e-02 2.438581e-02
## GO:0042490 43/11248 58/17913 4.642274e-02 7.006654e-02 2.454534e-02
## GO:0098742 159/11248 233/17913 4.696934e-02 7.080419e-02 2.480375e-02
## GO:0000154 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0008299 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0009235 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0010155 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0018126 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0045117 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0045624 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0045649 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0045943 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0046716 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0090312 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0097205 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:1903077 18/11248 22/17913 4.707037e-02 7.080419e-02 2.480375e-02
## GO:0015701 32/11248 42/17913 4.747524e-02 7.136157e-02 2.499901e-02
## GO:0048247 32/11248 42/17913 4.747524e-02 7.136157e-02 2.499901e-02
## GO:1901659 32/11248 42/17913 4.747524e-02 7.136157e-02 2.499901e-02
## GO:0010803 45/11248 61/17913 4.755834e-02 7.146926e-02 2.503673e-02
## GO:0048663 47/11248 64/17913 4.855017e-02 7.292462e-02 2.554657e-02
## GO:1902108 47/11248 64/17913 4.855017e-02 7.292462e-02 2.554657e-02
## GO:0001881 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0015804 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0018196 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0030851 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0043001 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0051693 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:1902235 25/11248 32/17913 4.964351e-02 7.444140e-02 2.607792e-02
## GO:0014014 34/11248 45/17913 4.970660e-02 7.450018e-02 2.609851e-02
## GO:0061756 34/11248 45/17913 4.970660e-02 7.450018e-02 2.609851e-02
## GO:0098876 51/11248 70/17913 5.015601e-02 7.515570e-02 2.632815e-02
## GO:1902807 91/11248 130/17913 5.155301e-02 7.723047e-02 2.705497e-02
## GO:0042073 36/11248 48/17913 5.165276e-02 7.736133e-02 2.710081e-02
## GO:1904018 158/11248 232/17913 5.190770e-02 7.772450e-02 2.722803e-02
## GO:0014855 59/11248 82/17913 5.216031e-02 7.808400e-02 2.735397e-02
## GO:0060419 79/11248 112/17913 5.280355e-02 7.902795e-02 2.768466e-02
## GO:0003230 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0030835 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0045066 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0045923 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0048710 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0071542 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:1901020 27/11248 35/17913 5.323911e-02 7.950346e-02 2.785123e-02
## GO:0050999 38/11248 51/17913 5.334532e-02 7.950346e-02 2.785123e-02
## GO:0070228 38/11248 51/17913 5.334532e-02 7.950346e-02 2.785123e-02
## GO:0098930 38/11248 51/17913 5.334532e-02 7.950346e-02 2.785123e-02
## GO:0000272 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0002335 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0006730 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0006851 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0010669 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0010818 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0015991 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0031338 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0035235 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0045830 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0060330 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0060334 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0060384 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0099068 20/11248 25/17913 5.342714e-02 7.950346e-02 2.785123e-02
## GO:0007250 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0007274 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0021533 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0032011 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0032012 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0032793 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0042026 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0042772 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0043555 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0070828 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0071800 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0090196 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0097094 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:1904872 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:2000193 15/11248 18/17913 5.407414e-02 8.017934e-02 2.808800e-02
## GO:0042304 40/11248 54/17913 5.481227e-02 8.123519e-02 2.845788e-02
## GO:0046513 40/11248 54/17913 5.481227e-02 8.123519e-02 2.845788e-02
## GO:0032008 29/11248 38/17913 5.633091e-02 8.340665e-02 2.921858e-02
## GO:0046329 29/11248 38/17913 5.633091e-02 8.340665e-02 2.921858e-02
## GO:1901658 29/11248 38/17913 5.633091e-02 8.340665e-02 2.921858e-02
## GO:1903523 29/11248 38/17913 5.633091e-02 8.340665e-02 2.921858e-02
## GO:0045600 46/11248 63/17913 5.809203e-02 8.599386e-02 3.012491e-02
## GO:0002717 22/11248 28/17913 5.877376e-02 8.689990e-02 3.044231e-02
## GO:0042533 22/11248 28/17913 5.877376e-02 8.689990e-02 3.044231e-02
## GO:0042534 22/11248 28/17913 5.877376e-02 8.689990e-02 3.044231e-02
## GO:0045577 22/11248 28/17913 5.877376e-02 8.689990e-02 3.044231e-02
## GO:0048741 22/11248 28/17913 5.877376e-02 8.689990e-02 3.044231e-02
## GO:0043030 48/11248 66/17913 5.887581e-02 8.703017e-02 3.048795e-02
## GO:0000381 31/11248 41/17913 5.898445e-02 8.712881e-02 3.052250e-02
## GO:0043489 31/11248 41/17913 5.898445e-02 8.712881e-02 3.052250e-02
## GO:0098815 31/11248 41/17913 5.898445e-02 8.712881e-02 3.052250e-02
## GO:0032720 50/11248 69/17913 5.953140e-02 8.789512e-02 3.079095e-02
## GO:0051865 50/11248 69/17913 5.953140e-02 8.789512e-02 3.079095e-02
## GO:0042147 52/11248 72/17913 6.007200e-02 8.865133e-02 3.105586e-02
## GO:2000779 52/11248 72/17913 6.007200e-02 8.865133e-02 3.105586e-02
## GO:0030512 56/11248 78/17913 6.085365e-02 8.916617e-02 3.123622e-02
## GO:0008033 74/11248 105/17913 6.101307e-02 8.916617e-02 3.123622e-02
## GO:0001732 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0001771 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0002834 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0002837 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0006525 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0006595 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0006825 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0006910 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0030213 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0033147 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0034315 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0035067 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0035358 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0035372 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0035493 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0036295 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0043455 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0043558 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0043968 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0045198 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0045618 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0045953 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0046133 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0048148 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0048841 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0051770 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0051775 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0051852 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0060261 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0071361 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0072425 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0090141 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0090231 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0090266 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0099558 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:1903504 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:1903624 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:1903729 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:1904748 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:1904923 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:2000345 12/11248 14/17913 6.103551e-02 8.916617e-02 3.123622e-02
## GO:0097006 72/11248 102/17913 6.118780e-02 8.936772e-02 3.130683e-02
## GO:0042398 33/11248 44/17913 6.125663e-02 8.940544e-02 3.132004e-02
## GO:0043268 33/11248 44/17913 6.125663e-02 8.940544e-02 3.132004e-02
## GO:1903573 33/11248 44/17913 6.125663e-02 8.940544e-02 3.132004e-02
## GO:0001824 70/11248 99/17913 6.132517e-02 8.946361e-02 3.134042e-02
## GO:0098869 70/11248 99/17913 6.132517e-02 8.946361e-02 3.134042e-02
## GO:0042773 64/11248 90/17913 6.147196e-02 8.965680e-02 3.140809e-02
## GO:2000146 232/11248 347/17913 6.260992e-02 9.110627e-02 3.191587e-02
## GO:0001562 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0003094 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0003283 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0008045 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0019682 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0022010 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0031935 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0032291 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0042135 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0042451 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0042776 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0046129 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0050765 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0050951 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:2000114 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:2000269 17/11248 21/17913 6.271407e-02 9.110627e-02 3.191587e-02
## GO:0001961 35/11248 47/17913 6.319648e-02 9.165170e-02 3.210694e-02
## GO:0033059 35/11248 47/17913 6.319648e-02 9.165170e-02 3.210694e-02
## GO:0048641 35/11248 47/17913 6.319648e-02 9.165170e-02 3.210694e-02
## GO:0051438 35/11248 47/17913 6.319648e-02 9.165170e-02 3.210694e-02
## GO:0002675 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0010591 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0014904 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0018279 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0045648 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0048854 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0070570 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:1902692 24/11248 31/17913 6.326582e-02 9.165170e-02 3.210694e-02
## GO:0071804 97/11248 140/17913 6.438312e-02 9.322700e-02 3.265879e-02
## GO:0071805 97/11248 140/17913 6.438312e-02 9.322700e-02 3.265879e-02
## GO:0070741 37/11248 50/17913 6.484608e-02 9.346855e-02 3.274341e-02
## GO:0001660 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0001768 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0002291 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0002645 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0003183 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0003264 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0006020 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0006527 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0006930 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0007084 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0007220 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0010918 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0010944 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0014041 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0014049 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0014877 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0014894 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0016102 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0016553 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0021877 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0031652 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032000 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032025 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032308 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032817 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032823 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0032836 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0033210 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0033483 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0033629 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0034350 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0034378 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0035878 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0039530 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0042023 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0042178 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0042415 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0043471 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0044803 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045351 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045625 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045657 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045713 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045792 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0045955 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0046950 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0048021 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0048245 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0048672 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0048739 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0048755 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0051409 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0051657 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0051901 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0051956 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0060346 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0060439 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0060536 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0060600 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0061140 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0061299 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0070391 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0070914 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071223 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071281 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071313 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071481 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071501 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071545 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071609 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0071670 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0072124 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0072203 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0072697 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0090154 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0090309 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0097090 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0097278 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0097531 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0098883 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0099550 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0150011 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1901526 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1902805 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1903299 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1903789 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1904350 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1904896 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:1904903 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:2000304 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:2000317 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:2001135 9/11248 10/17913 6.594343e-02 9.346855e-02 3.274341e-02
## GO:0038066 39/11248 53/17913 6.624155e-02 9.384847e-02 3.287650e-02
## GO:0060113 39/11248 53/17913 6.624155e-02 9.384847e-02 3.287650e-02
## GO:0000959 26/11248 34/17913 6.703733e-02 9.491123e-02 3.324880e-02
## GO:0032660 26/11248 34/17913 6.703733e-02 9.491123e-02 3.324880e-02
## GO:0097009 26/11248 34/17913 6.703733e-02 9.491123e-02 3.324880e-02
## GO:0061900 43/11248 59/17913 6.839001e-02 9.680438e-02 3.391200e-02
## GO:0022618 142/11248 209/17913 6.870176e-02 9.722359e-02 3.405885e-02
## GO:1901862 45/11248 62/17913 6.919284e-02 9.789633e-02 3.429453e-02
## GO:0002082 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0002092 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0021871 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0021904 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0031954 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0036315 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0042481 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0043951 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0051984 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0060148 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0086064 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:1903020 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:1903421 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:1904376 19/11248 24/17913 6.972559e-02 9.833784e-02 3.444919e-02
## GO:0003143 47/11248 65/17913 6.984246e-02 9.848040e-02 3.449913e-02
## GO:0032467 28/11248 37/17913 7.020046e-02 9.891811e-02 3.465247e-02
## GO:0035315 28/11248 37/17913 7.020046e-02 9.891811e-02 3.465247e-02
## GO:0046676 28/11248 37/17913 7.020046e-02 9.891811e-02 3.465247e-02
## GO:0055024 71/11248 101/17913 7.032073e-02 9.906520e-02 3.470400e-02
## GO:1903556 51/11248 71/17913 7.074951e-02 9.964675e-02 3.490772e-02
## GO:0044728 63/11248 89/17913 7.121849e-02 1.002721e-01 3.512679e-02
## GO:0090398 55/11248 77/17913 7.122565e-02 1.002721e-01 3.512679e-02
## GO:1903845 57/11248 80/17913 7.133052e-02 1.003971e-01 3.517057e-02
## GO:0010824 30/11248 40/17913 7.284821e-02 1.024869e-01 3.590268e-02
## GO:1903170 30/11248 40/17913 7.284821e-02 1.024869e-01 3.590268e-02
## GO:0001573 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0006544 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0006891 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0010715 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0016137 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0030277 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0043651 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0044241 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0045056 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0048339 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0048535 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0060004 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0070885 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0071360 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0106057 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:1904380 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:1904996 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:1905331 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:2000641 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:2000757 14/11248 17/17913 7.337331e-02 1.027622e-01 3.599910e-02
## GO:0006760 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:0031365 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:0040020 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:0046839 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:0090169 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:2000463 21/11248 27/17913 7.542562e-02 1.054944e-01 3.695624e-02
## GO:0090288 107/11248 156/17913 7.641095e-02 1.068486e-01 3.743063e-02
## GO:0030857 34/11248 46/17913 7.689212e-02 1.074973e-01 3.765789e-02
## GO:0042157 78/11248 112/17913 7.837154e-02 1.095144e-01 3.836450e-02
## GO:0009994 36/11248 49/17913 7.840513e-02 1.095144e-01 3.836450e-02
## GO:0010712 36/11248 49/17913 7.840513e-02 1.095144e-01 3.836450e-02
## GO:0043949 36/11248 49/17913 7.840513e-02 1.095144e-01 3.836450e-02
## GO:0055017 74/11248 106/17913 7.951132e-02 1.110346e-01 3.889706e-02
## GO:0072528 38/11248 52/17913 7.964090e-02 1.111907e-01 3.895173e-02
## GO:0034314 23/11248 30/17913 8.006664e-02 1.117101e-01 3.913368e-02
## GO:0042407 23/11248 30/17913 8.006664e-02 1.117101e-01 3.913368e-02
## GO:1903319 23/11248 30/17913 8.006664e-02 1.117101e-01 3.913368e-02
## GO:0001523 64/11248 91/17913 8.186039e-02 1.141617e-01 3.999251e-02
## GO:0014909 64/11248 91/17913 8.186039e-02 1.141617e-01 3.999251e-02
## GO:0006400 44/11248 61/17913 8.202988e-02 1.143725e-01 4.006635e-02
## GO:0007020 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0009226 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0010592 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0015012 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0019400 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0033194 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0042474 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0042832 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0043369 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0043586 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0044331 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0048745 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0051349 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0051383 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0060216 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0071397 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0072087 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:1902473 16/11248 20/17913 8.288708e-02 1.151045e-01 4.032281e-02
## GO:0150076 54/11248 76/17913 8.303013e-02 1.152775e-01 4.038342e-02
## GO:0010922 25/11248 33/17913 8.384671e-02 1.162819e-01 4.073525e-02
## GO:0042455 25/11248 33/17913 8.384671e-02 1.162819e-01 4.073525e-02
## GO:0043094 25/11248 33/17913 8.384671e-02 1.162819e-01 4.073525e-02
## GO:0045589 25/11248 33/17913 8.384671e-02 1.162819e-01 4.073525e-02
## GO:2000785 25/11248 33/17913 8.384671e-02 1.162819e-01 4.073525e-02
## GO:0016485 197/11248 295/17913 8.491550e-02 1.170947e-01 4.102000e-02
## GO:0001967 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0006089 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0007183 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0009084 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0009312 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0014819 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0021554 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0030011 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0030205 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0030656 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0031167 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0031953 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0032802 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0033604 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0033623 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0036109 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0042532 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0044090 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0048266 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0050872 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0051447 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0051645 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0060576 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0061000 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0062033 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0070208 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0071696 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0090308 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:1900029 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:1900103 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:1902713 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:1904925 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:2000194 11/11248 13/17913 8.507106e-02 1.170947e-01 4.102000e-02
## GO:0022412 217/11248 326/17913 8.554667e-02 1.177234e-01 4.124024e-02
## GO:0071826 149/11248 221/17913 8.566157e-02 1.178555e-01 4.128652e-02
## GO:0000578 27/11248 36/17913 8.692127e-02 1.195359e-01 4.187519e-02
## GO:0043243 27/11248 36/17913 8.692127e-02 1.195359e-01 4.187519e-02
## GO:0002347 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0006359 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0015985 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0015986 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0034123 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0035588 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0043576 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0044247 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0050857 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0051004 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0051125 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0071404 18/11248 23/17913 9.027953e-02 1.238267e-01 4.337831e-02
## GO:0061512 31/11248 42/17913 9.141949e-02 1.253351e-01 4.390673e-02
## GO:0099054 31/11248 42/17913 9.141949e-02 1.253351e-01 4.390673e-02
## GO:0010632 196/11248 294/17913 9.190349e-02 1.259710e-01 4.412949e-02
## GO:0051321 137/11248 203/17913 9.275345e-02 1.271081e-01 4.452783e-02
## GO:0005978 33/11248 45/17913 9.301921e-02 1.273883e-01 4.462601e-02
## GO:0009250 33/11248 45/17913 9.301921e-02 1.273883e-01 4.462601e-02
## GO:0099172 33/11248 45/17913 9.301921e-02 1.273883e-01 4.462601e-02
## GO:0061951 35/11248 48/17913 9.427571e-02 1.290807e-01 4.521888e-02
## GO:2000045 120/11248 177/17913 9.487139e-02 1.298678e-01 4.549461e-02
## GO:0060420 59/11248 84/17913 9.509977e-02 1.301234e-01 4.558413e-02
## GO:1901379 59/11248 84/17913 9.509977e-02 1.301234e-01 4.558413e-02
## GO:0006213 37/11248 51/17913 9.524093e-02 1.302594e-01 4.563177e-02
## GO:0050885 37/11248 51/17913 9.524093e-02 1.302594e-01 4.563177e-02
## GO:0070206 39/11248 54/17913 9.595770e-02 1.311455e-01 4.594221e-02
## GO:0015988 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0030201 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0032196 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0042255 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0050919 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0072539 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0140115 20/11248 26/17913 9.605705e-02 1.311455e-01 4.594221e-02
## GO:0051055 41/11248 57/17913 9.646157e-02 1.316690e-01 4.612558e-02
## GO:0031640 43/11248 60/17913 9.678228e-02 1.320201e-01 4.624858e-02
## GO:0044364 43/11248 60/17913 9.678228e-02 1.320201e-01 4.624858e-02
## GO:0048635 43/11248 60/17913 9.678228e-02 1.320201e-01 4.624858e-02
## GO:2001259 49/11248 69/17913 9.687726e-02 1.321208e-01 4.628385e-02
## GO:0031929 80/11248 116/17913 9.856403e-02 1.340065e-01 4.694445e-02
## GO:0000097 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0006590 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0008090 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0009219 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0018027 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0031649 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0036035 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0045989 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0046174 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0048070 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0050884 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0060192 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0060572 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0070886 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0072148 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0090083 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0106058 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:1900242 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:1902993 13/11248 16/17913 9.868963e-02 1.340065e-01 4.694445e-02
## GO:0014896 78/11248 113/17913 9.959703e-02 1.352092e-01 4.736577e-02
## GO:0003401 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:0045822 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:0046039 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:0072538 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:0097106 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:1904292 22/11248 29/17913 1.005854e-01 1.363730e-01 4.777346e-02
## GO:0015918 74/11248 107/17913 1.016444e-01 1.377787e-01 4.826591e-02
## GO:0030336 220/11248 332/17913 1.025495e-01 1.389754e-01 4.868512e-02
## GO:0021522 24/11248 32/17913 1.041328e-01 1.409985e-01 4.939386e-02
## GO:0090504 24/11248 32/17913 1.041328e-01 1.409985e-01 4.939386e-02
## GO:1901099 24/11248 32/17913 1.041328e-01 1.409985e-01 4.939386e-02
## GO:2001240 24/11248 32/17913 1.041328e-01 1.409985e-01 4.939386e-02
## GO:0045638 64/11248 92/17913 1.065405e-01 1.442274e-01 5.052499e-02
## GO:0010762 26/11248 35/17913 1.068989e-01 1.446183e-01 5.066192e-02
## GO:0050716 26/11248 35/17913 1.068989e-01 1.446183e-01 5.066192e-02
## GO:0072529 26/11248 35/17913 1.068989e-01 1.446183e-01 5.066192e-02
## GO:0090101 83/11248 121/17913 1.083388e-01 1.462770e-01 5.124298e-02
## GO:0002313 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0002363 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0003159 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0006677 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0018195 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0034138 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0035458 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0043691 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0045663 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0051767 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0051769 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0060039 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0060252 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0060973 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0061154 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0071071 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0071243 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0071294 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:1902307 15/11248 19/17913 1.085939e-01 1.462770e-01 5.124298e-02
## GO:0006656 28/11248 38/17913 1.090352e-01 1.467447e-01 5.140681e-02
## GO:0019068 28/11248 38/17913 1.090352e-01 1.467447e-01 5.140681e-02
## GO:0047496 28/11248 38/17913 1.090352e-01 1.467447e-01 5.140681e-02
## GO:1904037 28/11248 38/17913 1.090352e-01 1.467447e-01 5.140681e-02
## GO:0006692 30/11248 41/17913 1.106585e-01 1.488330e-01 5.213839e-02
## GO:0006693 30/11248 41/17913 1.106585e-01 1.488330e-01 5.213839e-02
## GO:0010907 30/11248 41/17913 1.106585e-01 1.488330e-01 5.213839e-02
## GO:0032965 32/11248 44/17913 1.118598e-01 1.503840e-01 5.268172e-02
## GO:0050706 32/11248 44/17913 1.118598e-01 1.503840e-01 5.268172e-02
## GO:0000288 50/11248 71/17913 1.120660e-01 1.506287e-01 5.276745e-02
## GO:0001774 36/11248 50/17913 1.132713e-01 1.521503e-01 5.330050e-02
## GO:0002269 36/11248 50/17913 1.132713e-01 1.521503e-01 5.330050e-02
## GO:0007062 36/11248 50/17913 1.132713e-01 1.521503e-01 5.330050e-02
## GO:0009584 44/11248 62/17913 1.134093e-01 1.523030e-01 5.335397e-02
## GO:0045747 38/11248 53/17913 1.135859e-01 1.524224e-01 5.339579e-02
## GO:0001947 42/11248 59/17913 1.136261e-01 1.524224e-01 5.339579e-02
## GO:0006220 42/11248 59/17913 1.136261e-01 1.524224e-01 5.339579e-02
## GO:0045843 42/11248 59/17913 1.136261e-01 1.524224e-01 5.339579e-02
## GO:0090342 42/11248 59/17913 1.136261e-01 1.524224e-01 5.339579e-02
## GO:0001510 40/11248 56/17913 1.136937e-01 1.524224e-01 5.339579e-02
## GO:0014888 40/11248 56/17913 1.136937e-01 1.524224e-01 5.339579e-02
## GO:1903202 40/11248 56/17913 1.136937e-01 1.524224e-01 5.339579e-02
## GO:0019730 73/11248 106/17913 1.147796e-01 1.538452e-01 5.389423e-02
## GO:0055088 90/11248 132/17913 1.152299e-01 1.544155e-01 5.409403e-02
## GO:0001759 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0009068 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0009251 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0009595 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0015740 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0033233 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0035590 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0036010 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0044743 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0050995 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:1900273 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:1901685 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:1901687 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:1904666 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:2000773 17/11248 22/17913 1.159026e-01 1.547515e-01 5.421172e-02
## GO:0001765 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0002002 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0002003 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0002281 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0002674 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0003207 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0006068 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0006216 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0006983 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0007077 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0009972 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0010960 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0016322 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0021681 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0021794 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0030157 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0030208 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0031272 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0031650 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0032785 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0034086 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0034088 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0035641 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0038003 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0040034 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0043650 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0045161 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0045605 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0045836 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0045869 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0046087 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0048172 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0048642 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0048934 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0048935 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0051095 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0051451 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0051988 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0055062 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0060788 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0070202 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0070365 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0070586 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0071697 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0071888 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0072044 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0072178 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0072505 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0072506 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0086067 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0090151 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0090331 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0090713 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0099150 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0150052 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1900376 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1902510 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1902563 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1902656 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1902947 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1904668 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:1904953 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:2000052 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:2000121 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:2001198 10/11248 12/17913 1.174653e-01 1.547515e-01 5.421172e-02
## GO:0045833 63/11248 91/17913 1.211854e-01 1.595158e-01 5.588073e-02
## GO:0007176 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0033522 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0035336 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0045662 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0045672 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0045932 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0046426 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0051875 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0071514 19/11248 25/17913 1.213374e-01 1.595158e-01 5.588073e-02
## GO:0014910 59/11248 85/17913 1.236652e-01 1.625418e-01 5.694079e-02
## GO:0007368 78/11248 114/17913 1.244128e-01 1.634900e-01 5.727294e-02
## GO:0032651 57/11248 82/17913 1.248714e-01 1.640581e-01 5.747198e-02
## GO:0001516 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0005979 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0010894 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0010954 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0010962 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0031063 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0035510 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0046457 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0051443 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0071168 21/11248 28/17913 1.253812e-01 1.643817e-01 5.758532e-02
## GO:0014897 76/11248 111/17913 1.259940e-01 1.651156e-01 5.784242e-02
## GO:0035305 76/11248 111/17913 1.259940e-01 1.651156e-01 5.784242e-02
## GO:0003300 74/11248 108/17913 1.275877e-01 1.671339e-01 5.854948e-02
## GO:0032612 74/11248 108/17913 1.275877e-01 1.671339e-01 5.854948e-02
## GO:0006505 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0006536 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0018198 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0021988 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0031122 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0044319 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0061311 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0086011 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0090505 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0099084 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0099625 23/11248 31/17913 1.283690e-01 1.677699e-01 5.877226e-02
## GO:0034142 25/11248 34/17913 1.305394e-01 1.703377e-01 5.967180e-02
## GO:0050849 25/11248 34/17913 1.305394e-01 1.703377e-01 5.967180e-02
## GO:0097484 25/11248 34/17913 1.305394e-01 1.703377e-01 5.967180e-02
## GO:1904030 25/11248 34/17913 1.305394e-01 1.703377e-01 5.967180e-02
## GO:0046622 45/11248 64/17913 1.312113e-01 1.703377e-01 5.967180e-02
## GO:0001325 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0001696 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0002031 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0006098 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0006534 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0007039 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0009070 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0009200 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0014733 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0014874 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0016180 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0017014 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0018119 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0019377 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0030852 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0031268 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0033599 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0034134 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0042074 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0043162 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0043584 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0048521 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0051044 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0051923 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0060841 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0070935 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0080182 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0090136 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0090656 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0090737 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:1900037 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:1900363 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:1902187 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:1904294 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:1904874 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:2000047 12/11248 15/17913 1.314533e-01 1.703377e-01 5.967180e-02
## GO:0010955 27/11248 37/17913 1.320675e-01 1.710625e-01 5.992570e-02
## GO:1903318 27/11248 37/17913 1.320675e-01 1.710625e-01 5.992570e-02
## GO:0006120 39/11248 55/17913 1.333025e-01 1.725547e-01 6.044846e-02
## GO:0061844 39/11248 55/17913 1.333025e-01 1.725547e-01 6.044846e-02
## GO:1902017 39/11248 55/17913 1.333025e-01 1.725547e-01 6.044846e-02
## GO:0008089 31/11248 43/17913 1.336880e-01 1.730177e-01 6.061065e-02
## GO:0002534 35/11248 49/17913 1.339521e-01 1.731865e-01 6.066979e-02
## GO:0006111 33/11248 46/17913 1.339572e-01 1.731865e-01 6.066979e-02
## GO:0010799 33/11248 46/17913 1.339572e-01 1.731865e-01 6.066979e-02
## GO:0021517 33/11248 46/17913 1.339572e-01 1.731865e-01 6.066979e-02
## GO:0071354 33/11248 46/17913 1.339572e-01 1.731865e-01 6.066979e-02
## GO:0032652 66/11248 96/17913 1.340636e-01 1.732882e-01 6.070541e-02
## GO:0032611 64/11248 93/17913 1.356999e-01 1.753669e-01 6.143359e-02
## GO:1901342 278/11248 425/17913 1.399277e-01 1.807930e-01 6.333446e-02
## GO:0006312 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0006515 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0006829 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0006882 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0030903 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0031065 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0031998 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0032693 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0051446 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0060219 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0060977 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0071318 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0071625 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:1902165 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:1904469 14/11248 18/17913 1.409204e-01 1.815118e-01 6.358624e-02
## GO:0045765 251/11248 383/17913 1.423396e-01 1.833019e-01 6.421335e-02
## GO:1902806 130/11248 195/17913 1.464687e-01 1.885804e-01 6.606248e-02
## GO:0010923 69/11248 101/17913 1.469211e-01 1.891238e-01 6.625285e-02
## GO:0005980 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0006067 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0007063 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0008053 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0010893 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0071459 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0097186 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:1901984 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:2000104 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:2000737 16/11248 21/17913 1.474407e-01 1.894018e-01 6.635024e-02
## GO:0007218 46/11248 66/17913 1.500830e-01 1.927564e-01 6.752542e-02
## GO:0014850 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0032400 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0033119 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0042104 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0042274 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0043567 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0046135 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0048143 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0051560 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0060259 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0090103 18/11248 24/17913 1.519413e-01 1.947022e-01 6.820703e-02
## GO:0050727 312/11248 479/17913 1.520102e-01 1.947503e-01 6.822391e-02
## GO:0032515 40/11248 57/17913 1.542399e-01 1.975258e-01 6.919620e-02
## GO:1900408 40/11248 57/17913 1.542399e-01 1.975258e-01 6.919620e-02
## GO:0015949 20/11248 27/17913 1.550040e-01 1.983008e-01 6.946770e-02
## GO:0044788 20/11248 27/17913 1.550040e-01 1.983008e-01 6.946770e-02
## GO:0046854 20/11248 27/17913 1.550040e-01 1.983008e-01 6.946770e-02
## GO:0048679 20/11248 27/17913 1.550040e-01 1.983008e-01 6.946770e-02
## GO:0050686 20/11248 27/17913 1.550040e-01 1.983008e-01 6.946770e-02
## GO:0009620 36/11248 51/17913 1.565441e-01 2.001890e-01 7.012915e-02
## GO:0050702 36/11248 51/17913 1.565441e-01 2.001890e-01 7.012915e-02
## GO:0007143 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:0021772 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:0045939 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:0050779 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:0099623 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:1900181 22/11248 30/17913 1.570122e-01 2.005409e-01 7.025244e-02
## GO:1901863 59/11248 86/17913 1.571537e-01 2.006806e-01 7.030136e-02
## GO:0010595 87/11248 129/17913 1.573944e-01 2.009468e-01 7.039462e-02
## GO:0045736 24/11248 33/17913 1.582289e-01 2.018883e-01 7.072445e-02
## GO:0048147 24/11248 33/17913 1.582289e-01 2.018883e-01 7.072445e-02
## GO:0048665 24/11248 33/17913 1.582289e-01 2.018883e-01 7.072445e-02
## GO:0097035 28/11248 39/17913 1.589826e-01 2.020513e-01 7.078153e-02
## GO:1902116 28/11248 39/17913 1.589826e-01 2.020513e-01 7.078153e-02
## GO:0043502 72/11248 106/17913 1.597149e-01 2.020513e-01 7.078153e-02
## GO:0000076 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0000185 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0002024 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0002328 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0003161 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0006044 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0006853 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0007256 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0009151 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0009629 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0014831 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0015802 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0016264 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0019471 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0021892 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0021903 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0030002 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0030320 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0030948 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0031274 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0031442 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0031507 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0032060 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0032490 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0033235 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0033327 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0033539 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0034115 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0034372 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0034379 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0043117 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0043248 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0045919 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0046929 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0048505 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0048548 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0050910 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0050930 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0051132 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0055091 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0060272 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0060340 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0060379 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0060856 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0070203 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0070243 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0070587 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0072610 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0072672 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0086016 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0086027 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0098703 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0099151 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1900102 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1901201 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1901569 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1904396 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1904424 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1905244 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:1905668 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:2000105 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:2000786 9/11248 11/17913 1.604620e-01 2.020513e-01 7.078153e-02
## GO:0006415 68/11248 100/17913 1.644588e-01 2.070421e-01 7.252991e-02
## GO:0006305 49/11248 71/17913 1.677745e-01 2.111312e-01 7.396237e-02
## GO:0006306 49/11248 71/17913 1.677745e-01 2.111312e-01 7.396237e-02
## GO:0140053 99/11248 148/17913 1.710555e-01 2.152167e-01 7.539357e-02
## GO:0035308 45/11248 65/17913 1.720400e-01 2.164117e-01 7.581219e-02
## GO:0000963 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0003188 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0007035 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0007501 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0010421 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0021781 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0031269 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0031937 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0035461 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0038166 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0043517 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0045986 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0046037 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0051127 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0060831 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0070166 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0071391 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0071941 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0072498 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0097154 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0097468 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:0099171 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1901213 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1901626 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1902570 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1904814 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1904889 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:2000651 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:2001224 11/11248 14/17913 1.732014e-01 2.166059e-01 7.588023e-02
## GO:1902883 41/11248 59/17913 1.762389e-01 2.203605e-01 7.719552e-02
## GO:0045844 58/11248 85/17913 1.770193e-01 2.212476e-01 7.750628e-02
## GO:0048636 58/11248 85/17913 1.770193e-01 2.212476e-01 7.750628e-02
## GO:0060968 93/11248 139/17913 1.792769e-01 2.240243e-01 7.847902e-02
## GO:0002902 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0006071 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0009264 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0033962 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0034629 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0035313 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0043171 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0043373 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0060080 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0061952 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0070875 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0097320 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0097329 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:1901071 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:1902683 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:1902931 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:1903975 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:1904948 13/11248 17/17913 1.809677e-01 2.253246e-01 7.893453e-02
## GO:0036297 35/11248 50/17913 1.822075e-01 2.267778e-01 7.944361e-02
## GO:0051187 35/11248 50/17913 1.822075e-01 2.267778e-01 7.944361e-02
## GO:0055021 54/11248 79/17913 1.823264e-01 2.268805e-01 7.947959e-02
## GO:0043124 33/11248 47/17913 1.840364e-01 2.289170e-01 8.019300e-02
## GO:1900744 33/11248 47/17913 1.840364e-01 2.289170e-01 8.019300e-02
## GO:0010042 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0032211 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0032516 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0045655 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0055069 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0090195 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:1901673 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:1902236 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:2000738 15/11248 20/17913 1.857143e-01 2.305903e-01 8.077919e-02
## GO:0070296 29/11248 41/17913 1.872782e-01 2.324859e-01 8.144323e-02
## GO:0007032 50/11248 73/17913 1.877904e-01 2.330753e-01 8.164969e-02
## GO:0000729 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0007141 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0016338 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0034453 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0042430 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0061436 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0097150 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:1904861 17/11248 23/17913 1.885014e-01 2.335860e-01 8.182860e-02
## GO:0043267 27/11248 38/17913 1.886012e-01 2.336632e-01 8.185567e-02
## GO:0006378 25/11248 35/17913 1.896409e-01 2.347648e-01 8.224158e-02
## GO:0007339 25/11248 35/17913 1.896409e-01 2.347648e-01 8.224158e-02
## GO:0009395 25/11248 35/17913 1.896409e-01 2.347648e-01 8.224158e-02
## GO:0046131 25/11248 35/17913 1.896409e-01 2.347648e-01 8.224158e-02
## GO:0002021 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0010996 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0036152 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0060914 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0060969 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0061099 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0099560 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:1903792 19/11248 26/17913 1.899553e-01 2.347813e-01 8.224736e-02
## GO:0070207 23/11248 32/17913 1.903059e-01 2.350749e-01 8.235020e-02
## GO:0070232 23/11248 32/17913 1.903059e-01 2.350749e-01 8.235020e-02
## GO:1990774 23/11248 32/17913 1.903059e-01 2.350749e-01 8.235020e-02
## GO:0006506 21/11248 29/17913 1.904702e-01 2.350916e-01 8.235604e-02
## GO:0042491 21/11248 29/17913 1.904702e-01 2.350916e-01 8.235604e-02
## GO:0046134 21/11248 29/17913 1.904702e-01 2.350916e-01 8.235604e-02
## GO:1904467 21/11248 29/17913 1.904702e-01 2.350916e-01 8.235604e-02
## GO:0090502 48/11248 70/17913 1.905782e-01 2.351784e-01 8.238646e-02
## GO:0006414 83/11248 124/17913 1.942139e-01 2.396176e-01 8.394157e-02
## GO:0061371 44/11248 64/17913 1.962551e-01 2.420881e-01 8.480702e-02
## GO:0006323 128/11248 194/17913 1.985343e-01 2.448512e-01 8.577496e-02
## GO:0050680 108/11248 163/17913 2.015908e-01 2.485716e-01 8.707828e-02
## GO:0030301 66/11248 98/17913 2.039422e-01 2.513716e-01 8.805916e-02
## GO:0032006 66/11248 98/17913 2.039422e-01 2.513716e-01 8.805916e-02
## GO:0051153 77/11248 115/17913 2.040204e-01 2.514183e-01 8.807552e-02
## GO:0070268 75/11248 112/17913 2.074468e-01 2.555902e-01 8.953699e-02
## GO:0050704 36/11248 52/17913 2.078960e-01 2.560931e-01 8.971318e-02
## GO:0051147 122/11248 185/17913 2.080199e-01 2.561952e-01 8.974893e-02
## GO:0032413 49/11248 72/17913 2.119631e-01 2.610000e-01 9.143214e-02
## GO:1900015 32/11248 46/17913 2.137329e-01 2.631273e-01 9.217735e-02
## GO:0032088 60/11248 89/17913 2.144784e-01 2.634050e-01 9.227463e-02
## GO:1903046 100/11248 151/17913 2.150395e-01 2.634050e-01 9.227463e-02
## GO:0000012 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0001574 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0001840 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0003149 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0003376 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0006285 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0006857 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0008343 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0010998 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0018065 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0018342 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0030432 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0031282 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0032429 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0032926 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0034135 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0034244 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0034770 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0035376 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0036444 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0042048 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0044351 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0044539 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0045741 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0045945 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0046607 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0048484 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0048570 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0051231 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0051315 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0060088 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0060213 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0060371 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0060456 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0060513 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0061085 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0070341 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0070344 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0070508 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0071577 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0071600 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0090646 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0097354 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1901033 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1902237 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1903265 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1903405 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1903799 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1903897 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1904338 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1904851 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:1904867 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2000049 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2000109 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2000271 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2000628 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2000767 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:2001225 8/11248 10/17913 2.164920e-01 2.634050e-01 9.227463e-02
## GO:0046473 30/11248 43/17913 2.166050e-01 2.634910e-01 9.230477e-02
## GO:0070125 58/11248 86/17913 2.181696e-01 2.653426e-01 9.295341e-02
## GO:0045806 45/11248 66/17913 2.190905e-01 2.663588e-01 9.330939e-02
## GO:0051965 45/11248 66/17913 2.190905e-01 2.663588e-01 9.330939e-02
## GO:0046621 28/11248 40/17913 2.194133e-01 2.666992e-01 9.342866e-02
## GO:0043631 26/11248 37/17913 2.221225e-01 2.698870e-01 9.454540e-02
## GO:1901381 26/11248 37/17913 2.221225e-01 2.698870e-01 9.454540e-02
## GO:0097352 24/11248 34/17913 2.246837e-01 2.721757e-01 9.534714e-02
## GO:0098901 24/11248 34/17913 2.246837e-01 2.721757e-01 9.534714e-02
## GO:0001833 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0002087 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0002864 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0006047 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0009642 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0010459 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0010839 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0016246 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0019627 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0021978 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0031054 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0032725 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0032988 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0034331 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0034370 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0035563 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0038007 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0042659 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0043374 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0044794 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0046415 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0048715 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0060452 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0060601 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0060712 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0070989 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0071287 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0090594 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:1901070 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:1902414 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:1990403 10/11248 13/17913 2.254459e-01 2.721757e-01 9.534714e-02
## GO:0050701 41/11248 60/17913 2.265408e-01 2.734445e-01 9.579164e-02
## GO:0036257 22/11248 31/17913 2.270289e-01 2.738218e-01 9.592380e-02
## GO:0045910 22/11248 31/17913 2.270289e-01 2.738218e-01 9.592380e-02
## GO:0046466 22/11248 31/17913 2.270289e-01 2.738218e-01 9.592380e-02
## GO:0099174 22/11248 31/17913 2.270289e-01 2.738218e-01 9.592380e-02
## GO:0000002 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:0050482 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:0061157 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:0070979 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:0086013 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:1903963 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:2000108 20/11248 28/17913 2.290609e-01 2.751814e-01 9.640010e-02
## GO:0002295 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0006004 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0007096 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0016226 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0022038 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0031163 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0032604 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0034433 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0034434 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0034435 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0034501 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0035025 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0036149 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0042228 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0043174 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0044065 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0045725 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0046339 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0051382 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0051444 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0060263 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0071605 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0071637 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0090153 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0090335 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:1900221 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:1905038 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:2000303 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:2000479 12/11248 16/17913 2.297443e-01 2.751814e-01 9.640010e-02
## GO:0007040 39/11248 57/17913 2.303910e-01 2.758501e-01 9.663434e-02
## GO:0080171 39/11248 57/17913 2.303910e-01 2.758501e-01 9.663434e-02
## GO:0000038 18/11248 25/17913 2.306373e-01 2.758520e-01 9.663500e-02
## GO:0060307 18/11248 25/17913 2.306373e-01 2.758520e-01 9.663500e-02
## GO:0060314 18/11248 25/17913 2.306373e-01 2.758520e-01 9.663500e-02
## GO:1990126 18/11248 25/17913 2.306373e-01 2.758520e-01 9.663500e-02
## GO:0001832 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0002922 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0010523 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0030949 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0042693 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0046386 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0046653 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0046655 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0048025 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0051647 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:1900017 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:1901881 14/11248 19/17913 2.314346e-01 2.758520e-01 9.663500e-02
## GO:0010528 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0010529 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0010842 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0044342 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0051905 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0071425 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0071467 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0071875 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0071985 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0080111 16/11248 22/17913 2.315423e-01 2.758520e-01 9.663500e-02
## GO:0043542 179/11248 275/17913 2.329018e-01 2.774187e-01 9.718384e-02
## GO:0045668 35/11248 51/17913 2.383463e-01 2.837954e-01 9.941772e-02
## GO:2000772 35/11248 51/17913 2.383463e-01 2.837954e-01 9.941772e-02
## GO:0060038 46/11248 68/17913 2.425149e-01 2.887038e-01 1.011372e-01
## GO:0018208 31/11248 45/17913 2.466387e-01 2.935570e-01 1.028374e-01
## GO:0035924 44/11248 65/17913 2.469917e-01 2.939210e-01 1.029649e-01
## GO:0006221 29/11248 42/17913 2.509050e-01 2.984640e-01 1.045563e-01
## GO:0006654 29/11248 42/17913 2.509050e-01 2.984640e-01 1.045563e-01
## GO:0051898 42/11248 62/17913 2.516066e-01 2.991845e-01 1.048087e-01
## GO:1901016 42/11248 62/17913 2.516066e-01 2.991845e-01 1.048087e-01
## GO:0009072 27/11248 39/17913 2.552431e-01 3.033930e-01 1.062830e-01
## GO:0017145 27/11248 39/17913 2.552431e-01 3.033930e-01 1.062830e-01
## GO:0034248 291/11248 452/17913 2.559414e-01 3.041651e-01 1.065535e-01
## GO:0090501 87/11248 132/17913 2.583058e-01 3.069165e-01 1.075174e-01
## GO:1903514 25/11248 36/17913 2.596417e-01 3.084450e-01 1.080528e-01
## GO:0043032 23/11248 33/17913 2.640829e-01 3.135420e-01 1.098384e-01
## GO:0090503 23/11248 33/17913 2.640829e-01 3.135420e-01 1.098384e-01
## GO:0098664 23/11248 33/17913 2.640829e-01 3.135420e-01 1.098384e-01
## GO:0016233 36/11248 53/17913 2.663699e-01 3.161369e-01 1.107474e-01
## GO:0046456 36/11248 53/17913 2.663699e-01 3.161369e-01 1.107474e-01
## GO:0036258 21/11248 30/17913 2.685388e-01 3.185897e-01 1.116067e-01
## GO:1905606 21/11248 30/17913 2.685388e-01 3.185897e-01 1.116067e-01
## GO:0021846 19/11248 27/17913 2.729648e-01 3.237176e-01 1.134030e-01
## GO:1904357 19/11248 27/17913 2.729648e-01 3.237176e-01 1.134030e-01
## GO:0006303 54/11248 81/17913 2.738506e-01 3.247064e-01 1.137494e-01
## GO:0009566 111/11248 170/17913 2.763069e-01 3.275565e-01 1.147479e-01
## GO:0010257 43/11248 64/17913 2.770759e-01 3.282231e-01 1.149814e-01
## GO:0032981 43/11248 64/17913 2.770759e-01 3.282231e-01 1.149814e-01
## GO:0008334 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:0034035 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:0034162 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:0048643 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:0050427 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:1902410 17/11248 24/17913 2.772901e-01 3.282231e-01 1.149814e-01
## GO:0008589 52/11248 78/17913 2.792340e-01 3.304614e-01 1.157655e-01
## GO:0010884 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0032401 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0032462 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0039702 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0051904 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0070193 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:2000316 15/11248 21/17913 2.813983e-01 3.325810e-01 1.165080e-01
## GO:0006333 116/11248 178/17913 2.820672e-01 3.333084e-01 1.167628e-01
## GO:0140013 93/11248 142/17913 2.822472e-01 3.334579e-01 1.168152e-01
## GO:0007140 30/11248 44/17913 2.827450e-01 3.337932e-01 1.169327e-01
## GO:0019731 30/11248 44/17913 2.827450e-01 3.337932e-01 1.169327e-01
## GO:0032527 30/11248 44/17913 2.827450e-01 3.337932e-01 1.169327e-01
## GO:0061014 30/11248 44/17913 2.827450e-01 3.337932e-01 1.169327e-01
## GO:0000726 59/11248 89/17913 2.849495e-01 3.361170e-01 1.177467e-01
## GO:0006123 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:0019646 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:0045947 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:0098581 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:0098698 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:2000319 13/11248 18/17913 2.850906e-01 3.361170e-01 1.177467e-01
## GO:0001711 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0002467 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0006103 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0007097 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0030730 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0032645 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0034111 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0042754 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0043249 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0045414 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0070571 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0097107 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:1902188 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:2000402 11/11248 15/17913 2.880086e-01 3.375590e-01 1.182519e-01
## GO:0034122 28/11248 41/17913 2.886274e-01 3.375590e-01 1.182519e-01
## GO:0098760 28/11248 41/17913 2.886274e-01 3.375590e-01 1.182519e-01
## GO:0098761 28/11248 41/17913 2.886274e-01 3.375590e-01 1.182519e-01
## GO:0001973 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0002862 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0002903 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0005513 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006012 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006069 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006122 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006244 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006390 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006553 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0006554 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0014029 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0015867 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0018216 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0030497 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0034755 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0035627 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0046479 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0051238 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0060211 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0060339 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0060394 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0071468 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0072540 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0072710 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0090161 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:0090520 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1900044 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1900165 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1900402 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1901160 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1901298 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1901387 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1902004 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1903909 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1904816 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1904862 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1905522 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1905666 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1990173 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:2000341 9/11248 12/17913 2.894523e-01 3.375590e-01 1.182519e-01
## GO:1901989 64/11248 97/17913 2.948756e-01 3.438195e-01 1.204450e-01
## GO:0032410 55/11248 83/17913 2.963268e-01 3.454469e-01 1.210151e-01
## GO:0006959 178/11248 276/17913 3.007130e-01 3.504947e-01 1.227834e-01
## GO:0000413 24/11248 35/17913 3.011407e-01 3.508621e-01 1.229122e-01
## GO:0014808 24/11248 35/17913 3.011407e-01 3.508621e-01 1.229122e-01
## GO:1905515 33/11248 49/17913 3.076836e-01 3.584183e-01 1.255592e-01
## GO:0009954 22/11248 32/17913 3.078195e-01 3.584428e-01 1.255678e-01
## GO:1900745 22/11248 32/17913 3.078195e-01 3.584428e-01 1.255678e-01
## GO:0043044 51/11248 77/17913 3.085211e-01 3.591927e-01 1.258305e-01
## GO:0070126 58/11248 88/17913 3.126497e-01 3.639315e-01 1.274905e-01
## GO:0010800 20/11248 29/17913 3.148181e-01 3.663189e-01 1.283269e-01
## GO:0031297 20/11248 29/17913 3.148181e-01 3.663189e-01 1.283269e-01
## GO:0016266 40/11248 60/17913 3.160231e-01 3.676524e-01 1.287940e-01
## GO:1903313 47/11248 71/17913 3.216535e-01 3.741328e-01 1.310642e-01
## GO:0034728 107/11248 165/17913 3.218494e-01 3.742045e-01 1.310894e-01
## GO:0045010 29/11248 43/17913 3.219551e-01 3.742045e-01 1.310894e-01
## GO:0051154 29/11248 43/17913 3.219551e-01 3.742045e-01 1.310894e-01
## GO:1901031 29/11248 43/17913 3.219551e-01 3.742045e-01 1.310894e-01
## GO:0021591 18/11248 26/17913 3.221717e-01 3.743169e-01 1.311287e-01
## GO:0033561 18/11248 26/17913 3.221717e-01 3.743169e-01 1.311287e-01
## GO:0050909 38/11248 57/17913 3.230755e-01 3.752971e-01 1.314721e-01
## GO:0042158 54/11248 82/17913 3.255458e-01 3.780259e-01 1.324280e-01
## GO:1901992 54/11248 82/17913 3.255458e-01 3.780259e-01 1.324280e-01
## GO:0038084 27/11248 40/17913 3.296587e-01 3.826592e-01 1.340512e-01
## GO:0072348 27/11248 40/17913 3.296587e-01 3.826592e-01 1.340512e-01
## GO:0007064 16/11248 23/17913 3.299215e-01 3.827506e-01 1.340832e-01
## GO:0021511 16/11248 23/17913 3.299215e-01 3.827506e-01 1.340832e-01
## GO:1903861 16/11248 23/17913 3.299215e-01 3.827506e-01 1.340832e-01
## GO:0032506 25/11248 37/17913 3.378066e-01 3.915284e-01 1.371582e-01
## GO:0050691 25/11248 37/17913 3.378066e-01 3.915284e-01 1.371582e-01
## GO:1903427 25/11248 37/17913 3.378066e-01 3.915284e-01 1.371582e-01
## GO:0007289 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0008356 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0010002 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0032402 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0045723 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0060972 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0097503 14/11248 20/17913 3.381154e-01 3.915284e-01 1.371582e-01
## GO:0007281 153/11248 238/17913 3.418095e-01 3.957327e-01 1.386310e-01
## GO:2001258 32/11248 48/17913 3.463542e-01 4.003311e-01 1.402419e-01
## GO:2001024 23/11248 34/17913 3.464632e-01 4.003311e-01 1.402419e-01
## GO:2001038 23/11248 34/17913 3.464632e-01 4.003311e-01 1.402419e-01
## GO:0006349 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0006586 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0006750 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0007635 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0009148 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0015693 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0015868 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0016254 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0018904 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0034384 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0035518 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0042095 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0050665 12/11248 17/17913 3.468082e-01 4.003311e-01 1.402419e-01
## GO:0048477 55/11248 84/17913 3.488293e-01 4.025897e-01 1.410331e-01
## GO:0010830 39/11248 59/17913 3.513881e-01 4.054679e-01 1.420414e-01
## GO:0038095 109/11248 169/17913 3.539094e-01 4.083017e-01 1.430341e-01
## GO:0006658 21/11248 31/17913 3.557095e-01 4.092658e-01 1.433718e-01
## GO:0010880 21/11248 31/17913 3.557095e-01 4.092658e-01 1.433718e-01
## GO:0033687 21/11248 31/17913 3.557095e-01 4.092658e-01 1.433718e-01
## GO:1903432 21/11248 31/17913 3.557095e-01 4.092658e-01 1.433718e-01
## GO:0006646 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0006684 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0009129 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0032509 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0035589 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0048368 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0051016 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0060049 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0061042 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0072567 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0099632 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0099637 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:1900121 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:1903054 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:1903351 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:1903540 10/11248 14/17913 3.560573e-01 4.092658e-01 1.433718e-01
## GO:0032543 81/11248 125/17913 3.571186e-01 4.103590e-01 1.437548e-01
## GO:0055092 60/11248 92/17913 3.571400e-01 4.103590e-01 1.437548e-01
## GO:0042742 157/11248 245/17913 3.635886e-01 4.173556e-01 1.462058e-01
## GO:0009074 19/11248 28/17913 3.656508e-01 4.173556e-01 1.462058e-01
## GO:0010882 19/11248 28/17913 3.656508e-01 4.173556e-01 1.462058e-01
## GO:0032232 19/11248 28/17913 3.656508e-01 4.173556e-01 1.462058e-01
## GO:0033688 19/11248 28/17913 3.656508e-01 4.173556e-01 1.462058e-01
## GO:0044030 19/11248 28/17913 3.656508e-01 4.173556e-01 1.462058e-01
## GO:0000050 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0002323 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0003413 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0008655 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0009223 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0010896 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0019321 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0019755 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0033234 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0033523 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0035747 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0042983 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0042984 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0043097 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0043201 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0043619 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0045116 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0045217 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0060019 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0060159 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0060315 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0070189 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0070572 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0071044 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0072173 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0072711 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0090073 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0090084 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0090394 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0090657 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:1900115 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:1900116 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:1901077 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:1905146 8/11248 11/17913 3.659054e-01 4.173556e-01 1.462058e-01
## GO:0060421 35/11248 53/17913 3.684484e-01 4.201794e-01 1.471950e-01
## GO:0060119 26/11248 39/17913 3.737696e-01 4.261697e-01 1.492935e-01
## GO:0021544 17/11248 25/17913 3.764274e-01 4.288082e-01 1.502178e-01
## GO:0032461 17/11248 25/17913 3.764274e-01 4.288082e-01 1.502178e-01
## GO:0046755 17/11248 25/17913 3.764274e-01 4.288082e-01 1.502178e-01
## GO:0051497 17/11248 25/17913 3.764274e-01 4.288082e-01 1.502178e-01
## GO:1903859 17/11248 25/17913 3.764274e-01 4.288082e-01 1.502178e-01
## GO:0060964 73/11248 113/17913 3.844410e-01 4.378571e-01 1.533878e-01
## GO:0042632 59/11248 91/17913 3.871431e-01 4.408541e-01 1.544377e-01
## GO:0006516 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0009220 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0032594 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0036037 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0045956 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0046337 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:2000050 15/11248 22/17913 3.882326e-01 4.415305e-01 1.546746e-01
## GO:0060043 38/11248 58/17913 3.886202e-01 4.418907e-01 1.548008e-01
## GO:0045005 22/11248 33/17913 3.952925e-01 4.493139e-01 1.574013e-01
## GO:0045922 22/11248 33/17913 3.952925e-01 4.493139e-01 1.574013e-01
## GO:0034383 29/11248 44/17913 3.977612e-01 4.520375e-01 1.583554e-01
## GO:0006448 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0006488 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0006490 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0007350 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0009147 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0015669 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0019184 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0021756 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0032042 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0032700 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0060149 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0060967 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0098911 13/11248 19/17913 4.013452e-01 4.550329e-01 1.594047e-01
## GO:0035914 41/11248 63/17913 4.071671e-01 4.615359e-01 1.616828e-01
## GO:0010586 20/11248 30/17913 4.073769e-01 4.615359e-01 1.616828e-01
## GO:0045879 20/11248 30/17913 4.073769e-01 4.615359e-01 1.616828e-01
## GO:2000781 20/11248 30/17913 4.073769e-01 4.615359e-01 1.616828e-01
## GO:0045601 27/11248 41/17913 4.087904e-01 4.630533e-01 1.622144e-01
## GO:0014067 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0043649 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0045072 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0045722 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0051503 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0060457 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0060965 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0071880 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0072189 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0086103 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:1903019 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:1903830 11/11248 16/17913 4.161902e-01 4.704103e-01 1.647916e-01
## GO:0007029 32/11248 49/17913 4.191460e-01 4.735796e-01 1.659019e-01
## GO:1904707 32/11248 49/17913 4.191460e-01 4.735796e-01 1.659019e-01
## GO:0036151 18/11248 27/17913 4.205856e-01 4.747113e-01 1.662983e-01
## GO:0042226 18/11248 27/17913 4.205856e-01 4.747113e-01 1.662983e-01
## GO:0045686 18/11248 27/17913 4.205856e-01 4.747113e-01 1.662983e-01
## GO:0060122 18/11248 27/17913 4.205856e-01 4.747113e-01 1.662983e-01
## GO:0120033 18/11248 27/17913 4.205856e-01 4.747113e-01 1.662983e-01
## GO:0007210 25/11248 38/17913 4.206042e-01 4.747113e-01 1.662983e-01
## GO:0001935 118/11248 185/17913 4.216217e-01 4.757735e-01 1.666705e-01
## GO:0060147 75/11248 117/17913 4.245495e-01 4.789041e-01 1.677672e-01
## GO:0060966 75/11248 117/17913 4.245495e-01 4.789041e-01 1.677672e-01
## GO:0006493 68/11248 106/17913 4.281523e-01 4.828809e-01 1.691603e-01
## GO:0030514 30/11248 46/17913 4.305452e-01 4.854919e-01 1.700750e-01
## GO:0010831 23/11248 35/17913 4.333313e-01 4.864120e-01 1.703973e-01
## GO:0036474 23/11248 35/17913 4.333313e-01 4.864120e-01 1.703973e-01
## GO:0002097 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0009130 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0010838 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0014745 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0018410 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0030490 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0031665 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0034214 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0035112 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0038092 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0042559 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0046541 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0048681 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0055070 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0060628 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0061052 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0070431 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0090069 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0098543 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0098877 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0098969 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:1902902 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:1903960 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:1904293 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:2001279 9/11248 13/17913 4.334665e-01 4.864120e-01 1.703973e-01
## GO:0009218 16/11248 24/17913 4.351842e-01 4.880760e-01 1.709802e-01
## GO:0032717 16/11248 24/17913 4.351842e-01 4.880760e-01 1.709802e-01
## GO:0048753 16/11248 24/17913 4.351842e-01 4.880760e-01 1.709802e-01
## GO:0001895 47/11248 73/17913 4.402820e-01 4.937047e-01 1.729520e-01
## GO:0051149 71/11248 111/17913 4.406112e-01 4.939850e-01 1.730502e-01
## GO:0010470 28/11248 43/17913 4.426908e-01 4.961382e-01 1.738045e-01
## GO:0055026 28/11248 43/17913 4.426908e-01 4.961382e-01 1.738045e-01
## GO:0045738 21/11248 32/17913 4.471359e-01 5.008500e-01 1.754551e-01
## GO:0055022 21/11248 32/17913 4.471359e-01 5.008500e-01 1.754551e-01
## GO:0061117 21/11248 32/17913 4.471359e-01 5.008500e-01 1.754551e-01
## GO:0021515 33/11248 51/17913 4.500130e-01 5.039823e-01 1.765524e-01
## GO:0034381 45/11248 70/17913 4.504311e-01 5.043599e-01 1.766847e-01
## GO:0010310 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0010829 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0021513 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0036150 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0042402 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0046132 14/11248 21/17913 4.515495e-01 5.050683e-01 1.769329e-01
## GO:0001778 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0006307 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0006878 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0007028 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0016559 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0021562 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0032525 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0033690 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0034447 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0035768 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0042670 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0042761 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0045988 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0046322 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0046349 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0046549 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0046710 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0048680 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0051255 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0060352 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0061179 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0061635 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0070314 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0071838 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0071863 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0072393 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0090205 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0098722 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:1900426 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:1902033 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:1902915 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:2000035 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:2000544 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:2000650 7/11248 10/17913 4.544555e-01 5.052385e-01 1.769925e-01
## GO:0001578 50/11248 78/17913 4.551923e-01 5.059674e-01 1.772478e-01
## GO:0042036 26/11248 40/17913 4.556898e-01 5.064303e-01 1.774100e-01
## GO:0007338 89/11248 140/17913 4.616403e-01 5.129520e-01 1.796946e-01
## GO:0001580 19/11248 29/17913 4.622329e-01 5.132447e-01 1.797972e-01
## GO:0010390 19/11248 29/17913 4.622329e-01 5.132447e-01 1.797972e-01
## GO:0030970 19/11248 29/17913 4.622329e-01 5.132447e-01 1.797972e-01
## GO:1903513 19/11248 29/17913 4.622329e-01 5.132447e-01 1.797972e-01
## GO:0032365 24/11248 37/17913 4.696750e-01 5.212114e-01 1.825880e-01
## GO:0007130 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0010832 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0015865 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0016556 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0036148 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0036342 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0044827 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0070230 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:2000311 12/11248 18/17913 4.702433e-01 5.212114e-01 1.825880e-01
## GO:0032007 29/11248 45/17913 4.753427e-01 5.267699e-01 1.845352e-01
## GO:0050829 46/11248 72/17913 4.759658e-01 5.273667e-01 1.847443e-01
## GO:0030149 17/11248 26/17913 4.789102e-01 5.303465e-01 1.857882e-01
## GO:0060632 17/11248 26/17913 4.789102e-01 5.303465e-01 1.857882e-01
## GO:1901018 17/11248 26/17913 4.789102e-01 5.303465e-01 1.857882e-01
## GO:0043536 51/11248 80/17913 4.793453e-01 5.307341e-01 1.859240e-01
## GO:0002526 139/11248 220/17913 4.823674e-01 5.339854e-01 1.870629e-01
## GO:0007131 22/11248 34/17913 4.848130e-01 5.364071e-01 1.879113e-01
## GO:0033363 22/11248 34/17913 4.848130e-01 5.364071e-01 1.879113e-01
## GO:0050913 22/11248 34/17913 4.848130e-01 5.364071e-01 1.879113e-01
## GO:0009988 44/11248 69/17913 4.870113e-01 5.386483e-01 1.886964e-01
## GO:0051155 44/11248 69/17913 4.870113e-01 5.386483e-01 1.886964e-01
## GO:0006497 49/11248 77/17913 4.898965e-01 5.416474e-01 1.897470e-01
## GO:0060761 49/11248 77/17913 4.898965e-01 5.416474e-01 1.897470e-01
## GO:0051280 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:0071435 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:0097623 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:1903350 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:1905276 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:2001185 10/11248 15/17913 4.921547e-01 5.435660e-01 1.904192e-01
## GO:0009310 15/11248 23/17913 4.975659e-01 5.492507e-01 1.924106e-01
## GO:0032438 15/11248 23/17913 4.975659e-01 5.492507e-01 1.924106e-01
## GO:0045717 15/11248 23/17913 4.975659e-01 5.492507e-01 1.924106e-01
## GO:0051148 42/11248 66/17913 4.985425e-01 5.502314e-01 1.927542e-01
## GO:0006691 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:0042572 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:0046471 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:1901380 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:1903205 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:1904893 20/11248 31/17913 5.013175e-01 5.527074e-01 1.936215e-01
## GO:0003298 25/11248 39/17913 5.042376e-01 5.556322e-01 1.946461e-01
## GO:0003301 25/11248 39/17913 5.042376e-01 5.556322e-01 1.946461e-01
## GO:0061049 25/11248 39/17913 5.042376e-01 5.556322e-01 1.946461e-01
## GO:0055025 40/11248 63/17913 5.105998e-01 5.625436e-01 1.970673e-01
## GO:0001960 45/11248 71/17913 5.122720e-01 5.642862e-01 1.976778e-01
## GO:0014743 50/11248 79/17913 5.138041e-01 5.658740e-01 1.982340e-01
## GO:0050728 107/11248 170/17913 5.183631e-01 5.679795e-01 1.989716e-01
## GO:0010801 13/11248 20/17913 5.187720e-01 5.679795e-01 1.989716e-01
## GO:0045019 13/11248 20/17913 5.187720e-01 5.679795e-01 1.989716e-01
## GO:1900424 13/11248 20/17913 5.187720e-01 5.679795e-01 1.989716e-01
## GO:1904406 13/11248 20/17913 5.187720e-01 5.679795e-01 1.989716e-01
## GO:2001014 13/11248 20/17913 5.187720e-01 5.679795e-01 1.989716e-01
## GO:0002093 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0006568 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0007175 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0007288 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0008228 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0009111 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0010649 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0010872 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0010889 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0016045 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0021520 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0021559 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0035092 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0035330 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0042159 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0042487 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0044793 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0045760 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0046033 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0061450 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0072488 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0072578 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0098962 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0150065 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:1900118 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:1901163 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:2000009 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:2000232 8/11248 12/17913 5.188116e-01 5.679795e-01 1.989716e-01
## GO:0016339 18/11248 28/17913 5.194683e-01 5.684988e-01 1.991535e-01
## GO:0050855 18/11248 28/17913 5.194683e-01 5.684988e-01 1.991535e-01
## GO:0055090 23/11248 36/17913 5.203642e-01 5.692795e-01 1.994270e-01
## GO:0070328 23/11248 36/17913 5.203642e-01 5.692795e-01 1.994270e-01
## GO:0010611 48/11248 76/17913 5.250661e-01 5.743227e-01 2.011937e-01
## GO:0010657 63/11248 100/17913 5.276494e-01 5.770472e-01 2.021481e-01
## GO:0055023 31/11248 49/17913 5.365872e-01 5.866160e-01 2.055002e-01
## GO:0097300 31/11248 49/17913 5.365872e-01 5.866160e-01 2.055002e-01
## GO:0007340 21/11248 33/17913 5.378618e-01 5.879064e-01 2.059523e-01
## GO:0045408 16/11248 25/17913 5.396407e-01 5.894377e-01 2.064887e-01
## GO:0061050 16/11248 25/17913 5.396407e-01 5.894377e-01 2.064887e-01
## GO:0070861 16/11248 25/17913 5.396407e-01 5.894377e-01 2.064887e-01
## GO:2000353 16/11248 25/17913 5.396407e-01 5.894377e-01 2.064887e-01
## GO:0006379 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0008272 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0021514 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0042953 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0044872 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0051284 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0061577 11/11248 17/17913 5.433905e-01 5.928069e-01 2.076690e-01
## GO:0070265 39/11248 62/17913 5.495141e-01 5.993826e-01 2.099725e-01
## GO:0032715 34/11248 54/17913 5.504157e-01 6.002610e-01 2.102803e-01
## GO:0038202 24/11248 38/17913 5.537962e-01 6.038421e-01 2.115348e-01
## GO:2000780 19/11248 30/17913 5.569842e-01 6.072121e-01 2.127153e-01
## GO:0001539 14/11248 22/17913 5.623542e-01 6.125311e-01 2.145786e-01
## GO:0021516 14/11248 22/17913 5.623542e-01 6.125311e-01 2.145786e-01
## GO:0048103 14/11248 22/17913 5.623542e-01 6.125311e-01 2.145786e-01
## GO:0060285 14/11248 22/17913 5.623542e-01 6.125311e-01 2.145786e-01
## GO:2001032 14/11248 22/17913 5.623542e-01 6.125311e-01 2.145786e-01
## GO:0010613 27/11248 43/17913 5.679080e-01 6.183644e-01 2.166222e-01
## GO:0034105 27/11248 43/17913 5.679080e-01 6.183644e-01 2.166222e-01
## GO:0035825 22/11248 35/17913 5.719358e-01 6.218493e-01 2.178430e-01
## GO:0003128 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0006241 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0009209 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0021527 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0042249 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0043173 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0044546 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0046036 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0046459 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0060026 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0060911 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0070234 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0080009 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0106070 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:1904152 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:2000095 9/11248 14/17913 5.728031e-01 6.218493e-01 2.178430e-01
## GO:0033344 35/11248 56/17913 5.772761e-01 6.265962e-01 2.195059e-01
## GO:0018200 17/11248 27/17913 5.780619e-01 6.273399e-01 2.197664e-01
## GO:0040019 25/11248 40/17913 5.851505e-01 6.348120e-01 2.223840e-01
## GO:0050832 25/11248 40/17913 5.851505e-01 6.348120e-01 2.223840e-01
## GO:0010663 12/11248 19/17913 5.883544e-01 6.378440e-01 2.234462e-01
## GO:0010666 12/11248 19/17913 5.883544e-01 6.378440e-01 2.234462e-01
## GO:0046475 12/11248 19/17913 5.883544e-01 6.378440e-01 2.234462e-01
## GO:0098915 12/11248 19/17913 5.883544e-01 6.378440e-01 2.234462e-01
## GO:0000289 20/11248 32/17913 5.916202e-01 6.409391e-01 2.245304e-01
## GO:0003299 20/11248 32/17913 5.916202e-01 6.409391e-01 2.245304e-01
## GO:0014887 20/11248 32/17913 5.916202e-01 6.409391e-01 2.245304e-01
## GO:0014898 20/11248 32/17913 5.916202e-01 6.409391e-01 2.245304e-01
## GO:0070266 28/11248 45/17913 5.970412e-01 6.466996e-01 2.265484e-01
## GO:1905207 41/11248 66/17913 5.989067e-01 6.486076e-01 2.272168e-01
## GO:0006862 15/11248 24/17913 6.015354e-01 6.510024e-01 2.280557e-01
## GO:0010881 15/11248 24/17913 6.015354e-01 6.510024e-01 2.280557e-01
## GO:0030488 15/11248 24/17913 6.015354e-01 6.510024e-01 2.280557e-01
## GO:0150078 15/11248 24/17913 6.015354e-01 6.510024e-01 2.280557e-01
## GO:0033108 54/11248 87/17913 6.024581e-01 6.518879e-01 2.283659e-01
## GO:0045494 23/11248 37/17913 6.036394e-01 6.530528e-01 2.287740e-01
## GO:0001845 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0002098 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0015697 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0015791 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0018095 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0019532 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0021521 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0021670 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0031392 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0035766 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0045006 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0045141 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0045176 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0048853 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0051974 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0052803 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0060573 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0060837 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0061365 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0086023 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0090178 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1901096 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1901660 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1902093 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1902306 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1903977 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1904468 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:1904847 7/11248 11/17913 6.094182e-01 6.561185e-01 2.298480e-01
## GO:0070102 18/11248 29/17913 6.131263e-01 6.598830e-01 2.311667e-01
## GO:1904994 18/11248 29/17913 6.131263e-01 6.598830e-01 2.311667e-01
## GO:0000394 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:0006450 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:0046325 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:0060117 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:1900153 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:1901317 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:1902358 10/11248 16/17913 6.187621e-01 6.651453e-01 2.330102e-01
## GO:0017000 13/11248 21/17913 6.280085e-01 6.746198e-01 2.363292e-01
## GO:0042573 13/11248 21/17913 6.280085e-01 6.746198e-01 2.363292e-01
## GO:0044458 13/11248 21/17913 6.280085e-01 6.746198e-01 2.363292e-01
## GO:0090208 13/11248 21/17913 6.280085e-01 6.746198e-01 2.363292e-01
## GO:0010661 24/11248 39/17913 6.330899e-01 6.797271e-01 2.381184e-01
## GO:0060045 24/11248 39/17913 6.330899e-01 6.797271e-01 2.381184e-01
## GO:0090207 24/11248 39/17913 6.330899e-01 6.797271e-01 2.381184e-01
## GO:0002230 16/11248 26/17913 6.368096e-01 6.834856e-01 2.394351e-01
## GO:0080154 16/11248 26/17913 6.368096e-01 6.834856e-01 2.394351e-01
## GO:0014742 27/11248 44/17913 6.419044e-01 6.888353e-01 2.413091e-01
## GO:0061982 56/11248 91/17913 6.422821e-01 6.891220e-01 2.414096e-01
## GO:0033120 19/11248 31/17913 6.451231e-01 6.916944e-01 2.423107e-01
## GO:0045880 19/11248 31/17913 6.451231e-01 6.916944e-01 2.423107e-01
## GO:0097502 19/11248 31/17913 6.451231e-01 6.916944e-01 2.423107e-01
## GO:1903978 19/11248 31/17913 6.451231e-01 6.916944e-01 2.423107e-01
## GO:0010660 59/11248 96/17913 6.496639e-01 6.964432e-01 2.439743e-01
## GO:0002251 22/11248 36/17913 6.529769e-01 6.998746e-01 2.451764e-01
## GO:0007127 54/11248 88/17913 6.540041e-01 7.001472e-01 2.452719e-01
## GO:0003085 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0010561 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0010766 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0030836 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0031223 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0036445 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0042574 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0043628 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0048311 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0050746 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0055057 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0060312 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0061469 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0070863 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:1900225 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:1904251 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:2001034 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:2001256 8/11248 13/17913 6.553638e-01 7.001472e-01 2.452719e-01
## GO:0035269 11/11248 18/17913 6.583360e-01 7.029613e-01 2.462577e-01
## GO:0051782 11/11248 18/17913 6.583360e-01 7.029613e-01 2.462577e-01
## GO:1900151 11/11248 18/17913 6.583360e-01 7.029613e-01 2.462577e-01
## GO:0045603 14/11248 23/17913 6.631360e-01 7.078443e-01 2.479683e-01
## GO:2000726 14/11248 23/17913 6.631360e-01 7.078443e-01 2.479683e-01
## GO:0048730 17/11248 28/17913 6.686155e-01 7.134492e-01 2.499317e-01
## GO:0050685 17/11248 28/17913 6.686155e-01 7.134492e-01 2.499317e-01
## GO:0034143 12/11248 20/17913 6.927280e-01 7.378984e-01 2.584967e-01
## GO:0034393 12/11248 20/17913 6.927280e-01 7.378984e-01 2.584967e-01
## GO:0043031 12/11248 20/17913 6.927280e-01 7.378984e-01 2.584967e-01
## GO:1902259 12/11248 20/17913 6.927280e-01 7.378984e-01 2.584967e-01
## GO:2000380 12/11248 20/17913 6.927280e-01 7.378984e-01 2.584967e-01
## GO:0006388 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0007351 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0007638 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0008595 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0009208 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0015671 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0033689 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0034356 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0043508 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0045837 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0060579 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0060581 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0061158 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:1902514 9/11248 15/17913 6.937759e-01 7.378984e-01 2.584967e-01
## GO:0070129 15/11248 25/17913 6.943774e-01 7.384122e-01 2.586767e-01
## GO:0006336 32/11248 53/17913 6.967311e-01 7.406626e-01 2.594650e-01
## GO:0034724 32/11248 53/17913 6.967311e-01 7.406626e-01 2.594650e-01
## GO:0001936 104/11248 170/17913 6.993024e-01 7.419106e-01 2.599022e-01
## GO:0051354 21/11248 35/17913 7.009866e-01 7.419106e-01 2.599022e-01
## GO:0003356 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0006222 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0006264 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0006547 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0006569 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0009173 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0009174 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0031629 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0035646 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0035871 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0042436 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0043485 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0046049 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0046051 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0046218 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0048757 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0051006 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0060923 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0070071 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0070862 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0071639 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0090179 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0090336 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0098598 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:1901725 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:2000425 6/11248 10/17913 7.012352e-01 7.419106e-01 2.599022e-01
## GO:0048515 84/11248 138/17913 7.130868e-01 7.543218e-01 2.642500e-01
## GO:0000387 30/11248 50/17913 7.134840e-01 7.544860e-01 2.643075e-01
## GO:2000725 30/11248 50/17913 7.134840e-01 7.544860e-01 2.643075e-01
## GO:0007156 79/11248 130/17913 7.173452e-01 7.584406e-01 2.656929e-01
## GO:0051450 16/11248 27/17913 7.222609e-01 7.633791e-01 2.674229e-01
## GO:1905208 16/11248 27/17913 7.222609e-01 7.633791e-01 2.674229e-01
## GO:0043950 13/11248 22/17913 7.228426e-01 7.636058e-01 2.675023e-01
## GO:0060547 13/11248 22/17913 7.228426e-01 7.636058e-01 2.675023e-01
## GO:1900016 13/11248 22/17913 7.228426e-01 7.636058e-01 2.675023e-01
## GO:0010719 19/11248 32/17913 7.233197e-01 7.639804e-01 2.676336e-01
## GO:0034312 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:0046514 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:0050711 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:0050908 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:0050962 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:2000042 10/11248 17/17913 7.264360e-01 7.664932e-01 2.685138e-01
## GO:0031497 93/11248 153/17913 7.272063e-01 7.671762e-01 2.687531e-01
## GO:0045814 61/11248 101/17913 7.284499e-01 7.683582e-01 2.691672e-01
## GO:0007286 80/11248 132/17913 7.312186e-01 7.711482e-01 2.701446e-01
## GO:0016064 104/11248 171/17913 7.323592e-01 7.722206e-01 2.705202e-01
## GO:0006662 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0007342 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0015780 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0017121 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0021889 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0034397 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0035751 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0042118 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0043476 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0043482 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0045078 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0045602 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0060294 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0070986 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0090177 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0090220 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0090481 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:1902018 7/11248 12/17913 7.362674e-01 7.739865e-01 2.711389e-01
## GO:0010658 37/11248 62/17913 7.408794e-01 7.787036e-01 2.727913e-01
## GO:0019724 105/11248 173/17913 7.442617e-01 7.821267e-01 2.739905e-01
## GO:0014741 23/11248 39/17913 7.475934e-01 7.854956e-01 2.751707e-01
## GO:0010804 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:0031069 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:1901032 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:1902547 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:1903206 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:2001039 14/11248 24/17913 7.493768e-01 7.865746e-01 2.755486e-01
## GO:0034508 32/11248 54/17913 7.532965e-01 7.905558e-01 2.769433e-01
## GO:0034389 11/11248 19/17913 7.545607e-01 7.916162e-01 2.773148e-01
## GO:0035268 11/11248 19/17913 7.545607e-01 7.916162e-01 2.773148e-01
## GO:0006417 243/11248 397/17913 7.625628e-01 7.998767e-01 2.802086e-01
## GO:0008544 277/11248 452/17913 7.653109e-01 8.016864e-01 2.808425e-01
## GO:0002091 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0009109 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0010867 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0010917 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0032048 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0046341 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0048712 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:0050713 8/11248 14/17913 7.654447e-01 8.016864e-01 2.808425e-01
## GO:1905209 24/11248 41/17913 7.679427e-01 8.041676e-01 2.817118e-01
## GO:0010453 21/11248 36/17913 7.682001e-01 8.043022e-01 2.817589e-01
## GO:0150077 30/11248 51/17913 7.696020e-01 8.056348e-01 2.822257e-01
## GO:1901017 15/11248 26/17913 7.728789e-01 8.086580e-01 2.832848e-01
## GO:1904754 15/11248 26/17913 7.728789e-01 8.086580e-01 2.832848e-01
## GO:2000765 15/11248 26/17913 7.728789e-01 8.086580e-01 2.832848e-01
## GO:0060044 12/11248 21/17913 7.790205e-01 8.149472e-01 2.854880e-01
## GO:0050830 51/11248 86/17913 7.841998e-01 8.202278e-01 2.873379e-01
## GO:0002385 19/11248 33/17913 7.898117e-01 8.256961e-01 2.892535e-01
## GO:0001675 9/11248 16/17913 7.902221e-01 8.256961e-01 2.892535e-01
## GO:0002115 9/11248 16/17913 7.902221e-01 8.256961e-01 2.892535e-01
## GO:0015074 9/11248 16/17913 7.902221e-01 8.256961e-01 2.892535e-01
## GO:0045026 9/11248 16/17913 7.902221e-01 8.256961e-01 2.892535e-01
## GO:0060046 9/11248 16/17913 7.902221e-01 8.256961e-01 2.892535e-01
## GO:0048261 16/11248 28/17913 7.937879e-01 8.292831e-01 2.905101e-01
## GO:0006063 13/11248 23/17913 8.004612e-01 8.355550e-01 2.927072e-01
## GO:0019585 13/11248 23/17913 8.004612e-01 8.355550e-01 2.927072e-01
## GO:0048240 13/11248 23/17913 8.004612e-01 8.355550e-01 2.927072e-01
## GO:1900746 13/11248 23/17913 8.004612e-01 8.355550e-01 2.927072e-01
## GO:2000291 13/11248 23/17913 8.004612e-01 8.355550e-01 2.927072e-01
## GO:0043486 32/11248 55/17913 8.026962e-01 8.376775e-01 2.934508e-01
## GO:0010659 35/11248 60/17913 8.030317e-01 8.376775e-01 2.934508e-01
## GO:0032371 35/11248 60/17913 8.030317e-01 8.376775e-01 2.934508e-01
## GO:0032374 35/11248 60/17913 8.030317e-01 8.376775e-01 2.934508e-01
## GO:0032692 23/11248 40/17913 8.052212e-01 8.398210e-01 2.942017e-01
## GO:0051145 44/11248 75/17913 8.059130e-01 8.404021e-01 2.944052e-01
## GO:0050912 20/11248 35/17913 8.080086e-01 8.424466e-01 2.951214e-01
## GO:0010764 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0046520 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0060947 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0070857 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0072070 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0090209 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0099500 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0106072 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:2000318 6/11248 11/17913 8.114156e-01 8.445974e-01 2.958749e-01
## GO:0060546 10/11248 18/17913 8.115609e-01 8.445974e-01 2.958749e-01
## GO:2000647 10/11248 18/17913 8.115609e-01 8.445974e-01 2.958749e-01
## GO:0038111 17/11248 30/17913 8.124609e-01 8.453930e-01 2.961536e-01
## GO:0070192 30/11248 52/17913 8.179914e-01 8.510057e-01 2.981198e-01
## GO:0010614 21/11248 37/17913 8.244558e-01 8.574450e-01 3.003756e-01
## GO:0014912 21/11248 37/17913 8.244558e-01 8.574450e-01 3.003756e-01
## GO:0032769 11/11248 20/17913 8.301341e-01 8.620239e-01 3.019796e-01
## GO:0034311 11/11248 20/17913 8.301341e-01 8.620239e-01 3.019796e-01
## GO:0043046 11/11248 20/17913 8.301341e-01 8.620239e-01 3.019796e-01
## GO:0048662 40/11248 69/17913 8.304425e-01 8.620239e-01 3.019796e-01
## GO:0003352 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0016024 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0036158 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0036159 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0045759 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0051001 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0061888 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0106074 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:1905516 7/11248 13/17913 8.306550e-01 8.620239e-01 3.019796e-01
## GO:0010656 34/11248 59/17913 8.309927e-01 8.620875e-01 3.020019e-01
## GO:0010662 34/11248 59/17913 8.309927e-01 8.620875e-01 3.020019e-01
## GO:0035036 28/11248 49/17913 8.335237e-01 8.645694e-01 3.028714e-01
## GO:0001835 15/11248 27/17913 8.361515e-01 8.667187e-01 3.036243e-01
## GO:0035188 15/11248 27/17913 8.361515e-01 8.667187e-01 3.036243e-01
## GO:0060544 15/11248 27/17913 8.361515e-01 8.667187e-01 3.036243e-01
## GO:0071684 15/11248 27/17913 8.361515e-01 8.667187e-01 3.036243e-01
## GO:0010939 22/11248 39/17913 8.393482e-01 8.698877e-01 3.047344e-01
## GO:0030219 56/11248 96/17913 8.442546e-01 8.748273e-01 3.064649e-01
## GO:0032366 12/11248 22/17913 8.464341e-01 8.766488e-01 3.071030e-01
## GO:0032367 12/11248 22/17913 8.464341e-01 8.766488e-01 3.071030e-01
## GO:0090343 12/11248 22/17913 8.464341e-01 8.766488e-01 3.071030e-01
## GO:0018298 8/11248 15/17913 8.473519e-01 8.770169e-01 3.072319e-01
## GO:0033617 8/11248 15/17913 8.473519e-01 8.770169e-01 3.072319e-01
## GO:0046519 8/11248 15/17913 8.473519e-01 8.770169e-01 3.072319e-01
## GO:1902548 8/11248 15/17913 8.473519e-01 8.770169e-01 3.072319e-01
## GO:0010594 138/11248 231/17913 8.494655e-01 8.790587e-01 3.079472e-01
## GO:2000727 16/11248 29/17913 8.510958e-01 8.805997e-01 3.084870e-01
## GO:0010664 23/11248 41/17913 8.528547e-01 8.822733e-01 3.090733e-01
## GO:0034390 20/11248 36/17913 8.577693e-01 8.870631e-01 3.107513e-01
## GO:0034391 20/11248 36/17913 8.577693e-01 8.870631e-01 3.107513e-01
## GO:1905564 13/11248 24/17913 8.608336e-01 8.900845e-01 3.118097e-01
## GO:0040037 9/11248 17/17913 8.619815e-01 8.908285e-01 3.120703e-01
## GO:0070131 9/11248 17/17913 8.619815e-01 8.908285e-01 3.120703e-01
## GO:1903980 9/11248 17/17913 8.619815e-01 8.908285e-01 3.120703e-01
## GO:1905953 34/11248 60/17913 8.675570e-01 8.964421e-01 3.140368e-01
## GO:0006334 79/11248 135/17913 8.684279e-01 8.971933e-01 3.143000e-01
## GO:0030317 44/11248 77/17913 8.735753e-01 9.022123e-01 3.160583e-01
## GO:0097722 44/11248 77/17913 8.735753e-01 9.022123e-01 3.160583e-01
## GO:0008535 10/11248 19/17913 8.748945e-01 9.029768e-01 3.163260e-01
## GO:0019370 10/11248 19/17913 8.748945e-01 9.029768e-01 3.163260e-01
## GO:0072079 10/11248 19/17913 8.748945e-01 9.029768e-01 3.163260e-01
## GO:2000774 10/11248 19/17913 8.748945e-01 9.029768e-01 3.163260e-01
## GO:1901223 18/11248 33/17913 8.764480e-01 9.031789e-01 3.163969e-01
## GO:0002182 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0010587 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0018202 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0018242 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0032464 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0032621 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0046512 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0060287 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0070601 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:1900247 5/11248 10/17913 8.766830e-01 9.031789e-01 3.163969e-01
## GO:0010665 32/11248 57/17913 8.798783e-01 9.063211e-01 3.174976e-01
## GO:0007129 22/11248 40/17913 8.810590e-01 9.073874e-01 3.178712e-01
## GO:0002227 11/11248 21/17913 8.863591e-01 9.114016e-01 3.192774e-01
## GO:0003351 11/11248 21/17913 8.863591e-01 9.114016e-01 3.192774e-01
## GO:0045143 26/11248 47/17913 8.864407e-01 9.114016e-01 3.192774e-01
## GO:0003306 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0006670 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0009812 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0010454 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0018158 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0043696 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:0043697 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:1902260 6/11248 12/17913 8.865637e-01 9.114016e-01 3.192774e-01
## GO:2000272 30/11248 54/17913 8.920979e-01 9.169397e-01 3.212175e-01
## GO:0001522 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:0046940 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:0051307 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:0061051 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:1900747 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:1905050 7/11248 14/17913 8.958652e-01 9.199024e-01 3.222554e-01
## GO:0051151 12/11248 23/17913 8.965864e-01 9.204914e-01 3.224617e-01
## GO:0006342 47/11248 83/17913 8.986071e-01 9.224142e-01 3.231353e-01
## GO:1902808 31/11248 56/17913 9.006421e-01 9.243510e-01 3.238137e-01
## GO:0051290 29/11248 53/17913 9.118788e-01 9.357295e-01 3.277998e-01
## GO:0010713 9/11248 18/17913 9.124021e-01 9.358047e-01 3.278261e-01
## GO:0034587 9/11248 18/17913 9.124021e-01 9.358047e-01 3.278261e-01
## GO:0048026 9/11248 18/17913 9.124021e-01 9.358047e-01 3.278261e-01
## GO:0032691 18/11248 34/17913 9.126979e-01 9.359542e-01 3.278785e-01
## GO:0046460 22/11248 41/17913 9.137165e-01 9.366908e-01 3.281365e-01
## GO:0046463 22/11248 41/17913 9.137165e-01 9.366908e-01 3.281365e-01
## GO:0072376 87/11248 151/17913 9.192671e-01 9.422261e-01 3.300757e-01
## GO:0045132 37/11248 67/17913 9.195801e-01 9.423921e-01 3.301338e-01
## GO:0010667 20/11248 38/17913 9.269222e-01 9.496044e-01 3.326604e-01
## GO:0090050 20/11248 38/17913 9.269222e-01 9.496044e-01 3.326604e-01
## GO:0016075 5/11248 11/17913 9.310725e-01 9.532300e-01 3.339305e-01
## GO:0097428 5/11248 11/17913 9.310725e-01 9.532300e-01 3.339305e-01
## GO:1903979 5/11248 11/17913 9.310725e-01 9.532300e-01 3.339305e-01
## GO:2000344 5/11248 11/17913 9.310725e-01 9.532300e-01 3.339305e-01
## GO:0002431 81/11248 142/17913 9.335080e-01 9.555666e-01 3.347490e-01
## GO:0050720 6/11248 13/17913 9.344856e-01 9.560966e-01 3.349347e-01
## GO:0098903 6/11248 13/17913 9.344856e-01 9.560966e-01 3.349347e-01
## GO:1903726 6/11248 13/17913 9.344856e-01 9.560966e-01 3.349347e-01
## GO:0017004 13/11248 26/17913 9.378690e-01 9.592436e-01 3.360372e-01
## GO:1905048 13/11248 26/17913 9.378690e-01 9.592436e-01 3.360372e-01
## GO:1904262 7/11248 15/17913 9.383144e-01 9.595317e-01 3.361381e-01
## GO:0034080 22/11248 42/17913 9.386121e-01 9.595317e-01 3.361381e-01
## GO:0061641 22/11248 42/17913 9.386121e-01 9.595317e-01 3.361381e-01
## GO:0007379 8/11248 17/17913 9.422597e-01 9.627872e-01 3.372785e-01
## GO:0032966 8/11248 17/17913 9.422597e-01 9.627872e-01 3.372785e-01
## GO:1903818 8/11248 17/17913 9.422597e-01 9.627872e-01 3.372785e-01
## GO:0031055 24/11248 46/17913 9.482804e-01 9.686217e-01 3.393224e-01
## GO:1900087 24/11248 46/17913 9.482804e-01 9.686217e-01 3.393224e-01
## GO:0010874 20/11248 39/17913 9.492046e-01 9.692483e-01 3.395420e-01
## GO:0019432 20/11248 39/17913 9.492046e-01 9.692483e-01 3.395420e-01
## GO:0042219 10/11248 21/17913 9.499236e-01 9.698238e-01 3.397435e-01
## GO:0043534 104/11248 182/17913 9.507555e-01 9.705143e-01 3.399854e-01
## GO:0040036 16/11248 32/17913 9.517577e-01 9.713783e-01 3.402881e-01
## GO:0002433 78/11248 139/17913 9.564587e-01 9.758570e-01 3.418571e-01
## GO:0038096 78/11248 139/17913 9.564587e-01 9.758570e-01 3.418571e-01
## GO:0070286 12/11248 25/17913 9.568867e-01 9.761340e-01 3.419541e-01
## GO:0038094 79/11248 141/17913 9.593325e-01 9.784690e-01 3.427721e-01
## GO:0035082 27/11248 52/17913 9.598225e-01 9.788087e-01 3.428911e-01
## GO:0043588 242/11248 412/17913 9.613032e-01 9.801585e-01 3.433639e-01
## GO:0050722 5/11248 12/17913 9.628644e-01 9.812255e-01 3.437377e-01
## GO:1905461 5/11248 12/17913 9.628644e-01 9.812255e-01 3.437377e-01
## GO:0010986 4/11248 10/17913 9.632834e-01 9.812255e-01 3.437377e-01
## GO:1904684 4/11248 10/17913 9.632834e-01 9.812255e-01 3.437377e-01
## GO:0034392 6/11248 14/17913 9.634508e-01 9.812255e-01 3.437377e-01
## GO:1905049 6/11248 14/17913 9.634508e-01 9.812255e-01 3.437377e-01
## GO:1905064 6/11248 14/17913 9.634508e-01 9.812255e-01 3.437377e-01
## GO:0071786 7/11248 16/17913 9.646287e-01 9.822647e-01 3.441018e-01
## GO:0048490 8/11248 18/17913 9.661457e-01 9.831675e-01 3.444181e-01
## GO:0052695 8/11248 18/17913 9.661457e-01 9.831675e-01 3.444181e-01
## GO:0099514 8/11248 18/17913 9.661457e-01 9.831675e-01 3.444181e-01
## GO:0099517 8/11248 18/17913 9.661457e-01 9.831675e-01 3.444181e-01
## GO:0010866 10/11248 22/17913 9.696232e-01 9.863845e-01 3.455450e-01
## GO:0010988 10/11248 22/17913 9.696232e-01 9.863845e-01 3.455450e-01
## GO:0034661 11/11248 24/17913 9.714182e-01 9.880494e-01 3.461282e-01
## GO:0018345 13/11248 28/17913 9.749049e-01 9.914341e-01 3.473139e-01
## GO:0000245 37/11248 71/17913 9.753257e-01 9.917003e-01 3.474072e-01
## GO:0010455 6/11248 15/17913 9.802085e-01 9.963403e-01 3.490327e-01
## GO:0042222 6/11248 15/17913 9.802085e-01 9.963403e-01 3.490327e-01
## GO:0097709 9/11248 21/17913 9.812845e-01 9.972715e-01 3.493589e-01
## GO:1905902 4/11248 11/17913 9.816896e-01 9.975208e-01 3.494462e-01
## GO:0002673 88/11248 160/17913 9.826012e-01 9.982844e-01 3.497137e-01
## GO:1903317 96/11248 175/17913 9.874246e-01 1.000000e+00 3.503147e-01
## GO:1903672 33/11248 66/17913 9.877655e-01 1.000000e+00 3.503147e-01
## GO:1903817 7/11248 18/17913 9.892860e-01 1.000000e+00 3.503147e-01
## GO:0150079 9/11248 22/17913 9.893577e-01 1.000000e+00 3.503147e-01
## GO:0051150 25/11248 52/17913 9.894460e-01 1.000000e+00 3.503147e-01
## GO:0045652 40/11248 79/17913 9.899703e-01 1.000000e+00 3.503147e-01
## GO:0010940 5/11248 14/17913 9.901292e-01 1.000000e+00 3.503147e-01
## GO:0045360 5/11248 14/17913 9.901292e-01 1.000000e+00 3.503147e-01
## GO:1904705 45/11248 88/17913 9.905259e-01 1.000000e+00 3.503147e-01
## GO:1990874 45/11248 88/17913 9.905259e-01 1.000000e+00 3.503147e-01
## GO:0070613 94/11248 173/17913 9.910224e-01 1.000000e+00 3.503147e-01
## GO:1904995 4/11248 12/17913 9.911023e-01 1.000000e+00 3.503147e-01
## GO:1905031 3/11248 10/17913 9.925877e-01 1.000000e+00 3.503147e-01
## GO:0035886 19/11248 42/17913 9.932916e-01 1.000000e+00 3.503147e-01
## GO:0032369 21/11248 46/17913 9.940761e-01 1.000000e+00 3.503147e-01
## GO:0010612 7/11248 19/17913 9.943052e-01 1.000000e+00 3.503147e-01
## GO:1903242 7/11248 19/17913 9.943052e-01 1.000000e+00 3.503147e-01
## GO:1905288 7/11248 19/17913 9.943052e-01 1.000000e+00 3.503147e-01
## GO:1905459 7/11248 19/17913 9.943052e-01 1.000000e+00 3.503147e-01
## GO:0014744 6/11248 17/17913 9.946123e-01 1.000000e+00 3.503147e-01
## GO:1901343 103/11248 191/17913 9.952624e-01 1.000000e+00 3.503147e-01
## GO:0051013 3/11248 11/17913 9.966745e-01 1.000000e+00 3.503147e-01
## GO:0010633 59/11248 116/17913 9.967766e-01 1.000000e+00 3.503147e-01
## GO:1904738 20/11248 46/17913 9.975432e-01 1.000000e+00 3.503147e-01
## GO:1904752 20/11248 46/17913 9.975432e-01 1.000000e+00 3.503147e-01
## GO:0010989 5/11248 16/17913 9.976047e-01 1.000000e+00 3.503147e-01
## GO:0003341 23/11248 52/17913 9.979008e-01 1.000000e+00 3.503147e-01
## GO:0006956 65/11248 128/17913 9.979554e-01 1.000000e+00 3.503147e-01
## GO:0043535 82/11248 158/17913 9.980658e-01 1.000000e+00 3.503147e-01
## GO:2000181 94/11248 179/17913 9.981290e-01 1.000000e+00 3.503147e-01
## GO:0010984 14/11248 35/17913 9.981874e-01 1.000000e+00 3.503147e-01
## GO:0000244 9/11248 25/17913 9.982629e-01 1.000000e+00 3.503147e-01
## GO:1903589 8/11248 23/17913 9.983544e-01 1.000000e+00 3.503147e-01
## GO:0010985 7/11248 21/17913 9.984811e-01 1.000000e+00 3.503147e-01
## GO:2000543 3/11248 12/17913 9.985319e-01 1.000000e+00 3.503147e-01
## GO:1904683 6/11248 19/17913 9.986465e-01 1.000000e+00 3.503147e-01
## GO:0016525 92/11248 177/17913 9.987699e-01 1.000000e+00 3.503147e-01
## GO:0002042 49/11248 101/17913 9.987766e-01 1.000000e+00 3.503147e-01
## GO:0002920 68/11248 135/17913 9.988193e-01 1.000000e+00 3.503147e-01
## GO:0051152 9/11248 26/17913 9.990824e-01 1.000000e+00 3.503147e-01
## GO:1900239 4/11248 15/17913 9.990931e-01 1.000000e+00 3.503147e-01
## GO:1901748 2/11248 10/17913 9.990936e-01 1.000000e+00 3.503147e-01
## GO:1901750 2/11248 10/17913 9.990936e-01 1.000000e+00 3.503147e-01
## GO:0090677 3/11248 13/17913 9.993607e-01 1.000000e+00 3.503147e-01
## GO:1905651 3/11248 13/17913 9.993607e-01 1.000000e+00 3.503147e-01
## GO:0009913 188/11248 346/17913 9.995248e-01 1.000000e+00 3.503147e-01
## GO:1905203 4/11248 16/17913 9.995892e-01 1.000000e+00 3.503147e-01
## GO:0006617 2/11248 11/17913 9.996312e-01 1.000000e+00 3.503147e-01
## GO:0010615 2/11248 11/17913 9.996312e-01 1.000000e+00 3.503147e-01
## GO:1903244 2/11248 11/17913 9.996312e-01 1.000000e+00 3.503147e-01
## GO:2000818 2/11248 11/17913 9.996312e-01 1.000000e+00 3.503147e-01
## GO:0006376 16/11248 42/17913 9.996680e-01 1.000000e+00 3.503147e-01
## GO:1905063 10/11248 31/17913 9.998609e-01 1.000000e+00 3.503147e-01
## GO:1905205 3/11248 15/17913 9.998827e-01 1.000000e+00 3.503147e-01
## GO:2000257 54/11248 117/17913 9.999154e-01 1.000000e+00 3.503147e-01
## GO:0036166 4/11248 18/17913 9.999186e-01 1.000000e+00 3.503147e-01
## GO:0045653 4/11248 18/17913 9.999186e-01 1.000000e+00 3.503147e-01
## GO:1905065 4/11248 18/17913 9.999186e-01 1.000000e+00 3.503147e-01
## GO:0010596 44/11248 99/17913 9.999323e-01 1.000000e+00 3.503147e-01
## GO:0002040 89/11248 181/17913 9.999344e-01 1.000000e+00 3.503147e-01
## GO:0030449 53/11248 116/17913 9.999401e-01 1.000000e+00 3.503147e-01
## GO:0070103 2/11248 13/17913 9.999402e-01 1.000000e+00 3.503147e-01
## GO:1904753 5/11248 21/17913 9.999470e-01 1.000000e+00 3.503147e-01
## GO:1904706 14/11248 41/17913 9.999479e-01 1.000000e+00 3.503147e-01
## GO:0001937 31/11248 75/17913 9.999502e-01 1.000000e+00 3.503147e-01
## GO:0101023 17/11248 48/17913 9.999676e-01 1.000000e+00 3.503147e-01
## GO:1905562 17/11248 48/17913 9.999676e-01 1.000000e+00 3.503147e-01
## GO:0032372 8/11248 29/17913 9.999743e-01 1.000000e+00 3.503147e-01
## GO:0032375 8/11248 29/17913 9.999743e-01 1.000000e+00 3.503147e-01
## GO:0070104 1/11248 11/17913 9.999812e-01 1.000000e+00 3.503147e-01
## GO:0002455 45/11248 104/17913 9.999833e-01 1.000000e+00 3.503147e-01
## GO:0090049 35/11248 85/17913 9.999839e-01 1.000000e+00 3.503147e-01
## GO:0006335 9/11248 32/17913 9.999848e-01 1.000000e+00 3.503147e-01
## GO:0034723 9/11248 32/17913 9.999848e-01 1.000000e+00 3.503147e-01
## GO:0045292 10/11248 35/17913 9.999911e-01 1.000000e+00 3.503147e-01
## GO:0000183 11/11248 39/17913 9.999974e-01 1.000000e+00 3.503147e-01
## GO:0030216 149/11248 298/17913 9.999978e-01 1.000000e+00 3.503147e-01
## GO:0090370 3/11248 20/17913 9.999985e-01 1.000000e+00 3.503147e-01
## GO:0043537 30/11248 81/17913 9.999993e-01 1.000000e+00 3.503147e-01
## GO:0034249 102/11248 217/17913 9.999993e-01 1.000000e+00 3.503147e-01
## GO:0090051 13/11248 46/17913 9.999996e-01 1.000000e+00 3.503147e-01
## GO:0002043 16/11248 54/17913 9.999998e-01 1.000000e+00 3.503147e-01
## GO:0006958 33/11248 91/17913 9.999999e-01 1.000000e+00 3.503147e-01
## GO:1905563 4/11248 27/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:1903670 58/11248 143/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0017148 86/11248 198/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:1903588 3/11248 26/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:1903587 11/11248 48/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0000395 2/11248 25/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:1903671 21/11248 80/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0031424 86/11248 224/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0007608 55/11248 452/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0009593 86/11248 498/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0035278 10/11248 97/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0040033 10/11248 97/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0045974 10/11248 97/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0050907 60/11248 465/17913 1.000000e+00 1.000000e+00 3.503147e-01
## GO:0050911 39/11248 427/17913 1.000000e+00 1.000000e+00 3.503147e-01
## geneID
## GO:0009991 3627/4521/8061/1978/1515/875/53335/1824/5026/3934/4316/445/6502/7378/440/133/6772/7298/5111/6751/55630/6770/6715/51765/136/9388/4067/7412/2730/1535/26/1789/2642/8942/5723/2950/3162/1594/51022/58/867/3208/5024/5788/916/467/3383/83990/2539/706/100/3600/6513/6696/191/3291/58528/5447/10059/80010/57817/5315/158/27344/1788/6566/5467/468/1312/6427/4160/1030/5027/4141/4049/2180/5743/5629/348/10518/9681/1956/5469/1536/9131/1981/655/958/3920/411/3297/6753/4504/3157/5610/5967/5594/3607/265/2182/5366/5582/26291/2626/5444/10991/3428/885/153/1032/24145/8805/790/1611/6422/360/81929/1649/26263/6344/64240/7184/4914/3170/1728/9971/249/10135/6714/6721/64127/3309/6223/5019/920/57707/7274/359/1026/462/65985/5292/5313/5009/23408/3949/11170/5970/80149/2056/5251/1965/7351/199/4654/1723/1327/6722/26608/79077/353500/6581/2348/3745/1591/7706/2937/3676/432/6647/552/51100/10985/7425/80763/56270/4988/2534/3553/51052/7421/2902/218/4193/6569/3651/4524/5443/26100/1603/3358/2475/8493/3141/23367/5020/7299/335/25828/5465/7252/55270/10634/2538/79726/5599/59341/5207/1791/784/355/81631/51548/7222/10514/27102/6198/6343/5028/4353/5030/8735/10891/9463/64121/54434/9451/968/8897/55626/9518/7352/79792/3655/8915/4217/5587/8428/23394/29103/19/9869/10533/22953/22938/207/7040/846/22933/8932/22856/4780/3156/23530/383/10670/8520/10919/79602/6263/29937/25819/4968/8074/23376/9573/1609/6872/54407/9127/7392/8443/54474/4149/10458/317/5289/9227/11133/4976/5023/10400/7009/8131/53615/116/6506/3725/5728/4852/7538/2693/79718/847/23334/2695/4255/79567/2350/6781/5741/8620/54468/659/11152/1938/717/6494/25994/3673/1385/30849/6652/429/7486/3178/5899/2771/8195/55062/23378/3360/6915/2648/3077/2696/23032/23274/8854/7071/8408/5179/38/2309/8473/2029/5076/56603/2909/1268/2242/54332/5287/23411/7054/6546/8658/9706/2729/9779/51024/5562/178/2067/51520/154/5595/6532/166/2155/25959/7157/4131/1373/5563/490/55846/2752/8648/440738/5164/4303/6752/3371/5914/1543/10325/6750/55364/4925/2181/558/596/8644/5025/8678/595/7248/65084/4929/7482/22863/5029/590/3155/2308/7048/2934/10641/54795/2353/1277/6591/210/2281/5468/5166/55198/2691/4023/1592/11167/3485/7350/3952/585/93664/3625/6720/7494/2621/7481/5764/27244/1471/6678/32/54361/213/10631/4982/7349/9607/57535/9370/5105/8614
## GO:0048732 9133/79733/5080/2146/6790/1448/2001/8792/6663/445/5307/440/7298/1482/10481/5111/6496/5268/6715/1054/4830/8543/1051/6943/2296/5471/3162/5449/9420/8820/2304/55840/2253/353/4939/706/100/7473/79152/3549/51599/57817/7128/9095/50/7422/5315/8997/999/9076/4781/5604/2692/7124/8772/5629/3091/3099/1956/570/5469/7490/8456/7372/4192/4478/655/887/79084/1950/1460/3157/675/4357/1588/6356/25928/5967/5591/5594/10018/3175/7052/6927/26019/5371/7498/23513/790/9148/6422/2049/382/2288/7547/6714/3720/8379/6091/3398/6531/3239/3172/6599/1050/462/1399/64220/208/65985/25807/11331/5009/10371/2876/5361/5970/7351/326/581/1459/1813/1723/2113/6722/11231/6608/80004/8837/26257/7477/3274/7448/2194/6195/3586/4580/5727/10913/6647/51350/5617/6256/2806/1361/1447/7421/6156/55294/10419/190/29842/7472/4838/3651/2119/23322/5253/3219/1181/7299/9113/335/2627/1999/23242/9480/6657/6495/3845/3482/64919/7001/3142/9914/10269/6928/6899/9368/27023/7471/1435/3516/284217/3184/5626/859/1969/10765/5290/81606/7046/207/3717/7040/51043/634/3084/5894/6881/823/657/383/2267/5906/5156/5270/10116/8022/2356/1896/6239/23213/79810/55870/7080/123872/3911/3235/9821/7038/1436/5075/4089/4087/7849/57142/7392/5154/5774/5454/5663/9612/116/10818/3725/5728/5324/3642/6658/650/5308/2624/2736/55036/4255/374/3200/171023/1605/25/2294/3673/1385/429/8600/9464/5916/3670/5066/9423/6909/3077/5896/8854/9935/5423/3488/2260/538/220/6662/6670/4824/22890/38/4855/472/2909/6777/1392/23129/3280/2263/5310/9104/8626/3321/2516/3664/55679/7337/5595/4763/5087/1499/3232/8945/1628/1373/2252/4088/8660/6430/10522/6794/6778/8648/2735/4124/3371/3082/5914/394/8452/1543/1027/1028/6299/3643/7474/6776/57045/596/80169/10272/3213/595/3202/5021/84159/55727/540/5311/27122/7042/3155/3400/8829/7048/5176/10370/5860/6591/8835/6469/2691/5618/9247/4488/7494/2099/7481/5764/1471/857/1396/10512/4487/3249/54361/2737/2487/247/2697/7043/5104/1036/367/79971/7049/6926/7166/652/2066/3169/2625/5241
## GO:1901652 890/55765/4321/990/4318/1978/8836/445/133/6772/2888/8767/51237/3973/6770/6715/4067/7412/114/28999/1535/2642/1537/5471/2950/51083/5641/50617/353/15/1019/2058/3383/83990/6513/3291/5447/7128/5588/8914/1445/1244/10626/1020/533/142/26191/4690/2805/2692/8013/4160/4141/5905/7097/2641/3692/5743/1663/64170/4644/688/9296/525/2213/1536/1959/2650/655/27101/958/3297/988/5967/5591/6654/5771/2101/9734/4792/88/10661/8891/5567/10018/8651/10603/26291/1147/2932/1394/113/328/9114/790/1395/10333/4878/3663/1432/8462/5575/57761/9971/5568/5747/10135/6121/5058/760/6714/64127/2770/3164/5579/2688/2885/774/30837/231/6599/57707/2069/2358/2043/208/5009/55532/5970/10476/3636/5251/7351/528/682/23545/3033/109/896/8837/773/677/4142/5621/3416/51094/339/5584/4221/1442/3586/5770/8615/9349/3676/51606/7099/3484/5617/7425/23641/2806/5798/2534/3553/5781/51052/2303/3718/5829/4193/6569/51510/8048/5566/5140/529/4218/2740/6429/2475/523/2645/526/5245/5020/5465/781/59341/5207/2660/6198/81565/2170/837/9340/2796/527/4825/177/2887/3630/1967/23191/7471/9518/58533/7352/9181/478/815/4040/5296/5290/8890/207/3717/7040/51043/846/5908/634/3727/155066/3645/9314/4780/537/1979/11143/23433/51274/197/64710/383/1176/8826/186/51382/2931/6272/1906/8892/2844/9550/2852/2798/4790/55777/351/10312/2689/4149/10458/6774/140710/64506/4976/6093/183/7253/5663/2822/5319/8893/5728/55022/9475/782/5458/8992/7431/1398/799/2693/847/9882/2695/374/29988/1759/1605/7076/5576/858/1385/5170/599/4986/2771/112/2549/8850/22937/10392/23235/51763/3030/54328/5872/23038/6814/5573/3488/10768/7071/56729/7249/6464/6517/2309/6431/8473/6777/6667/55023/535/55512/5580/5786/1910/534/23411/51141/7054/54741/4641/2729/115/5286/10014/51024/5562/55667/2516/23189/26060/1407/154/107/22861/2155/7157/4131/5791/1373/55914/8660/490/6430/108/11132/5295/7010/10268/5164/4303/10365/6548/23621/2915/1027/182/4435/1958/3643/6776/8743/5590/181/948/1490/54209/4804/4314/324/5021/9810/7248/6844/4929/114882/3087/3397/4322/5919/9847/2308/1277/2241/4747/5860/10580/5468/5166/1393/8835/55198/11031/4023/9365/3952/5577/7832/5618/4313/3625/6720/7494/3480/6387/857/7079/2690/6678/4035/5167/5350/2697/185/1036/3667/2200/7049/7031/3479/9370/5105/8614
## GO:0031667 3627/1978/1515/53335/1824/5026/3934/4316/445/7378/440/133/6772/7298/5111/6751/55630/6770/6715/51765/9388/7412/2730/1535/26/1789/2642/8942/5723/2950/3162/1594/867/3208/5024/916/467/3383/83990/2539/706/100/3600/6513/6696/191/3291/58528/5447/10059/80010/57817/5315/158/27344/1788/6566/5467/468/1312/6427/4160/1030/5027/4141/4049/2180/5743/5629/348/10518/9681/1956/5469/1536/9131/1981/655/958/3920/411/3297/6753/4504/3157/5610/5967/5594/3607/265/2182/5366/5582/26291/2626/5444/10991/3428/885/153/1032/24145/8805/790/1611/6422/360/81929/1649/26263/6344/64240/7184/4914/3170/1728/9971/249/10135/6714/6721/64127/3309/5019/920/57707/7274/1026/462/65985/5292/5313/5009/23408/3949/11170/5970/80149/2056/5251/1965/7351/4654/1723/1327/6722/26608/353500/6581/2348/3745/1591/7706/2937/6647/51100/10985/7425/80763/56270/4988/2534/3553/51052/7421/2902/218/4193/6569/3651/4524/5443/26100/1603/3358/2475/8493/3141/23367/5020/7299/335/25828/5465/7252/10634/2538/79726/5599/59341/5207/1791/784/355/81631/51548/7222/10514/27102/6198/6343/5028/4353/5030/8735/10891/9463/64121/54434/9451/968/8897/55626/9518/7352/8915/4217/5587/8428/29103/19/9869/10533/22953/22938/207/7040/846/22933/8932/22856/4780/3156/23530/383/10670/8520/10919/79602/6263/29937/4968/8074/23376/9573/1609/6872/54407/9127/7392/8443/54474/4149/10458/317/5289/9227/11133/4976/5023/10400/7009/8131/53615/116/3725/5728/4852/7538/2693/79718/847/23334/2695/4255/79567/2350/6781/5741/8620/54468/659/11152/1938/717/25994/3673/1385/30849/6652/429/7486/3178/5899/2771/8195/55062/23378/3360/6915/2648/3077/2696/23032/23274/8854/7071/8408/5179/38/2309/8473/2029/5076/56603/1268/2242/54332/5287/23411/7054/6546/8658/9706/2729/9779/51024/5562/178/2067/51520/154/5595/6532/2155/25959/7157/4131/1373/5563/490/55846/2752/8648/440738/5164/4303/6752/3371/5914/1543/10325/6750/55364/4925/2181/596/8644/5025/8678/595/7248/65084/7482/22863/5029/590/3155/2308/7048/2934/10641/54795/1277/6591/210/2281/5468/5166/55198/2691/4023/1592/11167/3485/7350/3952/585/93664/3625/6720/7494/2621/7481/5764/27244/1471/6678/32/54361/213/10631/4982/7349/9607/57535/9370/5105/8614
## GO:0043062 4312/4321/3695/7941/4318/1515/4316/10549/55612/5320/5650/5645/1299/4324/25975/5268/9388/7412/336/1520/341/8435/2296/1302/30001/3381/1991/3689/3383/1834/5806/1514/3696/6696/3549/60484/6624/9806/3936/6646/8751/1463/55151/999/2824/7143/79709/7124/3569/345/63827/8985/348/1297/7490/655/7133/5034/5054/176/5567/1305/10049/1286/3674/2264/5360/5033/5345/50848/4643/9313/5568/5747/7101/60495/51144/8785/84830/5644/7087/3385/5340/101/8027/2243/3682/7077/3694/949/30814/8728/5326/3683/27035/1758/2266/682/440387/9719/2113/8837/1071/3687/1284/7448/4241/337/4617/3676/4791/1361/2303/1282/2683/5566/4851/1404/8694/3680/10653/3384/5045/1545/335/5155/6386/3691/1999/2201/4353/3684/602/81621/3655/3918/26585/4146/3037/284217/56999/19/7046/7040/960/3678/7132/2244/823/3688/9508/5156/1285/826/961/1803/23213/8174/6692/23187/10630/3911/23332/4323/7251/4358/351/25890/10015/649/5154/183/63894/3914/3817/3036/3491/824/6382/375790/4868/84168/10319/4547/3818/1310/3690/222663/1605/102/25/2294/4327/2335/7076/3673/10347/9619/55937/7148/4320/538/4325/64856/338/55790/3990/7092/6662/54507/2022/60626/9644/7276/56155/55512/8515/4015/7093/6939/8516/4237/1215/3672/4317/7057/9509/1298/3915/3386/2/6385/10585/5925/2068/5175/4763/10211/5768/2295/4921/4088/8038/4017/1288/28984/4811/3910/3371/1291/3373/3791/1301/90993/2181/79875/7450/947/3685/80781/79625/948/1490/1280/3931/4314/10609/80070/3675/4018/11005/7837/169611/7042/3912/23122/4322/1278/56605/1511/323/4060/30008/1277/164656/22795/10516/1293/2247/1295/58494/2620/23461/8076/2192/1281/4023/83700/50509/4319/1290/1513/11096/4313/2199/3693/1294/2621/2191/1471/11117/3339/1462/1289/1292/3908/4016/3909/83716/6678/1296/4035/633/3249/213/165/5654/2331/185/3913/4982/1300/2200/1634/7177/1287/3679/2006/7373/10266/1307/4629/1311/4148/4239
## GO:0050878 3868/1448/10855/7980/5026/3932/133/5341/362/4830/3925/8357/4067/114/2821/1535/1364/959/5336/8525/5471/2810/23764/3066/7103/353/3783/5024/5359/3937/4939/51266/239/2207/100/3659/79152/3291/409/7534/8761/5588/7422/6338/8997/1608/23028/9076/3452/6850/2692/9474/5912/5027/5329/3569/2048/7454/348/3091/10938/551/3099/3053/525/5469/7372/2153/23657/2160/1080/958/23173/4778/5054/5594/5567/3674/5578/2769/5582/10603/5889/2626/3045/7498/113/64834/790/151/5345/2165/9148/242/360/1056/708/9060/56302/5575/7006/2778/3170/5568/9002/6714/2161/5579/6531/152/4883/231/725/3439/3172/84830/8323/5265/359/134/462/7414/5340/9158/2243/57113/3710/685/2312/3848/5328/829/10062/2266/1813/6521/1723/23533/3046/109/6722/5291/11234/7410/3065/7975/5294/23468/361/5657/3443/80739/7448/1314/2811/4580/4352/7409/4097/4627/5873/7099/51156/64780/5617/3451/8165/2806/1192/1361/2534/10627/5781/1447/7421/7301/60/2768/5055/5566/2677/998/26154/79001/1585/5020/5155/5777/2627/3998/8766/1606/928/59341/1131/832/29071/3273/7222/2782/1607/5879/6343/5028/7001/10461/10362/6869/8673/3442/27023/55604/2814/3705/3445/3037/160851/2316/954/5290/79803/65125/22953/23186/3717/2147/51043/2158/634/4233/3446/5581/5894/2244/4780/308/51297/2159/5156/5270/3448/11093/2815/10019/23348/310/3660/2313/302/114897/71/7225/1906/10630/830/5196/2623/59344/1609/2979/57572/2767/9127/7392/5868/3020/5154/135/5023/57107/10672/51317/9612/7094/3444/2039/89781/2624/3818/8692/4987/3690/7432/1465/11311/2981/5576/3673/9927/1385/5583/5170/3449/10077/4986/4846/5051/2771/5066/112/1579/6915/51763/966/51206/3440/7035/5800/10544/6814/5573/538/4879/8546/2157/56603/6777/3827/5890/5580/3456/4762/554/1910/3709/115/11216/8526/7057/2150/8626/3611/30845/57835/350/2/710/3315/107/2776/2702/5595/2155/2013/221037/6582/25970/953/408/108/5295/8648/22875/5547/6337/3441/27347/22841/7466/3043/6776/5624/7450/947/6779/5592/2149/948/5025/4881/595/5021/9162/187/540/6403/5029/1793/57493/5197/57834/1278/57126/6583/9630/54843/8527/1277/6340/5627/10398/22915/358/8835/6469/6812/2192/1281/7056/7357/5577/5618/7494/2621/2191/857/10391/23414/2162/2151/2152/2697/6863/5104/30846/1036/5327/7349/66002/150/79864/10451/18/3708/1311/2066/2625/7021/10551
## GO:0002446 6280/6279/6278/820/6286/51806/10855/4318/5004/4069/8836/10321/3934/1075/10549/11240/6402/932/5645/5317/5709/51411/3101/6590/6317/3608/4860/5646/2821/1535/1520/26/3903/80142/5713/2950/10562/79980/6515/51316/11314/79888/2171/9145/8876/353/1116/6283/1991/10576/10288/1794/963/3689/5788/976/23250/5686/2207/5695/5223/8514/5806/203068/1088/10213/2919/2219/8566/56888/1476/2665/671/5315/5834/10383/54509/6282/929/11322/945/4282/6850/5702/5912/1509/5329/3569/10875/9545/7097/5708/1378/613/221/8904/1118/7226/7415/1536/5795/3071/6036/353189/2588/5683/7305/7133/3310/5724/1143/3920/411/1773/728/1460/2215/5594/6518/9588/23352/10450/4893/5476/8560/2352/5718/140885/2444/1650/3417/10326/9535/719/10970/1512/11333/5707/1432/3326/5211/26578/10097/51071/6556/1508/5236/4125/54472/29099/2992/23114/272/23593/1522/5473/10092/27180/2896/2760/84061/2512/6372/25801/2212/3837/4332/5265/2358/391/1729/6845/2357/7414/8804/101/5870/6868/5036/684/7077/10394/6793/5719/2547/57826/10577/3320/3579/1669/3848/5328/5660/55313/3683/55832/5478/5717/4973/10857/3687/2720/79169/10487/5657/8288/3614/566/226/5284/5873/124583/1604/230/5611/6993/2204/2683/3146/9761/56954/9948/10043/5553/8694/8635/10694/222487/1084/5777/1636/3577/9342/6386/10075/5689/23197/3482/5337/8993/5701/5199/80301/7879/81619/5879/23071/28956/4353/6616/47/3684/23200/527/3163/54918/8655/8673/8778/23218/410/1315/968/567/3916/23191/79930/79792/9798/978/9861/64114/10533/2147/7520/960/1727/5908/11010/634/25797/51125/197/8895/823/683/51552/64386/55754/383/5906/158747/8826/23526/51382/302/4126/965/961/967/10120/161/4790/51816/23385/10312/1654/5049/4048/317/51143/2495/6093/5023/1915/5663/5319/5878/10159/718/1265/3074/1776/1778/10555/9218/11026/387/3728/8621/23317/1828/847/55860/1774/102/1938/6727/175/79895/3958/4033/25840/51135/2990/55/2799/5869/966/9725/23412/5864/1832/6814/2548/25852/6813/240/10493/84658/56729/23601/327/10396/51646/7276/2040/535/5580/2268/5273/4758/11334/4317/29108/2150/30/178/7130/8649/1992/5175/138050/5768/5269/51719/4057/22875/9522/5547/12/1823/29/2717/306/80184/22918/427/3043/3240/3615/5836/3685/57020/948/2517/11001/5799/387263/6709/6037/57126/1511/2934/8773/4311/210/5787/9961/11031/1675/1471/290/83716/6947/10788/4680/8972
## GO:0009636 6280/6279/983/2146/891/8061/1978/8836/1894/6352/3934/445/10549/440/6772/7298/2643/5111/6351/116372/6770/3775/6715/51765/1719/4067/6354/7412/1138/1789/7296/2950/3162/64757/3351/3066/57016/51022/1812/578/8877/867/11254/3208/1019/3383/83990/664/2539/7295/100/1317/10213/1644/8807/5831/10280/2984/5603/939/8989/57817/7128/10105/25841/8914/1244/3251/10287/3359/999/929/1788/23028/9076/468/2395/8013/7124/3569/7097/50506/1410/5743/348/4151/1663/7226/551/5536/1536/23657/131/9131/3596/1981/655/6001/1143/1119/3297/4504/1365/4357/5610/4880/5594/10131/9734/9588/117/1147/140885/3558/3045/1785/113/328/8303/1814/1137/26034/2742/4914/1728/10097/836/1141/6714/6688/9446/1787/6531/3049/9283/5019/3741/1267/7274/1026/10327/65985/5997/2876/346562/5970/80149/5660/140803/581/1366/1813/2861/7311/2176/2113/3046/6722/6327/241/51208/339/2185/64854/55607/8288/3586/337/6647/7782/2806/4988/2534/2902/1269/23256/60/2168/41/79849/2877/4193/3651/1665/1816/3746/841/5245/5020/1545/5155/5151/2904/5465/11235/1440/2882/5153/3050/2660/2775/2936/130/3840/3747/10276/4353/329/7001/5516/8754/1616/10891/2796/4825/6869/2074/29914/2021/4217/51109/8428/10765/2052/9869/54840/1193/7284/6188/1371/4233/5581/9314/4780/3156/23530/4155/5999/383/11315/11093/10494/7225/2741/1906/4968/51714/27429/4790/9376/6529/6324/373156/670/2903/23095/5074/3779/6774/135/10587/5598/572/10400/2938/116/1136/57165/3725/5728/2879/23063/824/6382/10013/8787/4736/387/59338/10935/1398/847/5903/23334/5446/4255/374/6415/23064/5741/25/1938/11179/2560/1385/4924/10249/3178/4986/1815/4846/79813/55937/6915/1572/26471/2059/4258/53905/5423/51150/8737/538/23135/4916/5179/6517/70/2309/7200/5076/1571/598/65018/1392/7703/1268/55512/5580/55139/23411/3709/7054/6546/2263/6335/9104/51024/5742/5562/4025/5071/4985/7337/5530/5595/6532/4131/1373/2880/115703/6778/51780/3248/10365/3371/3082/5914/2878/4602/3791/1543/55364/1958/7173/2098/3043/558/3240/7779/596/1843/948/54996/1621/196/8678/595/5021/4929/7837/2954/7507/2308/2934/22977/2353/1277/1140/5950/4747/10516/26575/210/2281/1393/358/3952/2946/3778/761/477/2944/10628/51157/5159/27244/1471/388/57332/6678/6571/23428/4487/213/9429/1036/2952/10202/2947/4056/2053/18/80310/4129/9370/2625/10974
## GO:0010038 6279/983/366/4521/891/4318/8836/1894/445/712/8437/5111/10397/6770/55503/7412/114/4496/57103/26/1841/3162/5641/4502/5499/4501/58/15/3208/1019/3383/664/2539/706/57817/10105/1244/4494/999/9456/929/1788/142/9076/468/246/2805/2395/5027/5743/6262/8904/3091/7226/10165/1956/5536/7273/1536/27101/3297/4504/4493/5594/6261/3777/4495/265/3756/7036/1147/113/811/360/3552/2742/1728/836/760/27132/3398/6531/3309/7018/1050/120227/1544/359/4205/6786/5313/5009/2243/55532/3710/1965/2266/682/1813/9361/6331/4761/4520/5621/241/339/2185/2937/3707/6647/25932/7390/654/673/4193/57192/6569/3651/3746/1585/841/9536/1740/7252/5599/7015/7323/955/7222/3747/2521/5516/8754/1616/10891/2796/9451/567/2021/3184/65125/7341/207/846/6284/27094/553115/3727/1371/2664/2244/3726/6620/4780/51596/8895/383/11315/11093/1742/8826/10243/10369/10235/6263/71/2741/1906/4968/8074/6529/23385/7134/351/10312/513/4864/3981/63928/23400/30819/572/64924/48/2822/8913/22872/4891/3725/4331/8893/5728/2978/6382/7518/2039/1584/847/5515/27345/79085/3815/23498/5741/8912/288/1385/842/6652/429/5066/5601/1261/4656/3077/2696/1800/29957/538/10768/5179/55512/2354/7054/5224/7020/10242/2729/4779/7057/22871/5562/311/6622/5071/7139/9633/2067/466/107/118/5530/5595/4776/1373/825/5563/4017/6649/845/23621/1543/1027/3736/322/7474/7779/596/8644/1843/5025/10272/8678/595/540/5311/4499/4734/10016/8604/84059/4208/1528/79800/2934/5176/2353/5860/210/1393/358/6469/7220/3485/3778/3861/10628/23327/857/2203/1396/6678/5350/6857/4982/6898/7031/18/4129/2167/4137/79901
## GO:0048545 8061/1978/1515/4821/898/952/6663/445/6502/133/11240/7298/5111/6770/6715/54541/6943/1535/1364/336/1789/3148/2950/9420/3351/58/15/3383/706/6696/3291/409/6285/1244/865/11063/142/9076/5467/8284/2805/2692/8013/7124/3569/7097/11335/5743/5901/1956/5536/5469/1536/9131/672/4192/655/5724/6753/23019/2101/10018/8431/3417/6597/8896/8202/790/811/6422/10432/7533/8928/9125/7332/9971/1977/249/836/2288/7101/5732/5058/760/6714/5931/3164/7356/2649/3172/84830/1026/2063/11331/49/11170/55885/9970/5970/2056/7181/10062/199/4654/3065/6049/5915/8837/23205/677/7067/7477/2720/7023/3586/8856/189/552/6256/7421/218/190/654/4838/4193/3651/8085/10498/51176/6096/5978/5245/5020/9113/50616/5465/3845/5207/2660/10076/8754/1616/10891/2796/6869/10413/3192/7182/6257/7352/9063/7068/5069/478/10524/4848/10474/476/2100/81606/81285/3717/7040/2033/9325/1369/8312/10002/65992/23054/383/6047/11315/23543/186/301/8725/1829/1655/55818/1906/2852/23376/11214/6872/4864/6155/26508/2103/572/64754/79039/23558/79820/9612/116/20/6382/79876/3557/10013/51341/7538/387/5458/9575/799/1828/2693/374/6781/2560/8031/842/51366/5916/7376/56937/3670/5066/51389/6095/1022/1261/7035/8554/4916/4824/79447/57828/2022/2309/55325/7200/2274/1392/9604/4015/406/7025/5187/9101/23411/2354/7054/7026/29966/7057/6879/8626/687/178/8289/10499/2516/1407/51569/9611/9975/5925/7337/1499/25959/1601/1373/2908/10521/10424/490/8648/2104/21/6258/5914/3275/6750/2322/11057/3174/3490/596/8644/1843/1490/23426/6586/678/8204/595/5021/4929/55128/4734/590/7042/9353/2308/7048/5176/2494/2353/1277/4747/210/5468/358/57658/4246/3485/3176/477/10628/8611/6720/2099/6097/5764/857/6678/4306/7041/7043/1036/367/7349/6898/10266/4129/9370/652/3169/1408/5241
## GO:0048511 10874/7153/983/2146/51514/8792/4316/445/56938/7298/5111/6770/6496/6715/1364/4159/3066/3737/5499/15/1019/3062/5806/100/191/1644/10059/409/2673/4704/8914/1020/6839/468/2692/11335/5629/23596/1956/5971/1959/3814/4192/9500/57805/5054/1642/5591/835/5371/5582/1374/8431/2932/402055/7150/1814/4914/836/1141/10135/6121/6714/8242/3398/4841/23239/3309/9967/3172/2069/8851/22809/134/9099/2063/5927/4669/10062/5500/1813/4800/2113/3065/1660/5501/2661/22992/5602/2492/5078/4791/4988/5798/7301/55294/10419/79723/5608/5730/6096/2475/55124/5465/10075/8451/10236/80045/5599/5936/2660/11245/9510/4843/1406/10514/7008/1390/10891/2796/23373/1859/6928/3192/8239/3037/3184/23394/10765/4808/10533/2033/8879/4544/3727/5156/1655/23435/6421/1437/4889/7080/25819/7874/55269/1453/8403/2767/8841/135/9612/3036/3725/5728/9475/59338/9575/55366/4987/23064/10495/4327/2560/1385/10743/7291/112464/4986/1815/4846/5066/5601/83759/8850/6095/4862/9112/1454/4916/7071/463/23291/56729/2309/8473/6777/6667/1392/4297/406/5187/23411/9956/7054/3363/23077/22871/5562/687/10499/2516/3624/1407/9611/9975/107/2776/7337/56339/6532/2155/8945/7157/1628/1960/408/5563/8322/1387/268/8648/55068/1958/558/3615/181/79831/6478/4804/4887/6586/196/8204/8863/5021/7042/9353/5176/79365/50865/2620/5468/2691/54551/8553/3952/3751/8864/6720/2099/6097/5764/1471/7079/174/4915/658/3131/7043/9607/7166/9370/1408/5241
## GO:0002283 6280/6279/6278/820/6286/51806/10855/4318/5004/4069/8836/10321/3934/1075/10549/11240/6402/932/5645/5317/5709/51411/3101/6590/6317/3608/4860/5646/2821/1535/1520/26/3903/80142/5713/2950/10562/79980/6515/51316/11314/79888/2171/9145/8876/353/1116/6283/1991/10576/10288/1794/963/3689/5788/976/23250/5686/2207/5695/5223/8514/5806/203068/1088/10213/2919/2219/8566/56888/1476/2665/671/5315/5834/10383/54509/6282/929/11322/945/4282/6850/5702/5912/1509/5329/10875/9545/7097/5708/1378/613/221/8904/1118/7226/7415/1536/5795/3071/6036/353189/2588/5683/7305/7133/3310/5724/1143/3920/411/1773/728/1460/2215/5594/6518/9588/23352/10450/4893/5476/8560/2352/5718/140885/2444/1650/3417/10326/9535/719/10970/1512/11333/5707/1432/3326/5211/26578/10097/51071/6556/1508/5236/4125/54472/29099/2992/23114/272/23593/1522/5473/10092/27180/2896/2760/84061/2512/25801/2212/3837/4332/5265/2358/391/1729/6845/2357/7414/8804/101/5870/5036/684/7077/10394/6793/5719/2547/57826/10577/3320/3579/1669/3848/5328/5660/55313/3683/55832/5478/5717/4973/10857/3687/2720/79169/10487/5657/8288/3614/566/226/5284/5873/124583/1604/230/5611/6993/2204/2683/3146/9761/56954/10043/5553/8694/8635/10694/222487/1084/5777/3577/9342/6386/10075/5689/23197/3482/5337/8993/5701/5199/80301/7879/81619/5879/23071/28956/4353/6616/47/3684/23200/527/3163/54918/8655/8673/8778/23218/410/1315/968/567/3916/23191/79930/79792/9798/978/9861/64114/10533/7520/960/1727/5908/11010/634/25797/51125/197/8895/823/683/51552/64386/55754/383/5906/158747/8826/23526/51382/302/4126/965/961/967/10120/161/4790/51816/23385/10312/1654/5049/4048/317/51143/2495/6093/5023/1915/5663/5878/10159/718/1265/3074/1776/1778/10555/9218/11026/387/3728/8621/23317/1828/847/55860/1774/102/1938/6727/175/79895/3958/4033/25840/2990/55/11027/2799/5869/966/9725/23412/5864/1832/6814/2548/25852/6813/240/10493/84658/56729/23601/327/10396/51646/7276/2040/535/5580/2268/5273/4758/4317/29108/30/178/7130/8649/1992/5175/138050/5768/5269/51719/4057/22875/9522/5547/12/1823/29/2717/306/80184/22918/427/3043/3240/3615/5836/3685/57020/948/2517/11001/5799/387263/6709/6037/57126/1511/2934/8773/4311/210/5787/9961/11031/1675/1471/290/83716/6947/10788/4680/8972
## GO:0042119 6280/6279/6278/820/6286/51806/10855/4318/5004/4069/3576/8836/10321/6352/3934/1075/10549/11240/6402/932/5645/5317/5709/51411/3101/6590/6317/3608/4860/5646/2821/1535/1520/26/3903/80142/5713/2950/10562/79980/6515/51316/11314/79888/2171/9145/8876/353/1116/6283/1991/10576/10288/1794/963/3689/5788/976/23250/5686/2207/5695/5223/8514/5806/203068/1088/3600/10213/2919/8807/2219/8566/56888/1476/2665/671/5315/5834/10383/54509/6282/929/11322/945/4282/6850/5702/5912/1509/5329/10875/9545/7097/5708/1378/613/221/8904/1118/7226/7415/2213/1536/5795/3071/6036/353189/2588/5683/7305/7133/3310/5724/1143/3920/411/1773/728/1460/2215/5594/6518/9588/23352/10450/4893/5476/8560/2352/5718/140885/2444/1650/3417/10326/9535/719/10970/1512/11333/5707/1432/3326/5211/26578/10097/51071/6556/1508/5236/4125/54472/29099/2992/23114/272/23593/1522/5473/10092/27180/2896/2760/84061/2512/6372/25801/2212/3837/4332/5265/2358/391/1729/6845/2357/7414/8804/101/5870/5036/684/7077/10394/6793/5719/2547/57826/10577/3320/3579/1669/3606/3848/5328/5660/55313/3683/55832/5478/5717/4973/10857/3687/2720/79169/10487/5657/8288/3614/566/226/5284/5873/124583/1604/230/5611/6993/2204/2683/3146/9761/56954/10043/5553/8694/8635/10694/222487/1084/5777/3577/9342/6386/10075/5689/23197/3482/5337/8993/5701/5199/80301/7879/81619/5879/23071/28956/4353/6616/47/3684/23200/527/3163/54918/8655/8673/8778/23218/410/1315/968/567/3916/23191/79930/79792/9798/978/9861/64114/10533/7520/960/1727/5908/11010/634/25797/51125/197/8895/823/683/51552/64386/55754/383/5906/158747/8826/23526/51382/302/4126/965/961/967/10120/161/4790/51816/23385/10312/1654/5049/4048/317/51143/2495/6093/5023/1915/5663/5878/10159/718/1265/3074/1776/1778/10555/9218/11026/387/3728/8621/23317/1828/847/55860/1774/102/1938/6727/175/79895/3958/4033/25840/2990/55/11027/2799/5869/966/9725/23412/5864/1832/6814/2548/25852/6813/240/10493/84658/56729/23601/327/10396/51646/7276/2040/535/5580/2268/5273/4758/4317/29108/2150/30/178/7130/8649/1992/5175/138050/5768/5269/51719/4057/22875/9522/5547/12/1823/29/2717/306/80184/22918/427/3043/3240/3615/5836/3685/57020/948/2517/11001/5799/387263/6709/6037/57126/1511/2934/8773/4311/210/5787/9961/11031/1675/1471/290/83716/6947/10788/4680/8972
## GO:0043312 6280/6279/6278/820/6286/51806/10855/4318/5004/4069/8836/10321/3934/1075/10549/11240/6402/932/5645/5317/5709/51411/3101/6590/6317/3608/4860/5646/2821/1535/1520/26/3903/80142/5713/2950/10562/79980/6515/51316/11314/79888/2171/9145/8876/353/1116/6283/1991/10576/10288/1794/963/3689/5788/976/23250/5686/2207/5695/5223/8514/5806/203068/1088/10213/2919/2219/8566/56888/1476/2665/671/5315/5834/10383/54509/6282/929/11322/945/4282/6850/5702/5912/1509/5329/10875/9545/7097/5708/1378/613/221/8904/1118/7226/7415/1536/5795/3071/6036/353189/2588/5683/7305/7133/3310/5724/1143/3920/411/728/1460/2215/5594/6518/9588/23352/10450/4893/5476/8560/2352/5718/140885/2444/1650/3417/10326/9535/719/10970/1512/11333/5707/1432/3326/5211/26578/10097/51071/6556/1508/5236/4125/54472/29099/2992/23114/272/23593/1522/5473/10092/27180/2896/2760/84061/2512/25801/2212/3837/4332/5265/2358/391/1729/6845/2357/7414/8804/101/5870/5036/684/7077/10394/6793/5719/2547/57826/10577/3320/3579/1669/3848/5328/5660/55313/3683/55832/5478/5717/4973/10857/3687/2720/79169/10487/5657/8288/3614/566/226/5284/5873/124583/1604/230/5611/6993/2204/2683/3146/9761/56954/10043/5553/8694/8635/10694/222487/1084/5777/3577/9342/6386/10075/5689/23197/3482/5337/8993/5701/5199/80301/7879/81619/5879/23071/28956/4353/6616/47/3684/23200/527/3163/54918/8655/8673/8778/23218/410/1315/968/567/3916/23191/79930/79792/9798/978/9861/64114/10533/7520/960/1727/5908/11010/634/25797/51125/197/8895/823/683/51552/64386/55754/383/5906/158747/8826/23526/51382/302/4126/965/961/967/10120/161/4790/51816/23385/10312/1654/5049/4048/317/51143/2495/6093/5023/1915/5663/5878/10159/718/1265/3074/1778/10555/9218/11026/387/3728/8621/23317/1828/847/55860/1774/102/1938/6727/175/79895/3958/4033/25840/2990/55/2799/5869/966/9725/23412/5864/1832/6814/2548/25852/6813/240/10493/84658/56729/23601/327/10396/51646/7276/2040/535/5580/2268/5273/4758/4317/29108/30/178/7130/8649/1992/5175/138050/5768/5269/51719/4057/22875/9522/5547/12/1823/29/2717/306/80184/22918/427/3043/3240/3615/5836/3685/57020/948/2517/11001/5799/387263/6709/6037/57126/1511/2934/8773/4311/210/5787/9961/11031/1675/1471/290/83716/6947/10788/4680/8972
## GO:0001101 891/53335/952/3294/339479/445/440/7298/5111/2707/1236/1869/1719/4830/1051/4067/2730/1535/2950/5031/55915/3066/2867/15/3208/1019/3383/7473/22943/58528/57817/1244/7422/10626/1788/9076/1786/9356/7480/7124/5165/7097/2180/5743/1956/5536/1536/9131/6862/7525/5724/3297/5967/4277/8651/1374/26291/1147/5444/1032/9148/1512/6422/360/54929/2742/4914/1728/9971/836/5732/6714/1109/7356/231/57707/359/9033/65985/11331/5009/3949/5970/80149/7351/6363/84861/1723/1072/7477/7292/7479/8324/2348/2185/2937/5602/5727/7475/54834/552/6256/2534/2902/7472/654/1282/8273/3651/4524/6096/2475/3141/11344/9536/5020/3843/5155/1645/51079/6366/1646/928/6495/10542/3482/2782/6602/2170/28956/5030/10891/2796/6869/64121/10413/4058/6899/9804/3184/6470/19/81285/10533/22938/207/7520/1386/27/5581/9314/22850/7584/383/10670/5156/3856/2741/1906/4968/27429/23376/7528/26012/8443/493/10458/3779/5289/9227/64506/4976/572/10400/7009/5979/6506/10270/824/5754/55022/387/847/2695/4255/2350/23064/171023/2731/1938/6494/3673/1385/429/5916/112/4656/2696/8854/538/338/4916/6662/31/472/5076/56603/1571/598/65018/54332/51141/7054/2263/2729/51024/5562/3199/23304/8649/51520/1196/6532/2155/4776/5729/1373/3399/5563/8322/8648/10365/3371/5914/1291/4602/3791/10325/6750/1027/1958/54997/7474/3490/8644/80781/1843/948/1490/5737/11211/5311/590/3155/22849/2308/1278/2934/2042/5176/5753/1277/5950/210/5468/5166/358/1281/4023/1592/1290/3485/7350/81029/3952/7075/5244/4313/56034/23677/6720/7494/7481/5764/5159/6678/4915/2697/1036/6935/3667/7049/80310/1307/9370/5105
## GO:0070482 890/5163/891/1978/952/51378/133/768/4609/10397/5688/5709/1869/3654/5698/54541/7412/5693/1535/57103/1789/430/5713/3162/5721/5691/3066/30001/867/5685/1019/5024/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/100/10213/6513/191/3291/10059/23198/2792/6285/8751/7422/5315/158/5699/5714/6921/1788/6839/5467/27087/468/5702/9978/5165/4049/7097/5708/7852/1410/5743/5692/6262/4151/3091/3099/5704/3776/1536/100133941/9131/655/5683/3297/4504/1365/5034/4880/5967/6261/5694/3777/5366/51167/5371/5718/5682/5351/5716/9114/6422/360/5352/4878/5707/1137/7184/836/1179/54583/1141/10135/5058/6714/5696/5428/3741/1026/134/101/6868/5313/11331/5719/5700/2056/5328/7351/27035/23545/1813/4654/4842/5717/7311/2113/6722/9361/26608/10197/8837/8453/677/2185/9777/4352/5706/51129/212/5710/218/23256/79723/2168/4193/81575/4851/4524/28996/2475/5978/523/25828/2627/5465/5689/5720/7015/784/6233/355/7316/5701/9491/4843/2782/329/50809/10891/6923/5711/3163/9463/5715/177/2021/7352/8996/3516/7314/9861/10533/22953/207/7040/2033/5705/846/22933/2071/5581/5894/4780/537/4000/5740/55662/1803/7225/8994/1906/81/9550/4323/4089/1263/405/64428/3779/317/64506/4976/572/7009/112399/5728/824/285/9475/387/5458/10869/847/650/29988/6781/9520/26355/64344/7515/25994/3673/5664/1385/7291/27063/5066/571/4204/6095/863/22937/25950/10273/5423/538/4824/5179/6517/2309/23576/472/7200/65018/23411/3709/7054/6546/51024/7057/5562/4985/2068/23409/6532/4763/6326/9915/2155/7157/4088/4017/6649/7010/1387/665/28984/94/6548/4602/1543/1027/1958/596/947/2034/79625/1490/9124/8678/5021/4194/7248/4929/7042/29997/1902/2308/7048/283/481/10370/1277/210/5468/50507/358/3952/3751/3778/5764/6387/5159/1471/857/1909/10631/7043/5327/7049/18/10266/9370/3708/5105/8614
## GO:0023061 10874/6664/23413/952/6352/133/60482/136/4067/8564/114/56943/1138/3458/6572/2297/321/51083/3351/1812/2867/292/22895/6513/6696/10059/5208/8997/5127/1020/6659/6566/5467/2692/8500/10675/7124/4160/5027/3569/2641/3091/4644/1956/26251/3814/1080/1908/10755/1143/1588/28964/25874/6927/55636/51167/5578/1142/5582/1374/7036/8431/55737/3623/2932/1394/3589/23513/151/6422/4878/1137/5211/2778/6809/3170/9971/1141/9381/91683/5579/6855/152/774/8447/5019/3741/3172/402/134/695/5217/6845/2914/65985/5008/2243/3710/8573/55585/51768/7351/2266/3033/1813/64111/8541/3799/773/353500/64130/9255/2661/3745/55607/65220/8497/7425/4988/5798/3553/5781/93/7074/5861/9515/654/41/7447/3651/2740/3358/5978/2645/594855/8618/293/7476/27163/6865/2332/9699/59341/2850/6853/488/55327/4843/8723/5879/3747/6804/5028/23208/6616/23568/5030/2044/23178/4825/6869/5715/3630/8673/2572/6928/6854/9324/80223/815/148/10765/11255/4760/3717/668/9727/846/5908/4544/5581/5894/2244/818/3156/5906/11315/26059/51762/186/301/9783/3060/8867/114897/23435/1803/1906/51714/1946/640/2852/8074/4089/4087/320/7849/2901/10312/5868/9230/8775/22999/135/183/5023/6623/572/27230/5663/6514/2822/116/1136/1855/3557/9575/2693/291/2587/27345/2695/6447/9448/3749/8398/8620/7432/1385/5972/1488/8600/3976/8499/4986/9751/3670/22930/7110/8973/3077/114088/2696/5864/6814/9378/2260/5538/57818/6810/55288/4824/1103/56729/3356/26056/2029/6934/1392/1268/55512/9379/406/5991/3709/783/22871/5532/23025/6622/5071/3624/399979/1407/777/107/51092/5530/23409/8609/4763/9581/6453/6582/408/10497/8660/27445/11132/8322/23396/2752/3382/9256/2571/23621/4602/22841/1129/3350/9024/7779/2746/9627/8425/80024/9501/9162/6843/6844/79772/9900/5799/8825/4208/3790/6717/9854/8448/54795/23410/8773/5950/2281/10411/1393/2691/6812/3952/8864/93664/3625/4856/6720/6833/775/1363/6571/8938/4035/11069/6857/55638/2697/185/55107/6863/3667/7349/79971/9607/150/6926/9254/114899/18/776/9370/25924/3708/80736/2922/2625/7021
## GO:0043434 890/990/1978/8836/445/133/6772/2888/51237/3973/6770/6715/4067/114/28999/1535/2642/1537/5471/2950/51083/50617/353/15/1019/2058/3383/83990/6513/3291/5447/5588/1445/1244/10626/533/142/4690/2805/2692/8013/4160/4141/5905/7097/2641/3692/5743/4644/9296/525/1536/1959/2650/655/27101/3297/988/5967/5591/6654/5771/2101/9734/88/8891/5567/8651/10603/26291/1147/1394/113/328/9114/790/1395/4878/5575/57761/9971/5568/5747/6121/5058/760/6714/2770/3164/5579/2688/2885/30837/6599/57707/2069/208/5009/55532/5970/3636/5251/7351/528/682/23545/3033/109/896/8837/677/4142/3416/51094/339/5584/4221/1442/3586/5770/8615/51606/3484/5617/7425/2806/5798/2534/3553/5781/51052/2303/3718/5829/4193/6569/8048/5566/5140/529/4218/2740/6429/2475/523/2645/526/5245/5020/5465/59341/5207/2660/6198/81565/2170/9340/2796/527/4825/2887/3630/1967/23191/7471/9518/7352/815/4040/5296/5290/8890/207/3717/7040/51043/5908/634/3727/155066/3645/4780/537/1979/23433/197/64710/383/1176/8826/186/51382/2931/6272/1906/8892/2844/9550/2852/2798/4790/55777/10312/2689/4149/10458/6774/140710/64506/4976/6093/183/7253/2822/5319/8893/5728/55022/9475/5458/8992/1398/2693/847/9882/2695/374/29988/1605/7076/5576/858/1385/5170/4986/2771/112/2549/8850/22937/23235/51763/3030/54328/5872/23038/6814/5573/3488/10768/56729/7249/6464/6517/6431/8473/6777/6667/55023/535/5580/5786/1910/534/23411/51141/7054/54741/4641/2729/115/5286/10014/5562/55667/2516/23189/26060/1407/107/2155/4131/5791/1373/8660/490/6430/108/11132/5295/7010/5164/4303/6548/1027/4435/1958/3643/6776/8743/5590/181/1490/324/5021/9810/7248/6844/4929/114882/3087/5919/9847/2308/1277/2241/4747/5860/10580/5468/5166/1393/8835/55198/11031/4023/9365/3952/5577/7832/5618/3625/6720/7494/3480/6387/857/7079/2690/6678/5167/5350/2697/185/1036/3667/2200/7049/7031/9370/5105/8614
## GO:0030198 4312/4321/3695/4318/1515/4316/10549/55612/5650/5645/1299/4324/25975/5268/7412/1520/2296/1302/30001/3381/1991/3689/3383/1834/5806/1514/3696/6696/3549/60484/6624/9806/3936/8751/1463/55151/999/2824/7143/79709/7124/3569/63827/8985/1297/7490/7133/5054/176/1305/10049/1286/3674/2264/5033/5345/50848/4643/9313/5747/7101/60495/51144/8785/84830/5644/7087/3385/5340/101/2243/3682/7077/3694/8728/3683/27035/1758/2266/682/440387/9719/2113/8837/3687/1284/7448/4241/4617/3676/4791/1361/2303/1282/2683/4851/1404/3680/10653/3384/5045/1545/5155/3691/1999/2201/3684/602/81621/3655/3918/26585/4146/3037/284217/56999/7046/7040/960/3678/7132/2244/823/3688/9508/5156/1285/826/961/1803/23213/8174/6692/23187/10630/3911/23332/4323/4358/351/25890/649/5154/183/63894/3914/3817/3036/3491/824/375790/4868/84168/10319/3818/1310/3690/222663/1605/102/25/2294/4327/2335/7076/3673/7148/4320/538/4325/64856/55790/7092/6662/54507/2022/60626/9644/7276/55512/8515/4015/7093/6939/8516/4237/1215/3672/4317/7057/9509/1298/3915/3386/2/10585/5925/2068/5175/4763/10211/5768/2295/4921/4088/8038/4017/1288/28984/4811/3910/3371/1291/3791/1301/90993/79875/7450/3685/80781/79625/1490/1280/4314/10609/80070/3675/11005/7837/169611/7042/3912/23122/4322/1278/56605/1511/323/4060/30008/1277/164656/22795/10516/1293/2247/1295/58494/2620/8076/2192/1281/83700/50509/4319/1290/1513/11096/4313/2199/3693/1294/2621/2191/1471/11117/3339/1462/1289/1292/3908/4016/3909/83716/6678/1296/4035/633/3249/165/5654/2331/3913/4982/1300/2200/1634/7177/1287/3679/2006/7373/10266/1307/4629/1311/4148/4239
## GO:0061458 79733/259266/81930/4521/8061/1515/3294/10733/2175/10549/133/639/10481/3973/2707/79805/6770/5268/6715/2709/1051/6943/9289/8894/8372/430/2296/3148/9420/4436/1594/55840/2253/578/867/7262/3383/83990/5806/100/3696/6696/50814/1761/409/4726/2189/4678/2254/8751/7422/6789/899/6768/5467/4188/5604/5743/3091/8433/1956/5469/7490/9021/655/6240/79084/3297/3157/675/1588/5594/10049/10018/9421/55636/835/7022/79977/9468/2626/10959/3623/3417/4158/6422/3975/1432/9757/3326/4914/5568/836/1508/56159/2288/57122/5747/54583/6714/26528/11144/3239/2885/6788/3309/6599/1050/7274/2069/1399/64220/5927/10371/7855/55585/8531/8728/581/682/64783/6736/6665/677/4142/10155/7477/9394/23626/2661/4221/10409/3586/269/2492/5727/6647/6256/7425/23641/5798/5781/7421/7301/190/7472/654/10046/4838/10653/841/5245/7476/1046/6194/5155/59343/2627/51493/6615/9510/7258/3622/329/10461/9985/2796/4201/653/1739/3955/3516/2316/10765/9210/7314/7046/3293/8890/207/668/8879/3726/22836/6932/1045/5740/5156/5270/10116/8022/9820/23213/1437/3856/55870/6692/7080/8892/2623/4323/4089/405/3972/25976/57599/3020/116/10818/92/51665/8893/5728/2705/3491/6382/3207/5324/3206/59338/10935/2693/2624/2736/55366/6781/3815/8846/659/4327/642636/51742/8031/5972/2116/599/3976/5916/4846/8195/7098/7110/152006/26471/5872/23598/7812/9667/55224/6662/6670/4824/56729/1495/2309/8521/192670/472/6777/598/79893/4762/23411/5333/7026/29072/3280/2263/5310/546/7942/8626/25836/3880/8289/2516/3624/10388/2067/6716/10761/7337/5595/1499/2295/1718/54477/80000/408/10265/2186/23493/22846/8322/5926/6794/268/8648/2735/7536/3371/5914/1027/1028/4920/4435/6299/3643/54997/7474/558/8743/596/2034/4216/8644/6586/10272/8204/595/23639/84159/2488/7482/5311/23462/7042/3400/9353/22862/5176/283/10370/5950/2057/4311/51294/2620/5468/6469/57728/58495/3952/3295/3625/4254/2099/5764/5159/1471/1396/174/658/23414/54361/2737/5654/247/2697/5104/367/1634/6926/652/4036/4693/3169/8614/2625/5241
## GO:0048667 5080/4902/9355/6712/7804/7345/7504/3897/3925/92211/9046/2676/2297/5459/2253/1749/10507/55079/9048/575/3475/7473/4647/6696/10059/10381/6285/80128/5588/1951/7422/3251/8997/5457/1020/7143/4781/5604/8013/9334/474/2048/7852/2886/348/3996/23566/2011/1959/84079/655/1123/4504/5594/6654/50674/2047/5623/5578/1496/5911/3984/1785/51393/2932/6277/885/23513/25806/3975/6792/7533/3326/2049/10048/4914/79955/10097/56288/10678/5747/1141/7101/5058/2637/23114/6714/11178/10006/6091/3398/2885/7224/1267/8851/6507/8828/2043/393/6845/4205/7414/3792/26050/7408/2636/10371/4133/3320/1954/22903/1002/1813/6710/2131/10479/6722/5291/9762/6049/54942/1072/26257/4917/10939/8153/3196/55607/5335/27185/5293/4099/5818/5727/4076/3676/6647/8976/2534/5781/7074/2902/6683/50944/25987/886/11313/51330/54413/53358/1627/998/4218/2668/7436/11344/7476/64096/55558/23242/23316/8766/5063/2675/56965/396/55740/1826/10090/64919/9175/81565/2017/3706/2044/5306/4825/2887/8239/55816/9368/6477/27023/23191/4168/4897/9798/1400/815/23394/5290/8301/1600/1523/10716/23542/2664/577/10500/55715/3688/50488/1742/23543/8022/9820/10494/64218/7225/7080/1949/816/1946/1436/51199/2064/4089/351/6324/57142/84612/9331/26012/23011/10458/1382/4976/5598/7430/5979/5454/5663/23237/6152/347733/104/54664/1136/5048/10818/4891/6904/5728/1855/23105/10013/22854/8482/387/5458/10439/9750/6259/2736/23334/6708/6900/4983/1605/102/659/9260/11141/25/6498/9637/2335/7976/288/11078/9839/5803/1385/473/2258/4684/10152/10505/80243/4974/4756/3670/55619/8650/9423/9211/1630/2549/23098/23043/2115/57698/4038/6711/5800/23032/5909/57498/9378/10427/4916/10611/1808/6464/5649/6474/10160/7155/5076/2909/6383/5789/9344/5786/23363/5802/26052/6405/79600/3280/9706/2263/23077/51332/9693/51761/22871/5532/23499/79006/3611/3199/57556/7070/26053/8929/9846/107/7337/5530/5595/8609/10211/9638/4131/4776/627/22891/8660/64689/23767/115703/5295/6794/29882/1952/22902/322/7474/1796/9024/596/23111/9252/1942/4804/2803/4628/8633/6586/66008/26037/80823/4929/4692/5797/4734/4803/219699/65981/3397/4208/2817/6709/9353/8829/323/57731/7869/4747/4744/6469/6812/64221/80208/9037/1009/9201/9369/22906/9499/1501/5764/6387/2674/56920/10512/3908/2045/4035/4915/658/2737/3800/10752/3730/23303/214/63923/3913/51466/4137/2625
## GO:1904951 10874/3002/4321/5004/51512/1894/952/55612/22948/51311/914/8767/1869/9447/114/3495/2821/3458/9585/64135/908/2810/2867/10576/3208/3783/9141/2597/7545/637/3689/7096/7027/23586/10059/2219/3735/7534/5208/10541/5880/3965/10626/999/1020/5047/6659/929/26191/5467/945/4282/7159/6850/64109/7124/5027/3569/8882/56253/7097/5743/3091/57214/5901/1956/7273/7203/10125/3556/55835/3596/834/4192/7293/10055/1080/55741/10574/3059/5594/10575/57602/25874/5366/10134/1147/8431/3558/55737/2932/24145/8934/51744/10971/1432/3552/54471/64328/7533/382/7332/55655/9971/5058/6714/6721/64127/5534/5481/7029/8447/11156/5019/8851/84818/10802/208/101/65985/5008/2243/7855/80149/51768/6363/2266/1459/199/5478/1813/5734/64083/3799/6608/57824/5621/10155/7292/1660/3745/65220/2010/3586/11126/9777/6346/43/192683/7099/51100/2534/3553/59286/55294/654/10178/4193/7447/3651/3146/5566/4946/7529/3133/2645/50855/841/10694/3265/3843/7175/10075/11235/5599/59341/7323/2850/784/51160/9776/5879/975/8754/3684/11146/4825/5715/177/9662/3630/3605/79792/353514/23379/2316/11261/5296/81285/3717/7040/846/3661/8536/5581/2244/23086/4155/5600/3098/79752/55754/114548/186/22994/7984/2931/965/55801/23435/79778/640/2852/27429/1436/7251/55135/2064/1263/7531/23765/8314/5116/26253/4947/22900/8841/63928/135/23400/572/7430/5494/27230/5663/2822/5319/3566/8736/27159/55763/23607/89781/3728/2695/8692/7161/79567/83786/9520/8398/25/10519/23705/288/10425/55823/51366/7291/9270/27063/3670/11027/23368/9531/5533/55540/55781/2696/6711/26229/9173/6810/4836/23601/6934/2040/9695/65018/1392/55691/5580/2268/54741/4641/56947/51024/4317/29108/54828/5532/2150/5562/8626/5595/22861/7424/7157/57506/408/4088/10497/8660/11132/5295/3567/2752/28984/55696/22902/80184/85459/322/7474/2181/596/5590/947/2746/2149/54209/4628/9501/6844/7042/23255/9847/6717/9854/79679/283/54795/23410/5950/727/79899/55204/10411/5108/6469/4023/90865/3952/6653/7494/2621/3305/10391/8938/4035/2737/10631/161291/55638/247/2697/9590/55107/7043/3357/79971/3479/114899/18/25924/5174/22885/2625
## GO:0006875 10874/6280/6279/3627/10563/6373/4283/6355/23413/952/6352/797/7037/5026/3934/3932/133/1230/8326/4609/1356/79734/7504/1236/55503/4067/6354/114/1535/63933/5336/11151/3162/1043/5031/3351/4502/30001/1812/578/30968/2830/1991/5024/9997/483/5788/3062/1234/664/6375/8698/491/55858/8989/57817/6357/55151/2780/1020/930/27032/468/3061/2805/2395/9474/5027/10686/2906/6262/348/3091/10518/4644/7226/57214/551/23566/6376/100133941/3596/3814/356/1908/2280/887/958/2907/5910/4504/10058/6356/6261/3777/7052/55636/8454/8811/9217/2769/5371/117/10134/7036/3558/729230/9114/719/931/811/1649/1814/7184/56302/6556/6368/9002/54583/51196/796/9446/5579/2512/7224/7018/3741/920/134/5145/1729/3792/9170/55013/623/3710/4738/59340/2911/2056/10800/6363/581/55832/23545/1813/4842/79568/5291/5294/773/5621/10939/10989/3954/10523/2185/5335/7137/27185/6346/9472/3658/6647/552/7782/212/4308/2534/1604/7421/2902/654/22821/57192/3146/8048/9001/5566/793/1756/2740/1816/3358/523/5020/23516/5777/2835/2904/2847/781/6366/492/80045/59341/784/8943/488/7222/2782/5028/2785/5030/57053/3163/6869/2969/55283/8996/478/476/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/846/4544/3759/27/5581/537/5156/1742/186/302/487/3060/114897/304/6263/4923/2898/7225/9709/1906/51714/9550/2658/2852/4089/7531/351/10312/2903/79054/57338/493/55584/7781/23400/2495/183/5023/7009/64924/48/10672/5663/5319/116/3074/4891/27020/1258/28952/3064/54499/10345/10463/799/624/2587/2624/79085/6781/4987/8398/5741/8620/25/7178/63892/5170/8031/4682/1815/1201/10367/55177/3077/2905/2696/287/79608/25998/538/3356/9843/3827/6543/1268/1910/3709/6546/118987/5310/9104/51024/2890/783/2150/6622/7070/9633/3375/1760/221154/5158/23075/4088/825/490/6500/4057/51310/10268/845/9256/6548/2915/5745/7474/7466/7779/596/3685/1901/482/80762/2149/948/5025/4887/5021/80024/844/187/9900/540/5311/26234/3270/6717/1902/1907/553/481/54795/164656/53373/64699/2247/2281/11346/7220/2946/3778/9247/477/2099/6387/23327/3263/857/775/1909/4035/5350/25800/9429/2697/185/3357/6863/2053/776/3708/730/8614/79901
## GO:0048608 79733/259266/81930/4521/8061/1515/3294/10733/2175/10549/133/639/10481/3973/2707/79805/6770/5268/6715/2709/1051/6943/9289/8894/8372/430/2296/3148/9420/4436/1594/55840/2253/578/867/7262/3383/83990/5806/100/3696/6696/50814/1761/409/2189/4678/2254/8751/7422/6789/899/6768/5467/4188/5604/5743/3091/8433/1956/5469/7490/9021/655/6240/79084/3297/3157/675/1588/5594/10049/10018/9421/55636/835/7022/79977/9468/2626/10959/3623/3417/4158/6422/3975/1432/9757/3326/4914/5568/836/1508/56159/2288/57122/5747/54583/6714/26528/11144/3239/2885/6788/3309/6599/1050/7274/2069/1399/64220/5927/10371/7855/8531/8728/581/682/64783/6736/6665/677/4142/10155/7477/9394/23626/2661/4221/10409/3586/269/2492/5727/6647/6256/7425/23641/5798/5781/7421/7301/190/7472/654/10046/4838/10653/841/5245/7476/1046/6194/5155/59343/2627/51493/6615/9510/7258/3622/329/10461/9985/2796/4201/653/1739/3955/3516/2316/10765/9210/7314/7046/3293/8890/207/668/8879/3726/22836/6932/1045/5740/5156/5270/10116/8022/9820/23213/1437/3856/55870/6692/7080/8892/2623/4323/4089/405/3972/25976/57599/3020/116/10818/92/51665/8893/5728/2705/3491/6382/3207/5324/3206/59338/10935/2693/2624/2736/55366/6781/3815/8846/659/4327/642636/51742/8031/5972/2116/599/3976/5916/4846/8195/7098/7110/152006/26471/5872/23598/7812/9667/55224/6662/6670/4824/56729/1495/2309/8521/192670/472/6777/598/79893/4762/23411/5333/7026/29072/3280/2263/5310/546/7942/8626/25836/3880/8289/2516/3624/10388/2067/6716/10761/7337/5595/1499/2295/1718/80000/408/10265/2186/23493/22846/8322/5926/6794/268/8648/2735/7536/3371/5914/1027/1028/4920/4435/6299/3643/54997/7474/558/8743/596/2034/4216/8644/6586/10272/8204/595/23639/84159/2488/7482/5311/23462/7042/3400/9353/22862/5176/283/10370/5950/2057/4311/51294/2620/5468/6469/57728/58495/3952/3295/3625/4254/2099/5764/5159/1471/1396/174/658/23414/54361/2737/5654/247/2697/5104/367/1634/6926/652/4036/4693/3169/8614/2625/5241
## GO:0051047 10874/6279/4321/6664/5004/23413/952/8792/55612/51311/914/8767/9447/136/8564/114/3495/2821/1535/8941/3458/8372/51083/64135/2867/3783/2597/3689/7096/2207/6696/23586/10059/2219/3735/5208/3965/10626/1020/5047/6659/929/26191/5467/945/4282/6850/2692/64109/9474/7124/5027/3569/9545/56253/7097/3091/551/1956/7273/10125/164/3556/3596/3814/834/4192/7293/1080/1908/5724/1588/25874/3134/9367/7036/1147/8431/3558/55737/3623/885/24145/242/1814/4878/51744/1432/3552/382/55655/9971/1141/6714/64127/5481/8447/5019/134/84818/6845/10802/101/65985/5008/8027/2243/7855/156/51768/6363/2266/199/5478/1813/27183/5734/64083/3799/57824/7292/9255/1660/3745/65220/3586/11126/6346/43/192683/5873/552/7099/1361/3553/5781/6754/654/11267/7447/3651/3146/5608/2668/3133/2645/50855/5020/6386/6865/59341/2850/7879/8723/5879/6804/5028/8754/3684/11146/4825/6869/5715/177/3630/8673/3605/3916/79792/353514/81285/3717/9146/7040/668/846/376267/3661/5581/2244/23086/537/4155/5600/3098/114548/51762/186/965/9525/114897/55801/23435/4923/1906/51714/640/23332/2852/1436/7251/4089/6529/23765/26253/10015/5868/22900/135/23400/183/572/7430/27230/2822/5319/3566/8736/116/27159/55763/23607/6382/2587/2624/2695/8692/83786/4987/8398/25/23705/1385/22925/8600/7291/4986/27063/27131/3670/2771/11027/1579/22930/7110/3077/55540/2696/6711/5864/9173/2260/6810/4879/4824/56729/23601/6934/65018/1392/55691/1268/55512/2268/1910/4317/29108/783/22871/5532/23025/2150/6622/3624/6385/56848/9846/27243/5595/6532/22861/7424/6453/57506/408/10497/8660/11132/3567/2752/28984/4602/322/7474/2181/5590/947/2746/2149/54209/4628/5025/4887/4881/5021/9501/5029/7042/23122/6717/9854/57126/79679/283/54843/54795/23410/5950/727/55204/358/2691/6812/5874/4023/90865/3952/93664/3625/85477/7494/6387/8938/4035/6857/10631/55638/247/2697/9590/55107/7043/3357/6863/7349/79971/9607/3479/114899/18/776/25924/2922/2625
## GO:0036293 890/5163/891/1978/952/51378/133/768/4609/10397/5688/5709/1869/3654/5698/54541/7412/5693/1535/57103/1789/430/5713/3162/5721/5691/30001/867/5685/5024/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/100/10213/6513/191/3291/10059/23198/2792/6285/8751/7422/5315/158/5699/5714/6921/1788/6839/5467/27087/468/5702/9978/5165/4049/7097/5708/7852/1410/5743/5692/6262/4151/3091/3099/5704/3776/1536/100133941/9131/655/5683/3297/4504/1365/5034/4880/5967/6261/5694/3777/5366/5371/5718/5682/5351/5716/6422/360/5352/4878/5707/1137/7184/836/1179/54583/1141/10135/5058/6714/5696/3741/134/101/6868/5313/11331/5719/5700/2056/5328/7351/1813/4842/5717/7311/2113/6722/9361/26608/10197/8837/8453/677/2185/9777/4352/5706/51129/212/5710/218/23256/79723/2168/4193/81575/4851/4524/28996/2475/5978/25828/2627/5465/5689/5720/7015/784/6233/7316/5701/9491/4843/2782/329/50809/10891/6923/5711/3163/9463/5715/177/2021/7352/8996/3516/7314/9861/22953/207/7040/2033/5705/846/22933/2071/5581/5894/4780/4000/5740/55662/1803/7225/8994/1906/81/4323/4089/1263/405/64428/3779/317/64506/4976/572/7009/112399/5728/824/285/9475/387/10869/847/650/29988/6781/9520/26355/64344/7515/25994/3673/5664/1385/7291/27063/5066/571/4204/6095/863/22937/25950/10273/538/4824/5179/6517/2309/23576/472/7200/65018/23411/3709/7054/6546/51024/7057/5562/4985/2068/23409/6532/4763/6326/9915/2155/7157/4088/4017/6649/7010/1387/665/28984/94/6548/4602/1543/1027/1958/596/947/2034/79625/1490/9124/8678/5021/4194/7248/4929/7042/29997/7048/283/481/10370/210/50507/358/3952/3751/3778/5764/6387/1471/857/1909/10631/7043/5327/7049/18/10266/9370/3708/5105/8614
## GO:0055074 10874/3627/10563/6373/4283/6355/23413/952/6352/797/5026/3932/133/1230/8326/79734/7504/1236/55503/4067/6354/114/1535/63933/5336/11151/1043/5031/29887/1594/3351/30001/1812/578/30968/2830/1991/5024/5788/3062/1234/664/6375/8698/491/55858/8989/6357/55151/2780/1020/930/27032/468/3061/2805/9474/5027/2906/6262/348/10518/4644/7226/57214/551/525/23566/6376/100133941/3596/3814/356/1908/2280/887/958/2907/5910/6356/5967/6261/3777/7052/55636/8811/9217/2769/5371/117/10134/3558/729230/57402/8805/719/931/811/1649/1814/7184/56302/6368/9002/51196/796/9446/5579/7224/3741/920/134/5145/1729/3792/9170/55013/623/3710/59340/2911/2056/10800/6363/581/1813/4842/79568/5291/5294/773/5621/10939/10989/3954/10523/2185/5335/7137/27185/6346/9472/552/4308/2534/1604/7421/2902/22821/57192/3146/8048/9001/5566/793/1756/2740/1816/3358/5020/5777/2835/2904/2847/781/6366/492/80045/59341/784/488/7222/2782/5028/2785/5030/57053/6869/2969/55283/8996/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/846/4544/27/5581/5156/1742/302/487/3060/114897/304/6263/4923/2898/7225/9709/1906/51714/2852/7531/351/10312/2903/79054/57338/493/55584/23400/183/5023/7009/10672/5663/5319/116/3074/27020/1258/3064/54499/10345/799/624/2587/2624/57003/79085/6781/4987/8398/5741/8620/25/7178/63892/5170/8600/1815/1201/10367/55177/2905/2696/287/79608/25998/3356/3827/6543/1268/1910/3709/6546/118987/5310/9104/51024/2890/783/2150/6622/7070/3375/1760/221154/5158/23075/4088/825/490/10268/845/9256/2915/5745/7474/7466/7779/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/9900/540/5311/3270/6717/1902/1907/553/481/54795/53373/2247/2281/11346/7220/9365/2946/9247/477/6444/2099/6387/857/775/1909/4035/5350/2697/185/3357/6863/2053/776/3708/8614/7021
## GO:0001666 890/5163/891/1978/952/51378/133/768/4609/10397/5688/5709/1869/3654/5698/54541/7412/5693/1535/57103/1789/430/5713/3162/5721/5691/30001/5685/5024/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/100/10213/6513/191/3291/10059/23198/2792/6285/8751/7422/5315/158/5699/5714/6921/1788/6839/5467/27087/5702/9978/5165/4049/7097/5708/7852/1410/5743/5692/6262/4151/3091/3099/5704/3776/1536/100133941/655/5683/3297/4504/1365/5034/4880/5967/6261/5694/3777/5366/5371/5718/5682/5351/5716/6422/360/5352/4878/5707/1137/7184/836/1179/54583/1141/5058/6714/5696/3741/134/101/6868/5313/11331/5719/5700/2056/5328/7351/1813/4842/5717/7311/2113/6722/9361/26608/10197/8837/8453/677/2185/9777/4352/5706/51129/212/5710/218/23256/79723/2168/4193/81575/4851/4524/28996/2475/5978/25828/2627/5465/5689/5720/7015/6233/7316/5701/9491/4843/2782/329/50809/10891/6923/5711/3163/5715/177/2021/7352/8996/3516/7314/9861/22953/207/7040/2033/5705/846/22933/2071/5581/5894/4780/4000/5740/55662/1803/7225/8994/1906/81/4323/4089/1263/405/64428/3779/317/64506/4976/572/7009/112399/5728/824/285/9475/387/10869/847/650/29988/6781/9520/26355/64344/7515/25994/3673/5664/1385/7291/27063/5066/571/4204/6095/863/22937/25950/10273/538/4824/5179/6517/2309/23576/472/7200/65018/23411/3709/7054/6546/51024/7057/5562/4985/2068/23409/6532/4763/6326/9915/2155/7157/4088/4017/6649/7010/1387/665/28984/94/6548/4602/1543/1027/1958/596/947/2034/79625/9124/8678/4194/4929/7042/29997/7048/283/481/10370/210/50507/358/3952/3751/3778/5764/6387/1471/857/1909/10631/7043/5327/7049/18/10266/9370/3708/5105/8614
## GO:0045785 10563/29851/1493/6352/7037/3932/80380/55612/3559/6347/5645/8767/1236/25975/10859/3654/55423/3574/3575/4860/4651/4067/7412/9289/864/3458/959/11151/10562/942/3329/8876/3381/1991/10288/3689/5788/916/3383/6375/100/3600/3549/923/940/9806/939/5588/3965/9308/10808/1445/7422/865/10148/54518/4690/6850/246/10675/8013/7124/912/3569/5133/8772/8440/5795/10125/3071/3135/8808/6376/100133941/4192/655/7525/5724/9402/2651/55083/7052/54440/5578/3593/8651/3558/1785/729230/2932/3592/51571/9780/3109/811/5345/11006/6422/708/78986/6809/3170/1326/5058/6714/64127/51144/970/8291/2885/57091/920/402/3987/23308/1399/101/2243/941/10109/5970/3606/2056/8728/6363/1758/2266/199/10892/2113/7292/8740/2185/7448/11221/27185/3586/10385/566/11126/972/7535/7409/3707/3676/80005/1948/2534/3553/5062/1604/5781/2303/4838/2041/3146/3565/998/3133/9530/8861/335/5777/9093/9092/5063/6366/6657/3956/9840/3113/8943/1947/10076/3273/5879/975/1540/3142/8754/177/54566/55604/3655/1435/8915/3037/4284/2316/284/5290/207/3717/7040/51043/960/2319/6188/3678/5881/5581/50943/2244/59067/3115/114548/8826/301/22920/6281/6239/7189/961/1803/11148/10630/1949/2064/25890/1021/6093/6251/572/5979/3566/8764/80173/8874/3491/25865/4092/3594/30835/2039/387/3728/1398/7030/8995/59339/2736/51561/6708/9448/4301/1605/25/2294/10519/2335/288/3673/11078/5170/8600/9270/5420/5896/29984/6810/22890/8546/463/57669/472/57178/6777/6370/9647/8613/10725/3280/29108/9655/3611/7070/6385/9265/5530/10211/2013/8631/1960/4814/4088/5295/7010/4811/4739/5914/3373/4602/3791/604/7402/7474/5590/3685/4179/7168/79625/948/4887/8646/10272/3675/10085/7248/7042/1793/8829/7048/79679/201163/10370/1295/1012/6469/3485/3952/7494/4653/5764/6387/857/7704/54361/2737/3572/3479/4680/10451/1307/3169/2625/10551
## GO:0072507 10874/6280/6279/3627/10563/6373/4283/6355/23413/952/6352/797/5026/3932/133/1230/8326/79734/7504/1236/55503/4067/6354/114/1535/63933/5336/11151/1043/5031/29887/1594/3351/30001/1812/578/30968/2830/1991/5024/5788/3062/1234/664/6375/8698/491/55858/8989/6357/55151/2780/1020/930/27032/468/3061/2805/9474/5027/2906/6262/348/10518/4644/7226/57214/551/1956/525/23566/6376/100133941/3596/3814/356/1908/2280/887/958/2907/5910/4504/6356/5967/6261/3777/7052/55636/8811/9217/2769/5371/117/10134/3558/729230/57402/8805/719/931/811/1649/1814/7184/56302/6556/6368/9002/51196/796/9446/5579/7224/3741/920/134/5145/1729/3792/9170/55013/623/3710/59340/2911/2056/10800/6363/581/1813/4842/79568/5291/5294/773/5621/10939/10989/3954/10523/2185/5335/7137/27185/6346/9472/552/7782/4308/2534/1604/7421/2902/22821/57192/3146/8048/9001/5566/793/1756/2740/1816/3358/5020/23516/5777/2835/2904/2847/781/6366/492/80045/59341/784/8943/488/7222/2782/5028/2785/5030/57053/6869/2969/55283/8996/54805/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/846/4544/27/5581/5156/1742/302/487/3060/114897/304/6263/4923/2898/7225/9709/1906/51714/2852/7531/351/10312/2903/79054/57338/493/55584/7781/23400/183/5023/7009/64924/10672/5663/5319/116/3074/27020/1258/3064/54499/10345/10463/799/624/2587/2624/57003/79085/6781/4987/8398/5741/8620/25/7178/63892/288/5170/8600/1815/1201/10367/55177/2905/2696/287/79608/25998/3356/3827/6543/1268/1910/3709/6546/118987/5310/9104/51024/2890/783/2150/6622/7070/5071/3375/1760/221154/5158/23075/4088/825/490/26504/10268/845/9256/2915/5745/3736/7474/7466/7779/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/9900/540/5311/3270/6717/1902/1907/553/481/54795/53373/2247/2281/11346/7220/9365/2946/9247/477/6444/2099/6387/857/775/1909/4035/5350/25800/2697/185/3357/6863/2053/776/3708/8614/7021
## GO:0006874 10874/3627/10563/6373/4283/6355/23413/952/6352/797/5026/3932/133/1230/8326/79734/7504/1236/55503/4067/6354/114/1535/63933/5336/11151/1043/5031/3351/30001/1812/578/30968/2830/1991/5024/5788/3062/1234/664/6375/8698/491/55858/8989/6357/55151/2780/1020/930/27032/468/3061/2805/9474/5027/2906/6262/348/10518/4644/7226/57214/551/23566/6376/100133941/3596/3814/356/1908/2280/887/958/2907/5910/6356/6261/3777/7052/55636/8811/9217/2769/5371/117/10134/3558/729230/719/931/811/1649/1814/7184/56302/6368/9002/51196/796/9446/5579/7224/3741/920/134/5145/1729/3792/9170/55013/623/3710/59340/2911/2056/10800/6363/581/1813/4842/79568/5291/5294/773/5621/10939/10989/3954/10523/2185/5335/7137/27185/6346/9472/552/4308/2534/1604/7421/2902/22821/57192/3146/8048/9001/5566/793/1756/2740/1816/3358/5020/5777/2835/2904/2847/781/6366/492/80045/59341/784/488/7222/2782/5028/2785/5030/57053/6869/2969/55283/8996/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/846/4544/27/5581/5156/1742/302/487/3060/114897/304/6263/4923/2898/7225/9709/1906/51714/2852/7531/351/10312/2903/79054/57338/493/55584/23400/183/5023/7009/10672/5663/5319/116/3074/27020/1258/3064/54499/10345/799/624/2587/2624/79085/6781/4987/8398/5741/8620/25/7178/63892/5170/1815/1201/10367/55177/2905/2696/287/79608/25998/3356/3827/6543/1268/1910/3709/6546/118987/5310/9104/51024/2890/783/2150/6622/7070/3375/1760/221154/5158/23075/4088/825/490/10268/845/9256/2915/5745/7474/7466/7779/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/9900/540/5311/3270/6717/1902/1907/553/481/54795/53373/2247/2281/11346/7220/2946/9247/477/2099/6387/857/775/1909/4035/5350/2697/185/3357/6863/2053/776/3708/8614
## GO:0071900 983/55765/2146/891/1033/1164/993/990/5347/8792/1163/23560/10926/7345/8767/5871/641/6317/1029/3654/136/51191/4067/11184/8941/3458/959/2950/11314/2810/1031/9088/995/6283/1991/1019/5788/22943/84722/3735/1852/1464/7128/1445/51755/7422/7164/6789/8115/26191/4282/6850/5604/7124/1030/23636/5027/2048/7852/2180/5629/348/57214/3301/7039/1956/7186/54900/23566/5795/10125/26973/5149/100133941/79444/655/1908/5605/958/238/9500/1950/728/5610/10221/5594/7334/8091/5716/1032/10333/151/152559/904/5606/6422/1432/1849/63904/3326/5575/4914/57761/836/51196/1326/5058/6714/64127/6091/2688/56647/6788/2081/1857/8550/1050/11072/8851/1026/134/25793/1399/2043/2357/2914/101/6868/5997/2873/7855/2911/9261/6363/7311/23533/5291/8844/5294/896/894/4342/2321/7477/2185/11221/7023/4221/11329/5770/5602/972/4294/892/6647/8517/7099/3553/5781/4296/7074/60/10178/55924/6885/5608/64223/51654/3265/3843/9113/5155/5777/11235/9555/7016/5063/3845/6233/7316/2889/5148/10454/10114/5518/9175/10527/975/28956/7001/60370/2785/8754/1616/171392/177/22924/2074/4616/55011/10961/9518/4217/4040/9020/859/7314/7046/65125/10746/1845/207/3717/9146/4486/7040/5571/6188/8536/3084/5894/3156/9294/5609/28951/5600/5999/10019/8826/23162/7984/7189/5998/4041/80174/5585/1906/7867/1436/7251/2064/64853/11214/1654/493/51562/5154/221472/5979/5663/51495/4293/5319/1847/8812/10818/4331/5728/5470/79594/51347/11183/3064/387/1398/8682/27013/650/5515/29969/8692/7161/23118/2965/51776/3815/1647/25/10519/54956/25994/5576/9839/8600/23624/4215/5899/1815/8850/92335/10392/23043/1022/51763/57018/10595/9894/7405/5573/57498/10912/2260/8737/1850/10636/9623/4916/54922/5607/6464/3356/9064/5569/9344/5580/905/51422/23411/1856/7026/8491/3672/5310/8325/6609/9693/29108/8567/9802/7057/5562/3611/6622/7070/200734/2874/8649/154/23328/3315/5925/11140/5595/4763/408/51719/8654/4057/8322/28984/3082/10253/1027/1028/4920/27347/3643/7474/2322/4216/1843/2149/324/595/11211/54465/5311/80279/2246/4803/3087/57493/1902/727/2247/1848/50507/10614/4214/5577/25759/6653/4254/3480/4908/11213/5159/56892/857/2690/8817/81669/9077/4485/7786/7043/3357/57551/9607/150/3479/1846/9370/652
## GO:1903532 10874/4321/6664/5004/23413/952/55612/51311/914/8767/9447/136/8564/114/3495/2821/8941/3458/8372/51083/64135/2867/3783/2597/3689/7096/2207/6696/23586/10059/2219/3735/5208/3965/10626/1020/5047/6659/929/26191/5467/945/4282/6850/2692/64109/7124/5027/3569/9545/56253/7097/3091/551/1956/7273/10125/164/3556/3596/3814/834/4192/7293/1080/1908/5724/1588/25874/3134/9367/7036/1147/8431/3558/55737/3623/885/24145/4878/51744/1432/3552/382/55655/9971/1141/6714/64127/5481/8447/5019/84818/6845/10802/101/65985/5008/8027/2243/7855/156/51768/6363/2266/199/5478/1813/27183/5734/64083/3799/57824/7292/9255/1660/3745/65220/3586/11126/6346/43/192683/5873/552/7099/1361/3553/5781/654/11267/7447/3651/3146/2668/3133/2645/50855/5020/6386/6865/59341/2850/7879/8723/5879/6804/5028/8754/3684/11146/4825/6869/5715/177/3630/8673/3605/3916/79792/353514/81285/3717/9146/7040/668/846/376267/3661/5581/2244/23086/537/4155/5600/3098/114548/51762/186/965/9525/114897/55801/23435/4923/1906/51714/640/23332/2852/1436/7251/4089/23765/26253/10015/5868/22900/135/23400/183/572/7430/27230/2822/5319/3566/8736/116/27159/55763/23607/6382/2587/2624/2695/8692/83786/8398/25/23705/1385/8600/7291/4986/27063/3670/11027/22930/7110/3077/55540/2696/6711/5864/9173/2260/6810/4824/56729/23601/6934/65018/1392/55691/1268/55512/2268/4317/29108/783/22871/5532/23025/2150/6622/3624/6385/56848/9846/27243/5595/6532/22861/7424/6453/57506/408/10497/8660/11132/3567/2752/28984/4602/322/7474/5590/947/2746/2149/54209/4628/4887/5021/9501/7042/23122/6717/9854/57126/79679/283/54795/23410/5950/727/55204/2691/6812/5874/4023/90865/3952/93664/3625/7494/6387/8938/4035/6857/10631/55638/247/2697/9590/55107/7043/3357/6863/7349/79971/9607/3479/114899/18/776/25924/2922/2625
## GO:0001655 55165/6664/4318/8842/445/6772/4609/1063/10481/9688/5268/6715/6943/28999/5613/2297/2296/5471/9420/4953/55840/2253/4072/8549/56913/7380/2138/10247/10220/8710/7422/6659/2048/8772/5629/23210/9245/7490/2650/100133941/79902/655/79084/9500/10736/4357/1588/10018/1286/55083/3570/29927/1512/6422/5455/3975/4643/2049/384/2288/57122/51196/760/3237/3398/5017/3239/231/6599/359/6492/1399/2043/64220/9788/3579/9244/581/9350/3227/6608/5915/51107/8837/7477/10409/5727/7475/1948/6256/7917/93/2303/23279/654/1282/6569/4091/793/23322/2668/2302/5155/1636/3691/6495/9510/11020/10269/10413/6928/27023/7471/1739/3655/10972/4854/26585/3037/284/7046/7040/8879/11277/5156/10116/8826/7369/1285/186/26146/54475/23213/79810/3911/80144/4089/4358/4087/7849/51668/25976/317/2028/5154/26508/183/4326/79727/5979/10818/3217/5728/6382/90410/285/4092/3207/5324/4868/847/650/2624/2736/8692/7161/55366/2294/25937/5972/842/3976/5916/55746/51301/56998/5420/3764/4038/5800/8854/4090/2260/7827/6662/4824/38/59/64321/5076/56603/2828/2719/8516/4070/3280/2263/403/7020/5310/9104/8626/3611/25836/6385/7337/5175/4086/4763/54806/5228/5087/1499/25959/80000/4088/3399/6794/7010/2735/4811/3248/3371/5914/80184/1027/1028/182/4435/1958/6299/7474/7466/9231/596/947/10272/3675/7248/84159/7482/5311/26249/2246/10252/7042/4208/3400/9353/8829/5176/201163/8642/5950/4311/2247/9742/6469/1592/79633/2099/7481/5159/1396/116039/2045/7704/5125/54361/2737/65250/247/185/3913/9863/367/2200/1634/23371/80310/9370/2018/652/3169/2625/7021
## GO:0042110 3902/3620/29851/1503/26279/1493/6352/7037/2175/3932/80380/3559/6347/639/914/64581/8767/91543/917/924/1236/10859/55423/1051/3574/3575/4860/915/4067/7412/864/27240/3458/959/27242/11151/2841/3702/925/11314/942/1880/2529/30968/3329/8876/10288/1794/5788/916/3383/30009/6375/100/3600/3659/3549/923/940/3936/80758/939/4063/5880/5588/3965/9308/10808/1445/865/10148/5699/6659/54518/26191/4690/6850/9474/912/5027/3569/10875/83737/1378/5133/8772/7454/23210/8440/2213/5971/54900/10125/23240/8456/3071/3135/8808/1525/100133941/2000/4192/7293/4478/7133/7525/2280/9402/5591/6654/4277/5771/54542/11326/57162/54440/55636/4004/3593/8651/3558/6441/1650/729230/3592/51571/3109/8934/11006/29781/6693/384/6556/836/1326/5058/6714/64127/3662/926/8379/970/2885/7356/79865/920/23308/27040/101/3111/6868/941/7855/80149/3606/2056/3683/6363/581/199/5734/50856/10892/6722/8744/5294/896/677/5621/7292/8740/8324/11221/9306/3586/10385/11126/5293/972/7535/7409/1209/4627/3707/5873/6647/1948/2534/3553/5062/1604/5781/3718/5897/3146/10457/3565/998/51176/8809/3133/2475/2302/841/6194/5777/9093/9092/5063/6366/11119/3956/9840/3113/8943/1947/64919/5879/975/1540/7001/3142/11146/2796/177/3630/602/10945/29102/567/7471/1739/8915/3955/5290/1845/207/7040/51043/960/2319/6188/634/11277/50943/59067/6932/383/2267/3115/114548/301/7189/944/64218/961/1178/1803/11148/1949/5075/2064/23385/10312/26253/5074/6774/3981/135/1021/572/10803/5663/3566/8764/5316/56940/4092/3594/30835/387/149041/9750/6146/8995/2736/51561/6708/64844/3815/814/25/9580/5170/3958/8600/6304/6095/64343/3440/10538/2648/3077/5896/23598/9935/5573/538/6670/22890/8546/3714/56603/57178/6777/3456/3280/8325/29108/399/9655/5532/2150/7070/6385/5530/56339/1499/7157/1960/8654/4088/5295/6794/860/6778/5914/4602/100507436/604/1958/9231/57045/596/5590/4179/678/977/7248/11005/1235/4734/7048/79679/2934/3953/911/2281/6469/3485/3952/5618/7494/6097/857/7704/54361/2737/2615/23303/2697/6935/3572/3479/652/2625
## GO:0046677 6279/983/2146/8061/1978/8836/1894/3934/6772/7298/5111/6770/6715/51765/6354/7412/114/8372/26/2950/3162/3351/3066/51022/578/8877/867/3383/664/2539/7295/100/10213/8807/5831/10280/5603/939/8989/57817/7128/10105/8914/10287/3359/929/1788/23028/9076/2395/8013/3569/1410/4151/1663/7226/551/5536/1536/131/9131/3596/1080/1981/3297/1365/4880/10131/51167/2230/117/1147/140885/3558/113/328/5321/2742/1728/10097/249/836/1141/1233/6714/6688/2770/6531/7356/3309/9283/5019/3741/6507/65985/5997/2876/51319/3320/5970/80149/5660/1366/1813/2861/2113/109/51208/339/2185/64854/3586/9349/6647/7390/2806/4988/2534/2902/2168/4193/79001/23367/841/5245/1545/5155/5151/2904/11235/1440/2660/2775/130/3840/3747/10276/329/5516/4261/8754/1616/2796/6869/2021/4217/8428/3184/10765/9869/54840/3717/7284/6188/4233/5581/9314/4780/3156/11143/5999/383/11315/10494/7225/2741/1906/4968/1946/2903/5074/3779/6774/4976/5598/572/10400/116/3725/5728/824/6382/10013/4736/387/59338/10935/1398/847/8692/4255/374/23064/5741/25/1938/11179/842/3178/4986/1815/112/79813/6915/2059/5423/51150/8737/538/23135/4916/3716/5179/6517/70/2309/7200/5076/1571/598/65018/1392/7703/1268/55512/5580/55139/23411/3709/7054/6546/2263/5562/107/7337/7157/3399/108/6778/3248/10365/3371/6548/3082/5914/3373/4602/1543/1027/55364/1958/3043/558/3240/596/1843/1621/196/8678/595/3397/4208/2308/2934/1277/5950/4747/210/2281/1393/358/3952/761/10628/51157/5159/1471/1396/388/57332/6678/1191/8639/1036/18/80310/4129/9370/2625
## GO:0002521 3902/8544/4318/3149/26279/8792/1493/7037/2175/56833/3932/3559/1230/639/914/8326/4609/8767/91543/1236/10859/1054/4830/1051/3574/3575/4860/915/22806/4067/7412/864/55365/3458/959/5336/5449/3930/2841/29887/4436/28959/942/1880/2529/578/8876/10288/1794/5788/916/30009/2207/100/3600/3659/3549/940/80758/939/4063/3965/9308/1943/7422/865/5457/930/6659/142/26191/6850/9474/7124/912/3569/7097/1378/8772/4055/23210/7226/5469/2213/1053/5971/5795/10125/9770/23240/8456/3071/3135/8808/79705/4192/1380/7305/3059/10221/5591/6654/5771/54542/2101/9734/4495/3175/6927/54440/55636/5578/3593/8651/3558/9760/729230/3623/3592/3428/3589/931/11006/29781/6422/6693/1432/64806/4914/2778/973/760/3662/6688/8563/10320/3398/1316/2124/920/1050/3635/10456/695/25793/64421/101/3111/6868/941/7855/80149/3606/6363/581/5734/55509/10892/6722/677/7292/51208/55795/8324/325/5657/2185/11221/2194/3586/10385/5293/972/7535/7409/1209/3665/3658/4627/3707/3676/6647/7099/3718/7301/55294/5897/3146/1015/3565/998/51176/8809/7163/2475/2302/2739/841/222487/6194/5777/9093/8451/1440/9092/5153/3956/9840/8943/4242/27102/64919/975/5452/1540/7001/3142/10461/171392/177/3605/602/10945/9398/29102/567/6929/7471/1435/3955/10193/3516/23529/1969/6988/7040/51043/2033/634/4189/50943/3726/537/6932/3688/23228/114548/301/302/7189/6886/64218/1437/22904/5196/2623/4323/1436/5075/2064/351/10312/26253/6774/3981/1021/572/10100/2323/10803/5663/81501/3566/5316/5048/3725/10766/4853/4092/3594/28962/51341/387/5458/7030/149041/6146/2624/2736/51561/3815/814/25/9580/1385/8600/3976/6304/55619/56998/6095/863/7098/64343/22985/3440/10538/2648/5896/23598/9935/57379/6237/8737/538/6670/22890/8546/7071/3714/472/9644/56603/57178/6777/25979/2242/29760/3456/2719/23411/4286/9730/11334/8325/10014/399/9655/5532/2150/3624/2874/9846/3204/5925/10401/56339/4763/9759/1499/7157/1960/4057/5295/6794/55846/860/6778/3567/54856/5914/4066/4602/604/4920/1958/54997/2322/558/596/5590/4179/8840/54209/10272/678/7248/11005/2488/1235/9452/3087/4208/7048/9855/2353/3953/5468/6469/27434/3952/4254/7494/2621/6097/7704/54361/2737/6935/10202/2200/9607/284266/9370/652/10234/2625
## GO:0031589 4321/10855/3695/9928/57348/2633/55612/6614/1236/25975/1029/3897/7412/23603/5613/11151/10562/10225/3689/916/9806/5880/4771/8751/7422/1020/2824/5467/246/8500/10675/5795/79834/6376/4192/5054/2651/88/2047/1305/10018/3175/3674/4585/1785/2932/811/6422/708/2049/5747/6714/51144/57091/402/3987/1399/7414/5340/4289/2243/11170/8573/10109/5328/3683/1758/2266/6722/5291/2196/8324/8394/2185/7448/4221/27329/4241/27185/4617/3676/80005/7074/5861/7301/5829/2041/4091/51330/4851/998/8861/335/4287/3691/9480/6366/3956/3273/5879/2017/8754/10461/5796/7471/55604/3655/1435/26585/3037/56999/2316/284/1845/3717/960/3678/5881/5581/2244/7791/3688/683/50488/11093/8826/89/1896/6281/23380/6239/967/8174/10630/79778/3911/1946/23332/81/4323/87/1613/25890/10894/1021/6093/6251/81792/56940/8874/395/7205/6904/5728/3491/285/55966/9475/2039/387/84168/3728/1398/59339/9448/3690/26515/1605/25/2294/10519/2335/3673/11078/5170/9270/8499/56672/29984/7007/5800/55435/50624/57669/10395/6370/9647/9344/8515/8516/4070/3672/5310/7057/54828/10174/23499/3611/3915/7070/23189/5921/6385/3204/9341/10420/5175/4763/1499/3232/2013/8631/7059/9748/4814/4088/5295/8322/7010/4811/94/4739/6548/3791/22998/604/182/7402/558/7450/596/5590/947/3685/1942/79625/948/1490/4887/3675/10085/7248/10979/8910/3912/1793/51754/23122/3397/8829/2042/1277/2241/22795/10516/1295/10580/6695/1012/55742/2192/1281/83700/50509/3693/2621/4653/5764/11117/10391/4035/54361/1842/10631/347/63923/25992/4059/3679/9723/4680/1307/1308/10551
## GO:0001501 6664/4318/5307/2019/7298/50515/8200/10859/6715/8372/2296/8092/1302/9496/2253/1749/1116/10507/7468/7398/5788/5479/11173/10682/1834/3696/3549/7004/7353/5447/3638/2251/5052/2138/4522/2254/10220/257/55151/6659/4188/4781/7480/9775/5027/9061/3091/3950/1240/29123/5469/9770/10683/79705/6862/4192/655/7305/10736/4880/6261/176/2101/6949/265/1305/9421/55636/79977/3623/8091/79648/56955/51320/54/6422/3975/1432/9060/54928/2778/249/10006/60529/2688/3239/6197/4883/651/53/5081/202018/5970/1954/3636/5251/9350/5734/2131/3227/6722/5915/353500/7067/7477/51208/80739/871/5079/4617/5305/1044/11061/7289/2134/5781/7421/93/2303/5636/656/55294/654/4838/10498/3219/79001/2734/4665/3238/7476/5777/6615/6660/7045/2201/6495/59341/3203/64764/10269/27302/3198/9451/6899/3236/7471/653/1739/27173/26585/3037/4209/1969/56914/7046/7040/2033/960/8879/3211/22856/6473/537/197/65992/8575/60676/657/4664/51741/5156/10019/2313/302/6886/4041/54475/9249/23213/9968/55870/1906/3235/7066/2658/4323/5075/4087/11214/9573/3224/2249/3226/51668/6497/2767/23508/23169/649/25976/57599/27230/5663/2822/10163/81792/5048/3217/3074/92/3491/4853/3207/387/4094/3206/59338/6169/650/5308/6259/2736/51360/64175/8692/1310/6781/3200/3815/5741/171023/659/7076/10743/51715/8600/9464/7291/5916/8195/56987/1893/5358/80199/4090/3231/2260/538/4325/55790/7092/6662/6670/6399/2022/1750/3714/6474/83452/56603/7703/9321/3222/55512/1112/64131/4015/4762/3218/6939/54903/2268/415/51141/29072/2263/7020/5310/2114/9104/51222/8626/3199/1298/579/399979/124565/3204/4086/2702/5595/54799/9759/166/5087/1499/3232/7157/23314/7059/10265/4088/10522/4057/4017/7010/860/3221/4882/94/2662/5914/3373/5745/1301/3215/1028/5191/4211/4920/7474/54808/6468/8840/1490/1280/8646/80169/3213/3202/2261/3223/4256/84159/7482/3216/7042/4208/4322/3212/5396/6694/1278/7048/80263/4060/8642/56172/1277/5549/5950/2247/6591/9742/6469/1281/54360/57728/7227/81029/3952/1513/4488/79633/1009/2202/4313/56034/85477/4856/7481/4653/116039/5364/8817/6678/7704/55112/5125/4487/658/2737/5744/2121/2487/1746/2697/7043/6935/4982/1300/2200/6926/3479/6424/284266/1311/652/4148/1101/10234
## GO:0072503 10874/6280/6279/3627/10563/6373/4283/6355/23413/952/6352/797/5026/3932/133/1230/8326/79734/7504/1236/55503/4067/6354/114/1535/63933/5336/11151/1043/5031/3351/30001/1812/578/30968/2830/1991/5024/5788/3062/1234/664/6375/8698/491/55858/8989/6357/55151/2780/1020/930/27032/468/3061/2805/9474/5027/2906/6262/348/10518/4644/7226/57214/551/23566/6376/100133941/3596/3814/356/1908/2280/887/958/2907/5910/4504/6356/6261/3777/7052/55636/8811/9217/2769/5371/117/10134/3558/729230/719/931/811/1649/1814/7184/56302/6556/6368/9002/51196/796/9446/5579/7224/3741/920/134/5145/1729/3792/9170/55013/623/3710/59340/2911/2056/10800/6363/581/1813/4842/79568/5291/5294/773/5621/10939/10989/3954/10523/2185/5335/7137/27185/6346/9472/552/7782/4308/2534/1604/7421/2902/22821/57192/3146/8048/9001/5566/793/1756/2740/1816/3358/5020/23516/5777/2835/2904/2847/781/6366/492/80045/59341/784/8943/488/7222/2782/5028/2785/5030/57053/6869/2969/55283/8996/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/846/4544/27/5581/5156/1742/302/487/3060/114897/304/6263/4923/2898/7225/9709/1906/51714/2852/7531/351/10312/2903/79054/57338/493/55584/7781/23400/183/5023/7009/64924/10672/5663/5319/116/3074/27020/1258/3064/54499/10345/10463/799/624/2587/2624/79085/6781/4987/8398/5741/8620/25/7178/63892/5170/1815/1201/10367/55177/2905/2696/287/79608/25998/3356/3827/6543/1268/1910/3709/6546/118987/5310/9104/51024/2890/783/2150/6622/7070/3375/1760/221154/5158/23075/4088/825/490/10268/845/9256/2915/5745/7474/7466/7779/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/9900/540/5311/3270/6717/1902/1907/553/481/54795/53373/2247/2281/11346/7220/2946/9247/477/2099/6387/857/775/1909/4035/5350/25800/2697/185/3357/6863/2053/776/3708/8614
## GO:0051222 10874/4321/5004/51512/1894/952/55612/51311/914/8767/9447/114/3495/2821/3458/9585/64135/2810/2867/3208/3783/9141/2597/7545/3689/7096/23586/10059/2219/3735/5208/10541/5880/3965/10626/999/1020/5047/6659/929/26191/5467/945/4282/6850/64109/7124/5027/3569/8882/56253/7097/5743/3091/57214/5901/1956/7273/10125/3556/3596/834/4192/7293/10055/1080/55741/3059/5594/57602/25874/10134/1147/8431/3558/55737/2932/24145/8934/51744/1432/3552/54471/64328/382/7332/55655/9971/5058/6714/6721/64127/5481/8447/5019/8851/84818/10802/208/101/65985/5008/2243/7855/80149/51768/6363/2266/1459/199/5478/1813/5734/64083/3799/6608/57824/5621/10155/7292/1660/3745/65220/2010/3586/11126/9777/6346/43/192683/7099/51100/2534/3553/59286/55294/654/10178/4193/7447/3651/3146/5566/4946/3133/2645/50855/3265/3843/7175/10075/11235/59341/7323/2850/784/51160/9776/5879/975/8754/3684/11146/4825/5715/177/3630/3605/79792/353514/23379/2316/11261/5296/81285/3717/7040/846/3661/8536/5581/2244/23086/4155/5600/3098/79752/55754/114548/186/22994/7984/2931/965/55801/23435/79778/640/2852/27429/1436/7251/2064/1263/7531/23765/8314/5116/26253/4947/22900/8841/63928/135/23400/572/7430/5494/27230/5663/2822/5319/3566/8736/27159/55763/23607/89781/3728/2695/8692/79567/83786/9520/8398/25/10519/23705/288/10425/55823/51366/7291/9270/27063/3670/11027/9531/55540/55781/2696/6711/26229/9173/6810/23601/6934/2040/9695/65018/1392/55691/5580/2268/54741/4641/56947/51024/4317/29108/54828/5532/2150/5562/5595/22861/7424/7157/57506/408/4088/10497/8660/11132/5295/3567/2752/28984/55696/22902/80184/322/7474/2181/5590/947/2746/2149/54209/4628/9501/6844/7042/23255/9847/6717/9854/79679/283/54795/23410/5950/727/79899/55204/10411/5108/6469/4023/90865/3952/6653/7494/2621/3305/8938/4035/2737/10631/161291/55638/247/2697/9590/55107/7043/3357/79971/3479/114899/18/25924/5174/22885/2625
## GO:0099177 991/23413/952/7804/6347/6770/136/8564/114/1138/321/5641/3351/2171/9145/1812/10288/5024/575/22943/10059/409/6285/999/1020/7143/9456/57282/10675/8224/9775/7124/2048/613/2906/5743/348/1956/1959/23657/6376/3814/7305/10755/1143/10814/28964/5594/2047/5923/8898/1142/5582/23467/729230/2932/9148/1814/6344/1137/7533/6780/5575/4914/6809/1977/54583/1141/7101/760/6714/11178/91683/2770/5579/6855/774/2895/134/6507/5217/23349/2043/3710/11170/8573/4900/1813/8878/8541/3799/6722/22997/4761/773/5621/2185/3274/3745/64854/55607/5335/27185/43/2534/3553/2902/9515/1269/50944/41/9001/5566/54413/1627/4218/1816/2668/2475/594855/54476/5020/7476/3265/869/2904/23316/8766/6865/5332/2332/9699/3845/6853/784/488/23154/1607/6343/6804/5028/23208/3706/6616/5030/25897/6869/9463/177/3630/23373/5865/54434/23191/815/148/23394/3766/22941/3717/5908/23542/5581/1979/9294/3688/5999/23228/5906/5270/1742/9610/9783/6455/3060/2899/4923/2898/3269/4889/1906/1949/816/2852/6529/23385/320/351/2901/27253/4355/2903/57338/26012/5868/1861/10458/22999/6774/23096/135/9465/183/5023/6623/253980/5663/23237/11252/347733/116/1136/27020/5728/1855/22854/23613/2693/6146/27345/6900/2695/3815/3749/8398/1759/25/1385/1815/2771/9211/1630/4204/22930/8973/2648/2905/5864/57406/9378/10636/6810/55288/5913/56729/5649/3356/65018/1392/6543/1268/5786/23236/5802/2982/9101/10858/4884/766/9693/8526/2890/783/22871/5532/23025/6622/4130/5071/22986/2897/27091/154/1760/107/27065/5530/6532/4763/9581/10211/4131/4776/10497/2752/29882/23621/5914/2915/29/4920/1129/7779/5590/2149/4887/9627/5021/10142/26037/4885/25837/9162/6843/6844/79772/5334/590/2259/4208/22849/26045/4311/6812/11346/5577/477/1009/27092/10769/5764/3908/8938/4915/11188/6857/55638/9590/6863/5327/7349/9254/18/776/9370/57502/4137/1524
## GO:0050804 991/23413/952/7804/6347/6770/136/8564/114/1138/321/5641/3351/9145/1812/10288/5024/575/22943/10059/409/6285/999/1020/7143/9456/57282/10675/8224/9775/7124/2048/613/2906/5743/348/1956/1959/23657/6376/3814/7305/10755/1143/10814/28964/5594/2047/5923/8898/1142/5582/23467/729230/2932/9148/1814/6344/1137/7533/6780/5575/4914/6809/1977/54583/1141/7101/760/6714/11178/91683/2770/5579/6855/774/2895/134/6507/5217/23349/2043/3710/11170/8573/4900/1813/8878/8541/3799/6722/22997/4761/773/5621/2185/3274/3745/64854/55607/5335/27185/43/2534/3553/2902/9515/1269/50944/41/9001/5566/54413/1627/4218/1816/2668/2475/594855/54476/5020/7476/3265/869/2904/23316/8766/6865/5332/2332/9699/3845/6853/784/488/23154/1607/6343/6804/5028/23208/3706/6616/5030/25897/6869/9463/177/3630/23373/5865/54434/23191/815/148/23394/3766/22941/3717/5908/23542/5581/1979/9294/3688/5999/23228/5906/5270/1742/9610/9783/6455/3060/2899/4923/2898/3269/4889/1906/1949/816/2852/6529/23385/320/351/2901/27253/4355/2903/57338/26012/5868/1861/10458/22999/6774/23096/135/9465/183/5023/6623/253980/5663/23237/11252/347733/116/1136/27020/5728/1855/22854/23613/2693/6146/27345/6900/2695/3815/3749/8398/1759/25/1385/1815/2771/9211/1630/4204/22930/8973/2648/2905/5864/57406/9378/10636/6810/55288/5913/56729/5649/3356/65018/1392/6543/1268/5786/23236/5802/2982/9101/10858/4884/766/9693/8526/2890/783/22871/5532/23025/6622/4130/5071/22986/2897/27091/154/1760/107/27065/5530/6532/4763/9581/10211/4131/4776/10497/2752/29882/23621/5914/2915/29/4920/1129/7779/5590/2149/4887/9627/5021/10142/26037/4885/25837/9162/6843/6844/79772/5334/590/2259/4208/22849/26045/4311/6812/11346/5577/477/1009/27092/10769/5764/3908/8938/4915/11188/6857/55638/9590/6863/5327/7349/9254/18/776/9370/57502/4137/1524
## GO:0061564 5080/4902/9355/6712/7345/7504/1719/3897/3925/9046/2676/2297/27242/5459/2253/1749/10507/55079/9048/575/706/3475/7473/6696/10381/6285/80128/5588/1951/7422/5457/1020/7143/4781/5604/8013/8882/9334/474/2048/7852/2886/348/3996/23566/2011/1959/11202/655/1123/4504/5594/6654/2047/5623/5578/1496/3984/1785/51393/2932/6277/885/25806/3975/6792/3326/2049/10048/4914/56288/836/10678/5747/1141/7101/5058/2637/23114/6714/6091/2885/2896/7224/1267/8851/8828/2043/393/7414/3792/7408/2636/10371/4133/3320/1954/1002/1813/6710/2131/10479/6722/5291/6049/26257/4917/10939/2348/8153/5335/27185/5293/4099/5818/5727/55118/3676/2534/5792/5781/7074/2902/6683/25987/6993/886/11313/51330/54413/53358/4218/2668/7436/11344/7476/335/64096/55558/23242/8766/22954/5063/2675/396/55740/1826/10090/64919/9175/81565/2017/2044/5306/4825/2887/8239/55816/9860/6477/27023/23191/4168/4897/9798/1400/8428/23394/5290/8301/1600/3717/10716/2664/9314/10500/55715/3688/8022/23162/8578/10494/64218/7080/1949/1946/1436/51199/2064/4089/351/6324/57142/84612/9331/23011/10458/1382/5598/7430/10100/5979/5454/5663/6152/347733/104/5048/10818/3725/5728/1855/23105/10013/22854/8482/387/5458/10439/6259/2736/23334/6708/6900/4983/1605/659/9260/25/6498/9637/2335/7976/288/9839/5803/1385/2258/4684/23271/10505/4974/4756/3670/8650/9423/9211/1630/2549/2115/57698/4038/6711/5800/23032/5909/9378/4916/1808/6464/5649/1495/6474/22876/7155/5076/2909/1268/9344/5786/4548/5802/6405/79600/9706/2263/23077/51332/51761/5532/23499/79006/3611/3199/57556/7070/26053/8929/9846/107/5595/8609/10211/9638/29956/4131/627/8660/23767/5295/6794/29882/3371/22902/322/7474/1796/9024/596/23111/9252/1942/4804/2803/4628/8633/6586/66008/26037/4929/4685/4692/5797/4803/219699/2817/6709/9353/8829/2042/323/57731/7869/4747/2281/4744/6469/6812/64221/80208/83700/9037/1009/9201/9369/22906/9499/5764/6387/2674/56920/10512/3908/2045/4741/4035/4915/658/2737/3800/10752/3730/23303/347/214/63923/3913/51466/4137/2625
## GO:0043410 8685/6278/983/55765/2146/8792/65009/1230/5320/8767/5871/1236/3654/136/11184/959/9258/5031/2253/1880/8877/1116/6283/1991/5788/3383/22943/3735/409/1852/9618/939/1652/1464/2254/3965/1445/7422/147/3276/7164/26191/6504/4282/3061/6850/246/5604/7124/5027/3569/2641/7852/4055/348/1000/64170/7039/1956/7186/2213/23566/5795/10125/9770/5149/6376/100133941/3814/79444/1908/5605/958/238/9500/4504/1950/728/5610/56005/5594/55024/2651/2264/5578/7334/26291/2626/7498/3589/10333/151/5345/5606/242/155/1432/1849/4914/51196/1326/5058/6714/64127/6091/2688/6788/2081/152/1857/9283/920/8550/2358/134/1399/2043/2357/2914/101/5008/11331/2243/10371/55532/7077/7855/2911/80149/2056/5660/9261/6363/27035/2266/1813/2861/7311/23533/5291/8844/5294/4281/4342/8837/2321/7477/8324/2185/5770/5602/2492/972/4294/6647/8517/7099/3486/64762/4988/3553/5781/4296/7074/55294/6754/673/4838/10178/3146/6885/10457/4851/5608/3358/28996/5245/3265/51384/5155/5151/6386/11235/5063/6366/6657/59341/3845/6233/54910/7316/2889/5148/10454/9175/975/50937/5028/28956/7001/60370/2785/8754/1616/177/3630/2074/4616/55816/6899/54550/10961/9518/60401/353514/6014/4217/148/9020/284/7314/26281/7046/10746/3717/4486/7040/85363/960/846/5908/6188/23542/3084/5581/5894/2244/8312/537/3156/9294/5609/27202/5600/5906/50488/5156/8826/23162/7984/7189/10494/114897/55801/29937/5585/4889/1906/25778/7066/7867/9821/2852/1436/8074/2064/11214/351/2249/5154/6093/221472/5979/5663/51495/4835/4293/5319/1847/116/10818/27020/3725/5728/25865/4853/9475/79594/51347/11183/8482/1398/8682/799/650/6259/29969/7161/23118/51776/3815/1647/25/10519/9839/858/2324/8600/9464/112464/3976/4215/4986/1815/10347/2771/7098/10392/23043/10595/57498/1687/10912/2260/8737/4916/5607/6464/3356/9064/9344/5322/23236/1856/8491/2263/3672/8325/9693/8558/4317/29108/8567/7057/10174/2150/5562/3611/8649/3375/154/23328/5595/10550/1499/408/8654/8322/7010/23286/10268/3082/10253/3791/4920/27347/3643/7474/2322/5590/1942/4216/2149/948/1490/54209/11211/2261/2246/4803/7042/1902/8829/727/2247/1848/9867/50507/57608/57007/4214/9365/3952/25759/4254/2621/4908/5159/2690/8817/57161/4035/4915/9590/7786/7043/3357/57551/3487/367/9607/150/3479/652/2066
## GO:0019058 7153/27074/3669/983/6355/3695/3576/9636/6352/7037/59272/4599/10663/200315/6347/79581/3838/91543/3429/9688/6590/6317/4938/4940/8372/9712/8638/942/8547/5359/9631/5479/1234/3383/5806/940/2219/4360/6510/3434/3965/6396/6732/23165/7913/6404/6504/9076/55706/8815/9474/7124/22880/23636/83737/7852/1378/5629/348/5817/7415/5901/1956/60489/1525/79720/4927/79902/7293/1380/26986/27350/10762/5034/5610/5119/1642/8480/11097/10450/9217/5371/26762/8091/3428/200316/9972/8934/10465/81929/9074/50848/9126/89870/3326/6780/1508/57122/9080/2993/27336/5886/5481/7514/79023/55065/9397/3837/920/9818/3839/684/3949/941/3694/156/949/80149/5478/7311/27183/29883/23511/3836/10155/7726/3416/325/5093/7706/5818/972/3609/1656/1948/5987/1604/11074/5861/7301/23633/6993/23279/11267/51510/8468/998/89853/23367/10572/5045/8724/7175/8411/22954/51193/2332/10332/10542/3956/51271/6233/7316/51160/25978/7879/23225/975/56829/8673/81876/3916/8021/53371/6598/9798/1969/7314/9869/103/85363/3678/4928/64710/5091/3688/6895/6733/1655/11060/9525/1803/8086/6737/1949/5586/10107/7251/91782/57132/1654/4340/10015/10475/5868/4864/9883/5297/7113/29082/51495/104/8764/8812/9218/5288/55337/24138/9475/950/30835/2838/5903/8692/55196/3690/348995/1605/10318/3673/858/1487/1488/4684/79643/55746/55048/51763/3440/7405/5094/8519/201626/11043/55223/7342/2060/5819/64848/23601/3356/6554/7155/2040/3456/5071/27243/6575/10206/54737/57506/4057/3373/63901/23272/558/596/3685/10410/4179/11059/6041/2934/2494/81603/10581/3693/2621/23327/857/25827/290/5125/131578
## GO:0072594 3002/4321/1894/55612/22948/3838/55506/1869/6496/5194/3458/23480/908/2810/1812/10576/9141/7545/637/3009/706/7027/56993/7534/5880/7128/2254/10440/999/10469/10531/7159/6850/10452/54363/23636/8882/84268/5743/6262/6731/3099/3301/5901/570/5469/7203/79711/51268/10055/9221/100287932/3920/10574/10736/675/3059/51501/3587/5594/10575/57602/4792/10018/7321/5366/5371/29927/3417/55750/9868/10245/25813/5830/6227/1649/6132/10971/1432/7533/26521/2646/7332/26517/23534/10856/6721/5534/65057/6142/3309/7029/6202/6223/3837/9049/9818/1026/10456/5514/25793/6845/55486/3839/10005/11331/7855/3320/80149/9670/581/1459/79035/7311/27183/5264/79568/51025/11231/6608/6734/10155/3416/10953/9349/189/26519/51100/23471/23203/9179/6181/59286/64089/55670/6156/55294/10073/7529/6217/9530/841/11224/293/10694/6206/1610/3843/6194/6728/7175/10075/3998/8766/9555/6235/51079/26520/6230/5599/9478/196743/6175/23514/7015/7323/6158/6201/6233/7316/51160/7879/51/4843/9776/57154/3840/868/6747/6187/6729/55011/6170/8239/23600/3916/53371/6143/9804/6134/6176/2316/284/11261/5828/5296/754/7314/64901/8540/207/9146/7040/5192/6188/6192/55705/4000/3098/1962/51762/186/51172/6193/2931/6129/6147/23435/6222/1891/79778/6208/27429/8720/6210/7251/55135/6232/7013/4358/6204/7531/8314/373156/6726/8443/6229/6228/6774/9409/29082/51179/8841/6167/6155/55764/63928/6128/183/572/5663/6152/6171/6161/6133/283927/93974/6160/5189/7322/6141/3308/79158/950/89781/4736/9697/3728/6191/6234/6169/6146/847/5195/6165/6203/5903/29969/8692/7161/6122/6136/6209/9520/26515/9927/10425/55374/6727/55823/51715/8031/25873/51366/6164/23368/6231/6205/9531/6135/22930/6168/11142/3842/5533/6342/4836/8546/7249/26063/130916/7095/5190/6157/112869/23417/5569/65018/6138/5580/406/8504/54332/54741/25913/56947/51024/55825/9045/5562/8626/54469/30/6159/5071/5824/26060/51520/5530/23409/4763/9648/7157/57506/4088/5295/665/55696/5191/596/81854/948/11001/64112/4734/29928/3155/9765/1384/5193/8310/55198/6469/3952/3295/6653/10628/6720/8528/3305/10455/1191/2737/8309/347/54677/2053/652/22885/4137
## GO:0050769 6280/259266/5080/2146/6664/4821/1894/6663/7804/339479/65009/712/1482/8437/5365/1869/8200/6770/54149/3897/4830/4067/1789/9585/3066/10507/55079/7336/274/60436/706/7473/22943/10059/7422/8997/23028/4690/5604/7124/3569/4049/7097/474/2048/7852/5629/8904/348/3091/23566/2011/6376/9373/84079/4192/1981/655/91752/7133/238/411/5967/50674/9362/57118/3984/3558/51393/729230/5597/80237/151/9148/6792/4914/10097/54606/5058/6091/3398/55906/2896/23531/3309/152/7224/1857/1399/2043/6845/10215/5997/84298/7077/5970/1954/2056/1002/1813/6009/10300/6722/6608/3065/5915/4761/8837/6457/5501/8153/2185/5584/51704/55607/27185/81544/4099/4076/4988/2534/3553/7074/50944/10419/6993/654/9001/2119/51330/1627/4851/2475/5978/7436/11344/27339/8724/5526/23242/23316/8766/22954/2332/5063/9699/56965/396/63925/1826/2889/1406/57154/64764/9175/81565/50937/9043/3706/23654/10362/4825/9897/177/23373/4058/51657/6929/23191/653/9181/3655/1435/6014/4897/9798/5587/51593/23394/23529/2316/26281/4760/1600/22938/1523/7040/2033/7520/23060/8536/27/2664/4780/55754/5906/5270/1742/8826/9820/8578/10494/7225/6692/5121/816/1946/2852/51199/23376/351/6324/1453/4673/26012/23011/10458/22999/1382/3981/26508/4976/183/79727/5979/5663/347733/116/54664/10677/6604/5048/27020/57165/5728/1855/5754/950/54700/79594/5324/8482/387/5458/23613/650/2624/2736/64175/7161/3815/23064/1605/8175/659/11141/6498/127833/2335/7976/9839/23013/5803/5583/429/3976/27063/8650/9423/50618/57698/9896/57498/9139/2260/1454/10636/4916/51517/7516/5649/6474/2909/5789/1268/2242/23363/4762/23081/1856/3280/9693/51761/22871/23499/23025/79006/3611/25836/5071/8929/466/8321/23405/7424/1499/6453/9638/3232/4131/162427/627/22891/8322/6794/8648/4124/29882/22902/3082/5914/4602/604/55364/322/7474/81545/9231/596/26011/79625/54209/4804/2803/5025/23426/3675/80823/4803/1809/65981/4208/11075/22849/9353/1902/8829/2042/5176/5753/4747/4311/2281/5468/8835/1272/6469/4681/9037/5274/22906/6925/5764/6387/23327/443/4674/4035/4915/2737/6857/1746/6935/9863/3572/55714/51760/652/4036/4137/3169/1524
## GO:1901615 29968/3613/1001/1717/4597/23007/2643/5341/6319/6713/3973/29881/6770/4948/6715/1719/3948/3458/57103/51302/341/8435/5336/3422/5449/3930/9420/5031/1594/6870/27235/5641/2584/2304/57016/1812/8877/2224/10449/3689/8608/6783/10682/239/2539/1644/50814/5447/3638/8566/5208/1652/6646/219/50700/3251/39/5467/79071/246/1312/51805/8813/2805/7124/54363/50506/221/5629/348/3091/4644/5901/570/5469/51700/23657/131/27284/1080/10755/5724/1119/4504/3157/1588/2264/2230/8811/8898/117/8431/55737/5360/5444/3631/2820/8647/1056/1814/51744/79644/54928/2672/2784/9971/51196/1141/6121/6721/1593/5805/1109/6307/6531/8291/231/3837/1050/120227/7274/3635/8542/10327/10005/57380/10948/2710/3949/949/10577/3636/54982/1813/2861/4800/1798/1071/5409/4142/6822/2055/2185/2194/5335/23780/1591/27329/337/6718/3707/6647/4051/6256/4598/3553/7421/64768/654/6569/3565/4802/9885/8694/5978/7436/1585/5331/1181/1545/1610/128/7299/335/9784/6615/1645/27163/5332/5153/1646/9108/10170/434/130/1638/2222/5028/3706/47/3684/1583/80025/4047/23600/653/3705/6528/80168/51109/26031/4952/19/3293/53630/10558/1727/3612/10613/6620/4157/5053/3029/3156/27120/114881/80271/11315/186/89/3633/7555/8578/8867/6490/9249/9517/4923/81537/3269/7038/2852/8720/4790/8074/7849/351/6820/1609/51477/5330/2903/4864/9227/9562/1497/55163/3069/5728/3628/51588/5007/3642/1584/847/650/51360/56623/8574/3815/5092/5741/314/8912/124/7306/9839/6652/9464/1815/51301/9619/4204/1579/9651/22937/10404/11163/51763/53905/8854/283871/6342/4801/2260/6697/319/538/338/217/3990/220/31/10654/1734/1576/7276/6667/8029/23236/51573/51422/23411/10858/51141/5333/26119/7054/10998/6609/9693/222/4779/55825/5562/7108/30/6622/5071/114883/26060/56848/6716/11160/9453/9807/1718/7157/6799/51151/5563/55190/37/224/51478/2712/23262/51447/5745/54884/1543/427/4435/7173/7474/3350/596/3632/3067/2034/8644/51706/55911/3931/1621/9627/4881/9023/11001/4929/33/114876/2246/27122/2232/8604/7042/6309/6817/1581/2494/1735/3953/5950/2638/2247/6591/64788/216/26509/7220/1733/3952/126/3295/8864/6653/84869/51474/6720/3991/5205/1589/2819/9677/8821/3249/32/54361/8309/8228/23541/4128/66002/2053/7166/3479/27124/18/4129/125/5105/4036/3158/2625
## GO:0048871 10874/3868/55765/4069/952/8792/8842/7037/1001/3934/6319/7399/1051/3574/3925/92211/114/1364/2296/11151/29887/4159/51316/79888/2810/2171/24/63976/1812/3514/54849/239/55856/3600/79152/3549/23175/5052/5880/57817/7128/1445/7422/6338/9456/23028/9076/79071/468/6850/7480/51087/8013/7124/4160/5027/3569/9545/7852/2180/2827/5743/63978/10518/7226/551/26027/1956/525/1240/29123/580/1525/79705/3596/1080/1981/2271/11171/3297/2651/5567/54440/4585/5578/26291/6441/23746/51393/729230/153/113/4898/64834/51320/1512/242/1666/360/1649/155/3552/3933/5575/2778/5568/6556/6121/272/760/6714/64127/796/3662/4883/7018/231/359/3635/134/4858/101/6868/2876/2312/3606/3848/7351/10062/9657/581/3033/1813/6009/109/6722/6608/361/353500/7067/51208/51094/4849/2185/7275/43/5284/6647/7099/51085/3553/5781/51052/93/2303/50508/60/654/5566/4851/3565/58488/8809/5608/26154/7287/1585/5020/8861/8766/22954/4583/59341/3845/271/51548/23154/5879/6005/10891/23178/171392/2887/23373/10413/2074/567/1435/3037/3516/5290/7314/9842/4760/3717/51043/4233/5881/3988/537/10083/51297/23228/79602/89/3060/7189/3512/4923/71/55818/2623/1436/59344/10312/3226/79054/5565/6010/6774/8841/2103/4012/1376/10400/5746/7253/2323/261734/81501/3566/116/4891/1258/1778/57333/56667/7030/64641/2624/8692/55366/1200/3690/5741/10000/25937/11272/5576/9927/51542/8600/7376/4846/8195/112/1579/79813/51763/3077/57406/5573/10912/23135/6662/31/25861/9696/3356/1734/8473/56603/8029/1268/554/10848/406/54903/1910/7090/64081/4237/115/9455/64784/5562/8626/6588/8929/3375/154/3315/9975/56890/5925/107/118/4763/9807/1499/79738/26058/5563/108/4057/6794/5564/37/6778/2104/5547/3910/12/5745/6337/27347/1958/22841/7466/596/947/1901/2034/1472/2149/948/1490/1280/50486/5025/7840/1621/324/2628/5021/33/2488/4692/5334/3397/84059/221395/6584/2308/1907/201163/3953/6340/5950/4588/5166/50507/358/55198/216/54360/582/7357/7350/3952/1149/5577/585/1513/5618/79068/8864/11096/5733/56034/3480/857/53832/9658/55812/32/213/58503/2697/9079/4982/66002/9607/23371/563/4117/284266/18/9370/23090/4857/2167/5304/7021
## GO:0007409 5080/4902/9355/6712/7345/7504/3897/3925/9046/2676/2297/5459/2253/1749/10507/55079/9048/575/3475/7473/6696/10381/6285/80128/5588/1951/7422/5457/1020/7143/4781/5604/8013/9334/474/2048/7852/2886/348/3996/23566/2011/1959/655/1123/4504/5594/6654/2047/5623/5578/1496/3984/1785/51393/2932/6277/885/25806/3975/6792/3326/2049/10048/4914/56288/10678/5747/1141/7101/5058/2637/23114/6714/6091/2885/7224/1267/8851/8828/2043/393/7414/3792/7408/2636/10371/4133/3320/1954/1002/1813/6710/2131/10479/6722/5291/6049/26257/4917/10939/8153/5335/27185/5293/4099/5818/5727/3676/2534/5781/7074/2902/6683/25987/886/11313/51330/54413/53358/4218/2668/7436/11344/7476/64096/55558/23242/8766/5063/2675/396/55740/1826/10090/64919/9175/81565/2017/2044/5306/4825/2887/8239/55816/6477/27023/23191/4168/4897/9798/1400/23394/5290/8301/1600/10716/2664/10500/55715/3688/8022/10494/64218/7080/1949/1946/1436/51199/2064/4089/351/6324/57142/84612/9331/23011/10458/1382/5598/7430/5979/5454/5663/6152/347733/104/5048/10818/5728/1855/23105/10013/22854/8482/387/5458/10439/6259/2736/23334/6708/6900/4983/1605/659/9260/25/6498/9637/2335/7976/288/9839/5803/1385/2258/4684/10505/4974/4756/3670/8650/9423/9211/1630/2549/2115/57698/4038/6711/5800/23032/5909/9378/4916/1808/6464/5649/6474/7155/5076/2909/9344/5786/5802/6405/79600/9706/2263/23077/51332/51761/5532/23499/79006/3611/3199/57556/7070/26053/8929/9846/107/5595/8609/10211/9638/4131/627/8660/23767/5295/6794/29882/22902/322/7474/1796/9024/596/23111/9252/1942/4804/2803/4628/8633/6586/66008/26037/4929/4692/5797/4803/219699/2817/6709/9353/8829/323/57731/7869/4747/4744/6469/6812/64221/80208/9037/1009/9201/9369/22906/9499/6387/2674/56920/10512/3908/2045/4035/4915/658/2737/3800/10752/3730/23303/214/63923/3913/51466/4137/2625
## GO:0007599 10855/7980/5026/3932/5341/8357/4067/2821/959/5336/8525/23764/3066/7103/5024/5359/3937/51266/239/2207/3659/409/7534/8761/5588/1608/23028/3452/6850/5912/5027/5329/3569/7454/348/10938/3053/2153/23657/2160/958/23173/4778/5054/5594/5567/3674/5578/2769/5582/10603/5889/2626/3045/151/5345/2165/708/9060/5575/7006/2778/3170/5568/9002/6714/2161/5579/152/725/3439/3172/84830/8323/5265/462/7414/5340/9158/2243/57113/3710/3848/5328/829/2266/6521/23533/3046/6722/5291/11234/7410/3065/7975/5294/23468/5657/3443/80739/7448/2811/4352/7409/4097/4627/5873/7099/51156/64780/3451/8165/1192/1361/2534/10627/5781/7301/60/2768/5055/5566/2677/998/79001/5155/5777/2627/3998/1606/928/832/29071/3273/7222/2782/1607/5879/5028/7001/10461/10362/3442/55604/2814/3705/3445/160851/2316/954/5290/79803/22953/23186/3717/2147/2158/634/3446/5581/5894/2244/4780/308/2159/5156/5270/3448/11093/2815/10019/23348/310/3660/2313/114897/71/7225/1906/10630/830/5196/2623/1609/57572/2767/9127/5868/3020/5154/135/5023/10672/51317/7094/3444/2039/89781/2624/3818/3690/1465/11311/5576/3673/9927/5583/5170/3449/10077/4846/5051/6915/966/51206/3440/7035/10544/6814/5573/8546/2157/3827/5890/5580/3456/554/3709/11216/8526/7057/2150/3611/30845/350/2/710/3315/2776/5595/2155/221037/25970/953/408/5295/22875/5547/3441/3043/5624/7450/947/5592/2149/948/5025/9162/6403/1793/5197/57834/1278/57126/9630/8527/1277/5627/10398/22915/6469/6812/2192/1281/7056/5577/2621/2191/857/23414/2162/2151/2152/5104/30846/5327/150/10451/18/3708/1311/2625
## GO:1901653 890/990/1978/445/6772/2888/8767/51237/3973/6770/6715/4067/7412/114/28999/1535/2642/5471/2950/5641/50617/353/1019/2058/3383/83990/5447/5588/8914/1445/1020/533/142/26191/4690/2805/2692/8013/4141/5905/2641/1663/4644/688/9296/525/2213/3297/988/5967/5591/6654/5771/2101/9734/88/10661/5567/10018/8651/10603/26291/2932/1394/113/328/9114/1395/10333/8462/5575/57761/9971/5568/5747/10135/6121/5058/760/6714/64127/3164/5579/2688/2885/30837/231/6599/2358/2043/208/55532/5970/10476/7351/528/23545/109/896/8837/773/677/4142/5621/3416/51094/339/5584/4221/1442/5770/8615/9349/3676/51606/7099/3484/5617/23641/2534/3553/5781/2303/3718/5829/4193/51510/8048/5566/5140/529/4218/2740/523/2645/526/781/2660/6198/81565/837/9340/527/4825/177/2887/3630/23191/7471/9518/58533/9181/478/815/5296/5290/207/3717/7040/51043/846/5908/634/155066/3645/9314/4780/537/1979/23433/51274/197/64710/383/1176/186/51382/2931/1906/2844/9550/2852/2798/4790/55777/351/10312/2689/4149/10458/6774/140710/64506/4976/6093/183/7253/5663/2822/5319/5728/55022/9475/782/5458/8992/7431/1398/2693/9882/29988/5576/858/1385/5170/599/2771/112/2549/8850/10392/23235/51763/54328/5872/23038/5573/10768/7071/7249/6464/6517/2309/8473/6777/6667/55023/535/55512/5580/5786/534/23411/54741/4641/2729/115/5286/10014/51024/5562/55667/23189/26060/154/107/7157/4131/5791/1373/8660/490/6430/108/11132/5295/5164/4303/10365/6548/23621/2915/3643/6776/5590/948/54209/4804/324/6844/4929/114882/3397/5919/9847/2308/2241/10580/5468/5166/1393/8835/55198/11031/4023/9365/3952/5577/5618/3625/6720/7494/3480/857/2690/4035/5167/185/3667/2200/3479/9370/5105
## GO:0051098 55355/4751/5080/81620/9212/6790/9355/6664/5347/4318/23560/3001/8767/51053/1869/6590/1054/4830/3925/3458/2296/3148/3162/79139/3066/5499/578/119/7262/54496/11040/7295/22943/2072/409/9618/3434/8751/3433/6789/5457/1020/142/23028/4188/9775/5329/2641/8904/348/1663/5901/51042/7186/2011/1981/2280/22919/6996/3297/1950/1460/4792/9421/9532/4686/8091/2932/5444/3428/1649/3646/3326/382/57761/6368/6714/10856/3662/1522/65057/6788/3309/64771/2043/10763/8664/5081/2035/4931/4133/6612/51068/1965/581/6608/10155/1660/25805/7448/7023/4221/27185/3586/55118/3676/80011/23641/5792/7074/55294/60/2959/3651/10498/3146/5566/51176/28996/5155/59343/1636/5465/1440/2332/64324/5599/54552/7015/4242/50937/5028/1540/5516/10269/171392/177/22924/602/56341/567/23383/3080/3955/1400/23394/284/7046/2801/7341/4760/1193/1565/207/3717/7040/2033/22933/8932/8721/8536/3084/149628/4233/9314/2622/65992/64710/6881/23228/11315/7114/267/302/6281/7189/201501/9709/5986/2623/4089/64853/4087/351/6672/6872/6497/55323/64400/148022/6093/7009/5663/8874/6604/9026/51773/3725/1855/23063/51341/5458/1398/9750/64641/3300/650/5195/5515/4140/6708/3200/5092/22927/25/3673/56257/1488/3958/8600/9464/7291/3976/9270/5899/1452/3670/24144/5300/56998/81494/6135/3077/23032/10273/8189/1454/84444/4824/9044/53339/57669/6934/1025/23129/56155/5580/4015/26119/3280/8658/4043/5310/9693/10014/4317/25836/81857/5071/5824/6588/154/5925/146057/57343/2068/118/5530/5595/9759/10211/166/1499/1601/3005/4776/627/408/9236/23493/4088/2962/22873/1203/5914/7474/596/51185/948/64388/55693/79618/5334/4803/23462/65981/3397/4208/6717/8829/51339/5468/8864/4488/6653/10769/857/4035/4487/5350/10418/7049/3479/9370/652/2625
## GO:0007596 10855/7980/5026/3932/5341/8357/4067/959/5336/8525/23764/3066/7103/5024/5359/3937/51266/239/2207/3659/409/7534/8761/5588/1608/23028/3452/6850/5912/5027/5329/3569/7454/348/10938/3053/2153/23657/2160/958/23173/4778/5054/5594/5567/3674/5578/2769/5582/10603/5889/2626/3045/151/5345/2165/708/9060/5575/7006/2778/3170/5568/9002/6714/2161/5579/152/725/3439/3172/84830/8323/5265/462/7414/5340/9158/2243/57113/3710/3848/5328/829/2266/6521/23533/3046/6722/5291/11234/7410/3065/7975/5294/23468/5657/3443/80739/7448/2811/4352/7409/4097/4627/5873/7099/51156/64780/3451/8165/1192/1361/2534/10627/5781/7301/60/2768/5055/5566/2677/998/79001/5155/5777/2627/3998/1606/928/832/29071/3273/7222/2782/1607/5879/5028/7001/10461/10362/3442/55604/2814/3705/3445/160851/2316/954/5290/79803/22953/23186/3717/2147/2158/634/3446/5581/5894/2244/4780/308/2159/5156/5270/3448/11093/2815/10019/23348/3660/114897/71/7225/1906/10630/830/5196/2623/1609/57572/2767/9127/5868/3020/5154/135/5023/10672/51317/7094/3444/2039/89781/2624/3818/3690/1465/11311/5576/3673/9927/5583/5170/3449/10077/4846/5051/6915/966/51206/3440/7035/10544/6814/5573/8546/2157/3827/5890/5580/3456/3709/11216/8526/7057/2150/3611/30845/350/2/710/3315/2776/5595/2155/221037/25970/953/408/5295/22875/5547/3441/3043/5624/7450/947/5592/2149/948/5025/9162/6403/1793/5197/57834/1278/57126/9630/8527/1277/5627/10398/22915/6469/6812/2192/1281/7056/5577/2621/2191/857/23414/2162/2151/2152/5104/30846/5327/150/10451/18/3708/1311/2625
## GO:0010975 991/6280/2146/53335/23413/952/7804/65009/8437/5365/7504/54149/3897/4830/4067/5653/3066/10507/55079/7336/3475/7473/22943/6696/81618/10059/80128/7422/8997/1020/7143/23028/4690/5604/2048/7852/348/23566/2011/11202/6376/9373/84079/4192/655/1123/91752/238/411/4504/5967/50674/9362/1496/57118/5911/3984/3558/4139/1785/51393/2932/9856/5597/152559/8934/9148/6422/6792/7533/2049/2672/382/4914/1716/10097/2288/5747/1141/7101/54606/5058/11178/50807/1522/6091/2896/3309/7224/1857/2895/8851/25793/1399/2043/393/6845/3792/5997/10371/84298/4133/1954/2056/1002/10300/6722/9762/6049/8837/1072/8153/2185/5584/3196/55607/27185/4099/4076/1948/2534/5792/7074/2902/55704/50944/6993/4193/10498/51330/54413/1627/2475/7436/11344/7476/8724/5526/55558/23242/23316/8766/2332/5063/9699/56965/396/59341/3956/1826/2889/10090/57154/64764/9175/81565/2017/3706/6616/23654/4825/9897/23373/4058/51657/9860/567/23191/4168/653/3655/6014/4897/9798/1400/5587/8428/23394/1600/1523/207/2033/10716/8536/27/2664/577/23251/9314/4780/55754/5906/1742/8826/5780/9820/8578/10494/7225/1949/816/1946/51199/6324/57142/26012/23011/10458/22999/1382/4976/183/2580/5979/5454/5663/23237/347733/4649/116/54664/10677/1136/5048/27020/5728/1855/5754/23105/950/54700/79594/8482/387/5458/10439/7431/1398/23613/6259/64175/6900/9448/23064/8175/102/659/11141/25/10519/6498/127833/2335/9839/2258/23271/10152/4974/27063/9423/54986/50618/112/1630/23098/23043/57698/4038/5800/9896/57498/9139/2260/9529/4916/10611/51517/1808/5649/6474/22876/6911/2909/6383/5789/1268/2242/23363/5802/7025/26052/1856/9706/23077/9693/51761/22871/23499/23025/79006/3611/7070/5071/23108/23189/466/8321/7337/5530/29116/6453/9638/29956/4131/4776/162427/627/22891/64689/115703/8322/6794/29882/22902/3082/23258/322/7474/81545/9231/9024/23111/1942/79625/4804/2803/23426/66008/3675/26037/80823/7248/4734/4803/1809/65981/3397/4208/11075/22849/5396/9353/1902/8829/2042/5176/5753/64284/4747/2281/6695/1272/5793/9037/5274/22906/10769/5764/6387/23327/56920/2045/5376/4035/4915/6857/23303/9863/27124/55714/51760/4137/2625
## GO:0070997 4605/9928/6352/2019/6347/712/8326/2020/8200/6770/54541/1051/8564/2730/54532/57103/27242/11151/3162/5459/4436/5641/2253/867/10936/2597/637/3689/7336/664/2539/16/10525/22943/10280/409/8883/5457/1020/142/2558/468/7159/8013/7124/8882/8772/348/3091/5536/7186/2213/23657/6376/9131/3596/4192/23321/1981/356/7305/7133/3297/4504/728/2047/10018/3134/997/835/10617/5582/26291/55737/2932/22800/10038/10333/8934/1649/3326/4914/1728/836/7965/54583/10135/1522/2002/4841/2896/3309/2895/57707/8851/134/25793/10763/2914/208/5309/101/2876/2562/55532/5700/2056/9244/1965/581/1113/5621/9040/6418/2185/5584/3745/116986/2561/3586/4099/6647/8517/7099/1948/2534/4296/2902/7301/55294/10457/28996/2668/2475/5978/841/1271/4170/3265/2904/5465/1440/5063/6495/3845/7015/1616/3684/10891/54434/6477/27023/2021/7471/55626/58533/7068/1435/4217/23394/23529/284/11261/5290/7314/26281/8301/10533/207/3717/4544/1386/91304/6620/11315/6733/2898/27429/23385/351/2901/29110/26012/4149/317/6774/3981/29082/135/23400/6093/572/112399/5663/4835/104/51604/3725/824/10570/387/23017/163/1822/26355/8846/25/5966/5803/1385/5170/55074/842/429/3670/5300/23368/1201/1630/4204/23098/26471/1270/5423/5538/9529/5913/7516/2309/472/598/65018/23411/2065/7020/2729/3672/51024/8626/3611/6622/4345/5071/5921/10314/8321/5925/6416/4763/22861/9759/6326/1499/6453/1718/7157/4776/408/6548/23621/4602/4435/1958/7474/7466/558/596/947/79625/2149/4804/80823/54463/7248/4929/219699/7042/4208/8829/5176/1735/2353/4747/6812/7832/4671/6653/2045/4035/4915/1191/10752/7786/7043/7349/27324/4137/1524/2625/7021
## GO:0043405 983/55765/2146/8792/7345/8767/5871/6317/3654/136/4067/11184/959/2950/11314/6283/1991/5788/22943/3735/1852/1464/1445/51755/7422/7164/26191/4282/6850/5604/7124/23636/5027/2048/7852/348/3301/7039/1956/7186/54900/23566/5795/10125/5149/100133941/79444/655/1908/5605/958/238/9500/1950/728/5610/10221/5594/7334/10333/151/152559/5606/6422/1432/1849/63904/4914/57761/51196/1326/5058/6714/64127/6091/2688/2081/1857/8550/11072/134/1399/2043/2357/2914/101/5997/2873/7855/2911/9261/6363/7311/23533/5291/8844/5294/4342/2321/7477/2185/11221/11329/5770/5602/972/4294/6647/8517/7099/3553/5781/4296/7074/10178/6885/5608/3265/5155/5777/11235/5063/3845/6233/7316/2889/5148/10454/10114/5518/9175/975/28956/7001/60370/2785/8754/1616/171392/177/2074/4616/10961/9518/4217/9020/859/7314/7046/10746/1845/3717/9146/4486/7040/6188/3084/5894/3156/9294/5609/28951/5600/5999/10019/8826/23162/7984/7189/5998/5585/1906/7867/7251/2064/64853/11214/51562/5154/221472/5979/5663/51495/4293/5319/1847/10818/5470/79594/51347/11183/1398/8682/650/5515/29969/8692/7161/23118/51776/3815/1647/9839/8600/23624/4215/1815/10392/23043/51763/10595/57498/10912/2260/8737/1850/10636/4916/5607/6464/3356/9064/9344/5580/1856/8491/3672/8325/6609/8567/7057/5562/3611/200734/2874/8649/23328/5595/4763/408/8654/8322/3082/4920/27347/3643/7474/2322/4216/1843/2149/11211/80279/2246/4803/1902/727/2247/1848/50507/4214/25759/6653/4254/3480/4908/11213/5159/857/2690/8817/7786/7043/3357/57551/9607/150/3479/1846/9370/652
## GO:0090066 6712/952/59272/133/2643/5341/29767/3055/7504/1236/3897/136/3575/2730/7111/2296/11151/3162/3351/5499/1812/119/10507/3783/1019/9087/274/57180/3383/239/3475/7473/23507/6696/55144/80128/7422/1020/7143/23028/5467/4690/246/10095/9474/5027/10096/5743/8985/7454/348/551/1956/8440/5216/114908/23566/23616/3071/4478/1908/5724/5910/4504/3059/4880/6356/54825/88/1496/3984/1785/51393/2932/151/5345/4878/6344/53841/6792/3326/2784/382/10097/5058/8936/40/10092/2885/152/7224/3741/8851/134/10456/5217/393/3792/822/5997/7408/57175/2243/1173/10371/2876/10109/4133/1954/10911/1113/2266/10094/1002/4842/6710/6722/7410/6049/361/54942/1072/7477/8153/2185/3274/55607/59342/27185/4099/7409/9873/10093/6647/5962/80005/5987/8976/2303/10178/11267/1207/51330/9948/1816/2475/57403/11344/9530/1874/4703/7476/9113/1636/1440/55558/8766/5063/6366/59341/1131/10542/7429/1826/80852/5879/6343/9175/81565/5028/3352/2017/50809/4825/6869/9463/3630/10787/5865/6928/23645/9368/23191/55604/1739/4897/9798/55243/148/859/23394/8301/207/29766/846/4544/2664/5581/2244/1401/10083/3156/10565/7114/310/186/6369/3269/1906/9821/1946/2852/57142/23011/5868/3779/1382/135/23400/6093/183/5023/7430/5979/116/10677/5048/9026/5728/23105/1182/9475/2039/8482/387/4868/5458/10439/624/6259/6708/27345/6900/8398/10000/659/25/2335/11078/1385/2258/10152/5916/9270/4846/8195/9423/112/1630/57698/2059/6711/23038/55435/538/4916/4879/1808/59/3356/5076/2909/3827/5580/5802/2982/1910/5756/11034/6546/4641/3363/9706/10242/2729/3672/80131/51332/5286/29108/51334/10435/23499/2150/3611/64798/23108/23189/5921/1889/51520/9732/118/2702/6532/4131/23075/1373/6558/627/490/29882/5357/22902/8799/7474/3043/3350/23111/5592/2149/2803/1621/4881/7248/1185/5797/5029/6709/9353/1907/8829/2934/57731/54795/2241/4747/358/54551/9037/3952/585/3778/8864/477/85477/51474/24142/6387/56920/857/2045/1909/4035/8800/4922/10788/2697/185/3357/50853/80206/7349/51466/25802/150/2053/2006/10451/1311/4137
## GO:0051493 6280/6279/220134/22974/10460/4751/81930/3832/1111/6790/5347/6712/10615/1894/10733/54959/29899/6491/5341/29767/3055/1236/3925/7111/11151/26228/5202/119/9087/79866/274/57180/3383/10263/22843/84722/6624/4771/8477/1020/899/2824/4690/246/10095/8500/23636/5027/10096/79187/5629/7454/7517/50861/7226/4733/8440/5216/23616/26973/2011/3071/6376/672/55835/4192/22919/3059/5119/6356/5594/8480/88/64793/1496/3984/2932/79648/9535/5345/79959/6422/26586/3834/50848/9126/10432/382/10097/2288/5747/5058/4869/8936/2770/10092/2885/7514/402/8851/22809/10456/1729/5217/10763/822/7408/57175/684/11170/10109/4133/10094/55160/10300/6710/5734/4281/54942/1072/2185/79929/55607/55968/79998/9873/10093/25932/5962/5987/8976/6683/55704/50944/5829/6993/157922/10178/2041/51510/998/9948/58526/2475/64223/55521/11344/9530/79598/4703/3265/9113/335/7175/4591/1440/55558/7016/5063/6366/396/59341/7429/8243/25978/3273/5879/1213/1540/2017/27302/2044/6869/9463/10787/1859/3192/23191/55604/9181/1739/11190/55243/859/2316/7046/79969/57787/7040/29766/10382/6188/27/4233/5581/23433/11186/683/10565/5999/6047/5156/7114/26146/22994/23299/7984/79933/6281/6369/9525/961/23187/1906/1946/23332/1436/29109/51199/4089/11214/57132/1613/10015/10458/5154/6093/10735/58497/10163/10677/5048/9026/395/6904/23607/1778/824/4853/9475/80321/10013/2039/152185/387/4868/8045/1398/6708/25/6249/10519/636/85360/11078/2258/4682/23271/10152/55755/9270/5066/8195/4204/8850/116985/51763/397/2648/2059/827/29984/6711/55435/60312/137886/4916/22899/10274/2909/10395/9647/79768/9344/5580/2242/5756/4070/11034/91807/4641/23077/5310/9620/1639/51332/8558/29108/54828/10435/10174/2150/5562/3611/6622/50810/5071/23189/5921/6385/56890/146057/118/27243/5595/1499/4131/23075/55616/4088/5563/5295/7010/28984/26054/25876/6548/22998/1027/85459/29098/1901/7168/1490/7840/324/11211/10142/7248/9639/23122/3397/4208/11075/10039/6709/9353/1902/8829/2934/2042/57731/2241/10411/25999/50507/89795/54551/4926/24139/83700/9037/585/79884/85458/85477/51474/10769/24142/7481/23116/4653/6387/4908/5159/10391/5364/89927/4035/54361/10788/7043/6863/57551/50853/80206/51466/25802/9723/2006/27124/284266/4137
## GO:0051656 55143/9493/1062/10403/9787/51203/4085/5080/81930/81620/3833/891/9928/11004/5347/10615/9700/23413/1001/1075/29899/7345/1058/1063/5871/136/4067/1138/3162/321/11314/3351/1812/867/2207/10652/4647/10059/84722/7534/5880/80128/3965/54908/6396/1020/23212/10675/8013/23636/5027/10096/55166/3091/4644/7039/5901/10125/2153/3596/10755/10814/5119/28964/57102/10113/1142/5582/10959/30817/4139/55212/1785/2932/79648/51693/23513/81929/22820/4878/3834/1137/3797/6809/10097/80179/54732/5747/1141/8832/3835/8936/9381/1522/91683/8379/5579/6855/7514/8447/3837/27095/5265/10342/695/5217/6845/27040/10802/55153/5870/83696/10948/8573/4133/9554/51068/1113/1813/27183/10300/8541/3799/10128/25777/5294/4342/23626/2348/55968/79998/1780/5293/64149/8615/4627/3676/5873/8517/79003/9183/55201/8976/5861/9515/6683/23256/6993/51510/3598/9001/998/5537/90411/4905/594855/59349/8618/547/7476/9342/11235/3998/8766/2332/9699/10175/6853/8943/488/434/25978/50487/8723/6804/5028/8409/6616/5030/8673/51128/10749/81876/3192/3798/9368/3916/55291/9181/1739/10972/22870/6811/815/148/7314/2801/6284/5908/553115/537/23224/5906/26059/1176/9871/9570/23299/9783/22920/10494/8867/9525/51134/7109/23332/81/29109/7013/320/2901/91782/57132/284021/1453/23095/5868/1861/9230/8775/22999/29082/135/4976/5023/7430/54874/2647/5663/11196/22872/3566/5048/10282/1855/1778/8120/29058/152185/3064/7462/10540/10053/5195/2624/23353/79567/374/3815/6209/2294/636/357/9632/642636/8729/5170/1488/4033/55755/11127/4292/79643/4935/9751/4134/23285/8195/55062/1201/9423/22930/966/8973/55781/114088/5864/55435/10427/137886/79090/6813/8697/55288/8546/5819/9696/6399/6517/3356/2157/472/65018/1268/2242/2268/4641/1639/9919/2890/783/22871/6622/89941/55717/5071/56848/9846/107/10947/10484/27243/9581/1499/9638/9371/4131/51112/10497/64689/27445/23396/7320/126353/23243/23621/10253/63971/8452/2669/1129/5590/4628/8678/66008/9162/6843/6844/54820/9900/55686/10464/10016/10252/23122/8825/8448/64284/8773/4747/4744/5108/6812/4926/80208/585/93664/1294/79443/6857/55638/776/4137/79083/25893
## GO:0032147 22974/983/55765/9928/1894/6352/51378/8767/5871/3654/136/11184/114/959/11314/1116/5788/7295/3735/1852/9618/1464/7422/63967/6850/5604/7124/5027/7852/7039/1956/7186/23566/2011/3071/5149/79444/5605/238/4504/1950/728/5610/5594/5567/3593/8651/7334/113/10333/151/5606/1432/1849/5575/4914/5568/6556/8795/51196/1326/6714/64127/796/2688/2081/152/8550/8851/134/1399/2357/2914/55507/2911/3606/2056/9261/6363/79109/1813/7311/55012/10892/109/5291/4342/4142/7477/2185/51704/5770/5602/972/4294/6647/8517/7099/3553/5781/4296/93/55704/6885/5566/3565/5608/2475/64223/5155/9966/5063/6233/7316/2889/5148/10454/9175/975/28956/7001/60370/2785/8754/1616/3630/2074/4616/55615/10961/9518/1739/26585/4217/9020/23394/6176/284/5290/7314/7046/65125/10746/207/3717/3084/5894/8312/9294/5609/5600/11315/23162/29775/7189/80174/5585/7867/1946/1609/183/5979/5663/51495/4293/5319/1847/1136/10818/79594/11183/1398/8682/650/51561/29969/7161/23118/51776/3815/3690/1647/25/5576/5170/2258/8600/4215/9270/1815/112/10920/92335/7098/10392/23043/10595/5573/57498/10912/8737/4916/5607/6464/9064/65018/9344/5580/51422/8491/3672/115/8567/7057/5562/8649/154/107/5595/2013/408/51719/108/6794/28984/3082/79092/27347/3643/7474/5590/4216/2149/10040/55890/114882/10464/2246/4803/7042/1902/7048/283/727/2247/1848/4214/3952/5577/5618/25759/56034/2621/9052/7481/4908/2690/29990/7786/7043/57551/7349/9607/150/3479/652
## GO:0071214 55872/10635/9212/1111/993/1894/5888/4316/51311/4609/5111/641/362/1535/8372/6247/92815/578/3208/5424/664/11200/706/2072/3659/838/6513/55144/5603/2792/57817/142/23028/468/2805/3014/1410/8772/5743/4055/85453/1956/5971/3596/834/958/5724/3297/23173/1642/835/25896/5810/1785/23746/8091/10991/3428/6422/4878/54929/1432/1259/10010/836/8795/10135/6121/4869/10856/2002/4615/8291/5481/2885/3309/9397/231/359/1026/5145/26155/9033/26272/2986/208/2779/79823/2547/2911/8531/2056/1965/400410/27035/581/5734/4761/677/8740/9990/3954/5602/4099/79073/9683/552/7099/6011/4308/943/3553/5781/654/41/4193/57192/9943/5883/5978/841/3265/79913/1936/2332/5599/59341/23514/355/5148/2782/5879/10276/10269/5796/10413/51499/9181/3364/8915/476/11011/51109/9020/11261/9994/10746/207/7040/2033/7520/3759/7132/11277/3645/4157/64710/159/545/4790/1654/2979/8738/7528/10988/6872/2767/26012/54407/9230/51562/6010/3981/183/572/2822/2339/1265/5728/1258/2978/8450/9575/9750/624/8692/4255/79085/51776/22927/1605/1647/6494/3673/51284/842/429/7486/27063/7100/9531/10367/7098/55031/4656/404672/5429/6295/4836/6662/22890/5475/3000/2022/6517/26056/472/598/4638/23411/2729/80131/7158/25836/1407/5158/5595/56339/6416/9759/6326/1643/7157/4776/5269/51719/825/5295/6794/1387/6548/3373/7508/55364/27347/1958/55693/5311/4734/80303/1277/4311/6591/50507/358/5064/2868/4214/477/7481/5764/1396/388/5138/138162/2697/5105/1408/2625/4239/10974
## GO:0104004 55872/10635/9212/1111/993/1894/5888/4316/51311/4609/5111/641/362/1535/8372/6247/92815/578/3208/5424/664/11200/706/2072/3659/838/6513/55144/5603/2792/57817/142/23028/468/2805/3014/1410/8772/5743/4055/85453/1956/5971/3596/834/958/5724/3297/23173/1642/835/25896/5810/1785/23746/8091/10991/3428/6422/4878/54929/1432/1259/10010/836/8795/10135/6121/4869/10856/2002/4615/8291/5481/2885/3309/9397/231/359/1026/5145/26155/9033/26272/2986/208/2779/79823/2547/2911/8531/2056/1965/400410/27035/581/5734/4761/677/8740/9990/3954/5602/4099/79073/9683/552/7099/6011/4308/943/3553/5781/654/41/4193/57192/9943/5883/5978/841/3265/79913/1936/2332/5599/59341/23514/355/5148/2782/5879/10276/10269/5796/10413/51499/9181/3364/8915/476/11011/51109/9020/11261/9994/10746/207/7040/2033/7520/3759/7132/11277/3645/4157/64710/159/545/4790/1654/2979/8738/7528/10988/6872/2767/26012/54407/9230/51562/6010/3981/183/572/2822/2339/1265/5728/1258/2978/8450/9575/9750/624/8692/4255/79085/51776/22927/1605/1647/6494/3673/51284/842/429/7486/27063/7100/9531/10367/7098/55031/4656/404672/5429/6295/4836/6662/22890/5475/3000/2022/6517/26056/472/598/4638/23411/2729/80131/7158/25836/1407/5158/5595/56339/6416/9759/6326/1643/7157/4776/5269/51719/825/5295/6794/1387/6548/3373/7508/55364/27347/1958/55693/5311/4734/80303/1277/4311/6591/50507/358/5064/2868/4214/477/7481/5764/1396/388/5138/138162/2697/5105/1408/2625/4239/10974
## GO:0006936 10874/23630/952/1824/59272/3768/1482/136/6535/7111/7136/3757/6870/8557/779/1812/8877/3753/58/4626/5024/23676/9631/2023/274/100/6641/29895/4726/6329/147/55151/4624/9456/4606/7852/1410/5743/6262/4151/5142/7273/1134/10021/1908/5724/1143/5910/1144/6261/88/2257/8811/6769/2626/1147/93408/151/5606/23336/4878/7135/384/4619/51196/1141/9446/8291/152/3741/3281/134/1180/7414/5997/156/80149/10911/1113/1813/4842/6722/6327/5294/6331/6336/7170/2010/7137/226/7140/6647/80005/6323/80763/10627/7171/5829/4635/1145/3762/8048/6442/5566/1756/10316/5608/2668/2475/5020/4703/1674/140465/9312/781/6865/4634/1131/2775/79784/488/80852/3352/2017/7125/8735/27302/6869/4625/26287/1739/58498/476/148/859/2316/5290/1837/7341/1193/22953/5318/5144/3759/6901/89/4633/1829/1146/487/4632/9826/23213/2741/1906/2852/7134/6324/1613/4621/1160/4607/9127/493/1241/6640/6093/183/30819/5023/8913/7094/1136/4092/9475/6332/6525/10345/387/3728/7431/2693/624/10052/6781/3815/8398/1938/8912/3673/4637/8195/6915/3764/4660/287/1832/3781/4090/2548/103910/84193/70/9722/59/3356/9992/3760/800/4638/4762/10848/2982/1910/6546/7423/3363/5224/3672/7169/5286/51761/783/10174/4604/30845/7139/3784/1760/9732/4608/72/2702/9759/4636/7138/8654/490/845/8106/6752/6548/29119/3736/126393/7402/10087/5592/7168/2149/1490/5025/4887/8082/5021/844/444/3270/6717/3752/1907/481/54795/1140/10580/2281/10398/26509/10203/10324/2946/3778/477/6444/3693/9499/23327/857/775/1909/23171/5350/55800/1264/2697/3357/7349/25802/150/5348/18/776/4629/23704/1311/2593
## GO:0071902 983/55765/2146/891/1164/990/8792/1163/10926/8767/5871/3654/136/11184/8941/3458/959/6283/1991/5788/22943/84722/3735/1852/1464/1445/7422/7164/6789/8115/4282/6850/5604/7124/5027/7852/2180/5629/57214/7039/1956/7186/23566/10125/5149/100133941/79444/1908/5605/958/238/9500/1950/728/5610/5594/7334/8091/5716/10333/151/904/5606/1432/1849/3326/4914/51196/1326/5058/6714/64127/6091/2688/6788/2081/1857/8550/8851/134/1399/2043/2357/2914/101/6868/7855/2911/9261/6363/7311/23533/5291/5294/896/894/4342/2321/7477/2185/5770/5602/972/4294/6647/8517/7099/3553/5781/4296/7074/10178/6885/5608/64223/3265/5155/11235/5063/3845/6233/7316/2889/5148/10454/9175/975/28956/7001/60370/2785/8754/1616/177/22924/2074/4616/55011/10961/9518/4217/9020/7314/7046/10746/207/3717/4486/7040/6188/8536/3084/5894/9294/5609/5600/8826/23162/7984/7189/80174/5585/1906/7867/1436/2064/11214/1654/493/5154/221472/5979/5663/51495/4293/5319/1847/8812/10818/4331/79594/51347/11183/387/1398/8682/650/5515/29969/7161/23118/51776/3815/1647/10519/54956/25994/9839/8600/4215/5899/1815/92335/10392/23043/10595/9894/57498/10912/2260/8737/9623/4916/5607/6464/3356/9064/9344/905/23411/1856/8491/3672/5310/8325/9693/8567/9802/7057/5562/3611/6622/8649/154/23328/5595/408/51719/8654/4057/8322/28984/3082/10253/1027/4920/27347/3643/7474/2322/4216/2149/595/11211/54465/5311/2246/4803/1902/727/2247/1848/50507/4214/25759/4254/4908/5159/56892/2690/8817/7786/7043/3357/57551/9607/150/3479/9370/652
## GO:0007584 3627/53335/5026/445/6772/7298/5111/6770/9388/7412/2730/1535/1789/2642/8942/2950/3162/1594/3208/5024/916/83990/706/100/3600/6696/191/5447/57817/5315/158/1788/6566/5467/6427/1030/5027/4049/2180/5743/10518/1956/5469/1536/9131/655/958/411/3297/3157/265/2182/2626/1032/24145/8805/6422/360/64240/7184/3170/1728/9971/249/64127/5019/920/7274/462/65985/5292/5313/5009/5970/2056/5251/1723/1327/6722/2348/1591/7706/6647/2534/3553/7421/2902/218/4193/6569/3651/4524/1603/2475/3141/7299/335/7252/1791/7222/5028/5030/54434/7352/19/9869/22953/22938/7040/846/3156/23530/383/8520/79602/6263/4968/8074/23376/1609/6872/9127/7392/8443/10458/317/9227/4976/5023/10400/7009/5728/847/4255/2350/6781/5741/1938/717/3673/1385/429/2771/6915/2696/8854/5179/8473/2029/56603/1268/2242/54332/6546/8658/2729/178/2067/6532/2155/25959/4131/490/8648/5164/3371/5914/1543/6750/2181/8644/5025/8678/595/5029/590/3155/7048/2934/54795/1277/6591/210/2281/5468/4023/1592/3485/3952/7494/2621/5764/6678/10631/4982/9370/8614
## GO:0050817 10855/7980/5026/3932/5341/8357/4067/959/5336/8525/23764/3066/7103/5024/5359/3937/51266/239/2207/3659/409/7534/8761/5588/6406/1608/23028/3452/6850/5912/5027/5329/3569/7454/348/10938/3053/2153/23657/2160/958/23173/4778/5054/5594/5567/3674/5578/2769/5582/10603/5889/2626/3045/151/5345/2165/708/9060/5575/7006/2778/3170/5568/9002/6714/2161/5579/152/725/3439/3172/84830/8323/5265/462/7414/5340/9158/2243/57113/3710/3848/5328/829/2266/6521/23533/3046/6722/5291/11234/7410/3065/7975/5294/23468/5657/3443/80739/7448/2811/4352/7409/4097/4627/5873/7099/51156/64780/3451/8165/1192/1361/2534/10627/5781/7301/60/2768/5055/5566/2677/998/79001/5155/5777/2627/3998/1606/928/832/29071/3273/7222/2782/1607/5879/5028/7001/10461/10362/3442/55604/2814/3705/3445/160851/2316/954/5290/79803/22953/23186/3717/2147/2158/634/3446/5581/5894/2244/4780/308/2159/5156/5270/3448/11093/2815/10019/23348/3660/114897/71/7225/1906/10630/830/5196/2623/1609/57572/2767/9127/5868/3020/5154/135/5023/10672/5663/51317/7094/3444/2039/89781/2624/3818/3690/1465/11311/5576/3673/9927/5583/5170/3449/10077/4846/5051/6915/966/51206/3440/7035/10544/6814/5573/8546/2157/3827/6407/5890/5580/3456/3709/11216/8526/7057/2150/3611/30845/350/2/710/3315/2776/5595/2155/221037/25970/953/408/5295/22875/5547/3441/3043/5624/7450/947/5592/2149/948/5025/9162/6403/1793/5197/57834/1278/57126/9630/8527/1277/5627/10398/22915/6469/6812/2192/1281/7056/5577/2621/2191/857/23414/2162/2151/2152/5104/30846/5327/150/10451/18/3708/1311/2625
## GO:0062012 983/5163/891/1717/4199/133/4597/5341/6319/6713/3973/5688/9688/5709/6472/6770/26330/5698/54541/136/5693/3458/57103/341/2642/5713/4200/3422/5449/5031/4953/1594/5721/2171/5691/5499/2224/3208/5685/9631/2023/7262/5690/5684/5686/5695/5223/706/10213/5447/3638/10059/23198/5208/10105/6396/215/5210/23165/5699/5714/142/55706/79071/5702/1312/51805/8013/7124/23636/5027/5165/2641/5708/345/3692/5743/5629/5692/51293/348/3091/551/7415/5704/5901/57001/23657/672/4927/79902/5683/80183/5724/1950/3157/10762/1642/5694/5771/8480/3607/11097/5366/2264/1374/117/5718/5682/2932/5716/9972/81929/5707/51744/2672/2784/2646/57761/3170/1728/9971/57122/6714/6721/5696/5209/79023/3837/51582/8445/9818/208/23408/3949/5719/5700/55066/10062/5500/5717/4800/23511/10197/4142/51094/2185/2194/337/5706/6647/552/3486/4598/51085/5710/3553/7421/57223/10447/2168/23279/654/79849/5443/4946/4802/58526/54576/2475/5978/2645/1181/5155/7175/5465/6615/5689/5720/5207/5701/51548/9491/11319/1213/2222/23225/2170/5028/10269/10891/5711/23178/80025/5715/4047/3630/8021/653/53371/3037/978/29103/9861/207/60343/7040/2033/5705/5571/634/54704/10613/5957/11277/5581/4928/3156/27120/6901/11315/7114/79602/89/2931/114897/4923/5509/3269/8086/2852/8720/4790/10776/1609/405/2979/10296/5565/493/9883/4947/6774/140710/51451/2103/572/2822/93974/9612/2978/55022/51341/387/9926/2693/650/51360/5903/635/2695/79085/3815/5741/348995/2981/7291/7376/4846/55746/9619/8850/6095/863/22937/51763/4656/2648/26471/23038/23479/201626/283871/3488/4801/538/338/31/10654/3356/8473/23417/6667/65018/1268/55512/51422/23411/51141/26119/9104/4779/5562/7108/6622/5071/10499/1353/1407/56848/9611/11160/9453/1196/23409/9759/7157/957/5261/8660/5563/37/5164/5745/1958/3643/225/8644/54209/33/51686/10464/2246/27122/8604/2954/2308/6309/201163/1581/3953/10580/6591/64788/60481/5468/5166/55198/3952/6720/6097/857/2203/2819/7033/32/54361/5167/4485/23541/26137/3487/3667/2053/3479/114899/9370
## GO:0060627 23413/65009/6347/3561/3055/10859/136/5898/3024/55503/4067/1535/1138/8941/336/3458/8372/341/5336/11151/3162/321/11314/3351/26228/1812/8877/867/3208/1794/3689/5788/274/2207/5806/22943/3600/3638/10059/409/5880/3965/1445/7422/1020/929/9829/3601/6850/246/5604/10675/9474/7124/9545/7097/345/613/29091/348/10938/2213/5795/3071/164/3596/84079/4478/1080/10755/5605/5724/10814/1950/28964/5054/1175/5594/88/3134/9367/4240/57102/57118/8898/1142/5582/7036/30817/140885/1785/6441/729230/2932/3560/23513/811/8934/1814/4878/60561/255057/1137/382/55681/6556/1141/8832/6714/5579/8291/6855/7260/8447/7018/725/2358/5217/6845/208/4289/8027/2243/8573/4133/949/10434/6363/10062/2266/1813/27183/3799/5291/6457/5657/7448/3745/7275/64854/29763/566/5770/192683/5873/6647/5962/1948/64780/8976/3553/9515/23256/11267/7447/3146/3598/9001/3565/9711/64422/5978/7287/4905/594855/7476/335/9784/8724/6386/8766/2332/9699/6366/6853/488/6456/2889/51160/7879/8723/6401/5879/6804/5028/23208/79872/10461/3684/5030/9463/8673/722/567/3916/54550/6014/26585/5587/815/148/859/284/8301/30844/9146/7040/5908/376267/634/27/2244/23086/81555/537/197/5906/1742/301/57030/9783/302/6455/79363/9525/961/51272/967/23332/81/9892/7251/320/2901/1609/11236/23011/10015/5868/1861/9230/135/23400/10960/6093/5023/7430/29978/23237/11252/3566/718/9026/5728/1855/23607/6382/23317/933/9882/2624/4983/163/3690/8398/1759/11037/11141/25/2294/717/636/3673/55823/22848/5170/3958/57111/8674/5899/7376/1815/9912/10347/2771/8650/22930/8973/3077/5533/114088/5864/6814/10427/5538/6813/6810/7249/6517/3356/10188/22876/83452/392/65018/1268/55512/2242/6311/2268/2719/26119/4043/9779/80230/29108/783/22871/5532/2150/5562/6622/50632/5071/26060/6385/56848/9098/9846/107/27243/5530/5595/3092/54806/9581/10211/6453/1601/408/10497/27445/53407/23621/29/4153/7474/1129/2619/2181/558/3685/51479/9094/948/977/9501/25837/9162/6843/6844/23176/79772/23122/9847/26045/8829/57126/2042/8448/9765/5468/25999/10103/1012/55198/11031/6812/5874/93664/6653/2621/23327/4908/55680/857/8938/4035/1191/11069/6857/30846/9863/150/6424/776/9370
## GO:0009914 10874/6664/952/6352/133/4067/114/56943/3458/28231/2297/51083/2867/292/117247/6513/6696/5208/1244/8997/5127/6659/6566/5467/2692/7124/4160/3569/2641/3091/4644/1956/26251/3814/1080/1908/1588/25874/6927/55636/51167/5578/1374/7036/8431/3623/1394/3589/151/6422/4878/5211/2778/3170/9971/152/8447/5019/3741/3172/402/134/695/6845/65985/5008/2243/3710/55585/51768/7351/2266/3033/1813/64111/3799/773/353500/9255/2661/3745/65220/7425/5798/3553/5781/93/7074/5861/9515/654/7447/3651/2740/3358/5978/2645/594855/293/6865/9699/59341/2850/4843/8723/5879/3747/6804/5028/6616/23568/2044/23178/4825/6869/5715/3630/8673/6928/9324/80223/10765/6906/4760/3717/668/9727/846/4544/5581/5894/2244/818/3156/1428/5906/11315/51762/186/301/114897/23435/1803/1906/51714/1946/640/2852/8074/4089/4087/7849/10312/6580/9230/135/183/572/27230/6514/2822/53919/116/1136/3557/9575/2693/291/2587/2695/6447/9448/8398/8620/7432/1385/5972/8600/3976/4986/3670/7110/3077/2696/6814/2260/57818/6810/4824/56729/26056/2029/6934/7276/1392/1268/55512/406/5991/3709/6567/5532/5071/3624/399979/1407/777/51092/5530/23409/8609/6453/408/8660/27445/11132/8322/2752/3382/4602/22841/3350/9024/2746/8425/80024/9501/5799/3790/6717/9854/54795/23410/8773/5950/2281/10411/1393/2691/3952/8864/3625/4856/6720/6833/775/1363/8938/4035/11069/55638/2697/185/55107/6863/3667/7349/9607/150/6926/9254/114899/18/776/9370/25924/3708/80736/2922/2625/7021
## GO:0002791 10874/6279/7850/4321/5004/2633/952/6352/55612/51311/914/8767/91543/1236/10859/9447/4067/114/3495/56943/2821/336/3458/959/27242/3418/64135/2867/292/3783/2597/7096/9466/5552/6513/23586/10059/2219/3735/5208/7128/3965/10626/8997/5127/5047/6659/929/26191/6566/5467/945/4282/6850/2692/64109/9474/7124/5027/3569/56253/7097/2641/348/3091/1956/7186/7273/2213/26251/10125/3556/6376/3596/3814/834/4192/7293/1080/7133/958/55024/9734/25874/55636/5578/5371/8651/1374/7036/1147/8431/3558/55737/24145/10333/6422/1814/51744/1432/3552/5211/384/382/3170/55655/9971/6714/64127/5481/152/8447/79651/5019/3741/3172/402/84830/134/84818/10802/101/65985/5008/25807/2243/3710/7855/80149/51768/7351/6363/10062/2266/199/3033/5478/1813/5734/64083/3799/773/353500/57824/7292/9255/1660/3745/65220/3586/10385/11126/6346/43/972/192683/7099/5987/4988/3553/5781/7074/9515/654/7447/3651/3146/2740/3358/3133/5978/2645/50855/293/335/59341/2850/4843/5879/3747/6804/23208/6616/8754/23568/11146/2044/23178/4825/5715/177/3630/3605/9324/10961/79792/353514/80223/284/81285/4760/3717/7040/9727/846/64215/3661/4544/5581/50943/2244/23086/1401/3156/4155/27202/5600/3098/5906/7114/114548/51762/80772/186/301/7189/965/55801/23435/1803/51714/1946/640/2852/1436/6992/7849/10312/23765/26253/54474/22900/5289/135/23400/572/7430/7009/27230/6514/2822/5319/3566/8736/116/27159/55763/23607/933/9575/2693/291/64175/2695/8692/9448/55366/83786/8398/8620/25/2335/23705/8600/7291/1815/27063/3670/11027/5066/7100/27236/3440/3077/55540/2696/307/6711/9173/57818/6810/26525/23601/26056/2029/6934/1392/55691/1268/406/2268/5991/3709/4317/29108/5532/2150/4345/5071/1992/777/51092/5530/23409/2702/5595/8609/22861/7424/6453/57506/408/10497/8660/11132/3567/2752/28984/3382/322/7474/64285/9024/5590/947/2746/8840/2149/54209/4628/4887/80024/9501/26297/7042/3790/6717/9854/79679/283/54795/23410/5950/727/2281/55204/10411/1393/2691/4023/90865/23005/3952/1149/8864/3625/4856/6720/7494/2621/6833/775/8938/4035/11069/2615/10631/55638/247/2697/9590/55107/7043/3357/3667/7349/79971/9607/150/3479/9254/114899/18/776/25924/3708/2922/2625/7021
## GO:0016569 890/983/2146/9212/1111/6790/891/3070/59336/11240/56943/200424/1789/2005/3006/3066/8607/63976/1812/3008/7468/3009/2140/54496/2138/7422/10626/3276/86/1020/7443/1788/6839/23028/8284/1786/55689/9474/22880/2641/54107/23210/3007/5536/11177/8089/80218/672/7319/4504/675/1642/3054/57602/9734/8819/5578/7334/2091/10943/79577/8091/8202/55611/10432/9031/9757/2672/9971/29117/10856/3720/8986/3662/6688/8242/5579/1017/387893/26155/1810/5081/8193/5927/10629/55183/6877/2139/4654/4842/3065/10155/26038/6418/54934/339/9329/4221/79918/22992/5079/9025/59335/51322/23774/3553/6883/22823/11137/51547/80853/79685/51200/10419/79723/2959/10445/56950/8085/10498/6885/7862/5253/22976/4524/5977/51176/5978/3141/79829/5245/8861/10664/7404/55124/4591/10075/4287/25862/9555/79184/2332/64324/5599/56979/63925/6795/26097/51548/9733/7324/5929/3622/23476/23512/8295/10269/10891/55011/56341/9960/9958/6598/10524/10474/5587/9085/94104/10765/55274/9869/8726/23186/22938/3717/7040/23133/51043/2033/22933/8932/1386/50943/11143/4000/8888/6881/79697/11176/9682/8520/10919/23569/9767/9320/6421/55818/5585/55870/10933/10600/26993/8464/84759/7874/4089/8314/27097/55209/6872/8110/6497/6871/51562/55729/64754/54556/23558/54531/51147/53615/79885/3299/10847/51773/10270/8450/25865/11107/7994/10013/9070/7799/9575/80335/23168/9913/2624/6018/64769/55140/54904/51720/9739/55196/2122/171023/30827/55683/80349/1487/51742/23326/51366/7291/10902/3976/6304/3670/6045/4204/6880/8850/79813/151050/9646/2648/5896/7403/57379/57634/55167/138151/84444/54880/23135/84193/6830/1911/10782/8473/472/1025/112869/65018/6015/7703/51230/9647/11108/5580/6314/4297/27005/5187/23081/79903/23411/9730/29072/54623/546/10014/23067/6879/5562/1105/25836/6622/10336/23304/26053/56848/57343/5595/339287/9759/1643/1499/54737/7157/79960/84148/408/23741/5563/6500/5926/1387/8648/23429/23522/7320/3275/4602/51564/604/23272/51111/322/2145/9252/79858/79831/26036/55693/9810/23338/6419/5252/201163/23410/6591/8864/6720/4674/57332/23030/7786/7349/4582/2625
## GO:1903829 10403/983/81620/3002/5347/51512/1894/29899/22948/1869/919/3458/9585/908/2810/10576/3208/9141/7545/637/3689/2207/7027/7534/10541/5880/999/1020/142/7159/7124/23636/8882/2048/55166/5743/57214/5901/1956/7203/245812/10055/4478/4248/7305/55741/10574/1950/3059/5594/10575/57602/5366/10134/6769/2932/10807/8934/10971/1432/54471/64328/7533/3326/382/6809/7332/5058/6714/6721/2770/5534/7029/57707/8851/391/208/2035/7855/80149/51068/1459/8878/3799/6608/5621/10155/5584/3745/2010/9777/5962/51100/2534/3553/55704/59286/55294/10445/10178/4193/5566/4946/26154/7529/50855/841/10694/3265/3843/7175/10075/11235/8766/5599/54552/7429/7015/7323/784/51160/9776/975/1540/23208/3684/3630/54434/9451/9860/54550/1739/11190/23379/2316/11261/1969/5296/207/57787/2147/7040/8536/149628/5581/11143/2622/65992/3688/79752/9495/55754/11315/8826/22994/5780/29775/10369/2931/23435/79778/2852/27429/7251/55135/2064/1263/7531/8314/5116/57142/4947/8841/63928/572/7430/5494/5663/27020/23607/9475/89781/3728/8692/7161/79567/163/9520/10519/636/51104/288/10425/55823/5583/5170/3958/51366/3976/9270/10347/27237/23368/2037/9531/11079/5533/55781/4038/6711/26229/6810/4836/9696/81926/6934/2040/9695/65018/5580/54741/4641/56947/51024/54828/5562/8626/4130/5071/7157/51112/57506/4088/5563/5295/6794/10268/5357/55696/22902/80184/22841/2181/29098/596/54209/4804/324/3675/6844/80279/23255/9847/2042/79899/10580/10411/25999/5108/81603/6469/4926/3952/6653/2621/5764/3305/23171/4035/2737/161291/5174/22885/4137/2066/10551
## GO:0018108 9833/7272/3595/6352/51378/7804/3932/8767/3055/11009/3574/54892/4067/3458/11314/3066/26228/2253/10507/3689/5788/916/3383/1795/3600/64092/409/1464/4771/1445/7422/4282/6850/5604/5912/7124/3569/2048/7039/1956/7273/8440/5795/79834/100133941/79705/9021/3596/7525/5605/958/238/3297/1950/3059/5610/55024/5771/2047/2264/3570/3593/8651/3558/3592/885/3589/5606/9148/2051/8444/6422/22853/9031/1839/2049/7006/4914/5747/6714/6690/10006/2688/57091/920/8445/2069/134/10456/695/55620/2043/1198/4145/55359/5008/6868/941/57826/3606/2056/9244/29883/8798/7465/2321/5621/3562/2185/51704/7448/4593/5770/972/7535/2534/5062/3718/7301/55294/2041/3565/5608/2050/2475/8576/5155/5777/1636/5526/6098/1440/7016/3273/5518/975/10461/23568/2044/2074/1859/4058/199731/58533/9181/353514/26585/11116/148/23394/23529/284/1969/30844/3717/4486/7040/960/3084/3678/7132/27/4233/5581/3645/59067/1741/5609/683/5156/1742/10019/8826/6886/1437/25778/1946/640/2623/1436/7251/2064/351/1609/84619/4919/6774/5154/183/5979/5663/10645/56940/2039/8995/5515/6259/51561/8692/374/3815/3690/25/2324/10152/3976/23624/79643/3670/3440/1270/4038/25998/2260/4916/3716/5607/6464/5649/3356/10188/22876/5168/7297/5580/79893/2242/2268/5756/2065/1856/3280/2263/9655/4750/7070/1196/10420/5175/5595/6416/4921/7157/2209/627/2252/9149/7010/3567/4739/3082/2915/3791/4920/3643/2322/558/5590/9094/1942/948/54209/2261/10464/8829/2042/5753/2241/50507/1272/9961/3952/57396/7075/5618/2202/56034/4254/2621/9052/3480/1195/4908/5159/3263/857/2045/2690/4915/3572/150/7060/1489/3479/80310/9370/2066
## GO:0007623 10874/7153/983/2146/8792/445/56938/7298/6770/6496/6715/1364/4159/3066/3737/5499/15/1019/3062/100/191/1644/2673/4704/8914/6839/468/2692/5629/23596/1956/5971/9500/57805/5054/1642/5591/5371/5582/1374/8431/2932/402055/7150/1814/4914/1141/10135/6121/3398/4841/23239/9967/3172/22809/134/9099/2063/5927/4669/10062/5500/1813/3065/5501/22992/5602/5078/55294/10419/79723/5730/6096/2475/55124/5465/10075/10236/80045/5599/5936/11245/4843/1406/10514/1390/10891/23373/1859/6928/3192/8239/3184/10533/2033/4544/3727/23435/6421/1437/7080/25819/7874/55269/1453/8403/2767/8841/135/3725/5728/9475/9575/55366/4987/23064/1385/10743/112464/1815/5601/83759/6095/4862/9112/1454/4916/7071/463/23291/8473/1392/4297/406/5187/23411/9956/7054/3363/23077/22871/5562/687/10499/1407/9611/9975/107/2776/7337/56339/6532/2155/8945/7157/1628/1960/5563/1958/3615/181/79831/6478/4804/4887/196/8204/8863/79365/50865/5468/2691/54551/8553/3952/3751/8864/6720/6097/1471/4915/9607/7166/9370/1408
## GO:0009314 10874/3627/55872/10635/9212/1111/51514/993/58473/1894/8438/5888/8792/9768/65009/2237/54962/440/4609/5111/641/6770/2515/6354/7412/55159/1535/8372/57103/6247/1789/5146/4436/92815/5499/24/1812/578/15/1991/867/2956/7398/5788/5424/3383/2140/11200/7295/2072/3735/2189/5603/2792/2138/57817/9600/2780/1020/57282/1788/7439/142/23028/468/3014/1410/5743/3091/85453/23596/1956/23657/672/6240/7319/3297/23173/3157/675/57805/6356/1642/5591/5371/3593/25896/5810/1785/23746/8091/3592/3428/885/1032/6422/1814/64240/50848/54929/1432/1259/29086/4914/10010/836/1141/10135/6121/4869/1233/10856/40/2002/3398/5428/5481/2885/8533/3309/9397/120227/1026/6507/5145/26155/9099/26272/2986/208/2779/64421/79823/5275/2063/2876/2547/4867/5970/1965/400410/64782/581/5500/79035/1813/9293/5501/339/3274/4221/11073/5602/79073/9683/3713/9025/6011/4308/4988/3150/8704/2902/4193/5883/54413/22976/3746/2475/8493/7287/3265/7299/79913/63943/22954/1936/79184/10692/2332/5153/5599/3845/83658/23514/5936/8243/5148/7222/2782/3747/10276/10269/3198/5796/23373/10413/2074/51499/602/27023/3364/10524/11011/51109/207/7040/2033/7520/2071/3727/5957/11277/4157/3156/10002/778/64710/5609/3688/2916/3269/65123/4968/545/1263/351/1161/2979/7528/10988/6872/2903/2767/2235/6010/3981/611/9577/261734/2339/1497/5995/1040/6506/27020/1258/2978/8450/90410/285/7518/10277/6738/9575/5132/847/8692/4255/51720/51776/3815/1647/1385/842/11284/2073/7486/54112/4986/4204/83759/64859/55031/51455/5896/8554/9112/5423/404672/51150/5429/10636/6295/4836/22890/5475/7516/5179/3000/60626/472/598/5187/23411/7054/8491/51761/7158/5562/25836/2067/1407/2068/1196/2776/5158/56339/4763/1643/10206/7157/4776/408/23259/10522/5295/6794/1387/7320/23621/3373/7508/55364/1958/596/9187/181/9094/4216/1843/1621/595/55693/51435/4212/4734/6785/7507/2353/4311/6591/210/50507/358/2868/11346/8553/1281/7056/477/3861/5764/6387/1396/1153/388/138162/51149/1408/2625/4239/10974
## GO:0018212 9833/7272/3595/6352/51378/7804/3932/8767/3055/11009/3574/54892/4067/3458/11314/3066/26228/2253/10507/3689/5788/916/3383/1795/3600/64092/409/1464/4771/1445/7422/4282/6850/5604/5912/7124/3569/2048/7039/1956/7273/8440/5795/79834/100133941/79705/9021/3596/7525/5605/958/238/3297/1950/3059/5610/55024/5771/2047/2264/3570/3593/8651/3558/3592/885/3589/5606/9148/2051/8444/6422/22853/9031/1839/2049/7006/4914/5747/6714/6690/10006/2688/57091/920/8445/2069/134/10456/695/55620/2043/1198/4145/55359/5008/6868/941/57826/3606/2056/9244/29883/8798/7465/2321/5621/3562/2185/51704/7448/4593/5770/972/7535/2534/5062/3718/7301/55294/2041/3565/5608/2050/2475/8576/5155/5777/1636/5526/6098/1440/7016/3273/5518/975/10461/23568/2044/2074/1859/4058/199731/58533/9181/353514/26585/11116/148/23394/23529/284/1969/30844/3717/4486/7040/960/3084/3678/7132/27/4233/5581/3645/59067/1741/5609/683/5156/1742/10019/8826/6886/1437/25778/1946/640/2623/1436/7251/2064/351/1609/84619/4919/6774/5154/183/5979/5663/8460/10645/56940/2039/8995/5515/6259/51561/8692/374/3815/3690/25/2324/10152/3976/23624/79643/3670/3440/1270/4038/25998/2260/4916/3716/5607/6464/5649/3356/10188/22876/5168/7297/5580/79893/2242/2268/5756/2065/1856/3280/2263/9655/4750/7070/1196/10420/5175/5595/6416/4921/7157/2209/627/2252/8459/9149/7010/3567/4739/3082/2915/3791/4920/3643/2322/558/5590/9094/1942/948/54209/2261/10464/8829/2042/5753/2241/50507/1272/9961/3952/57396/7075/5618/2202/56034/4254/2621/9052/3480/1195/4908/5159/3263/857/2045/2690/4915/3572/150/7060/1489/3479/80310/9370/2066
## GO:0071496 1111/4521/8061/1515/875/53335/1824/3934/4316/6502/7378/440/51311/55630/6715/51765/136/4067/7412/1535/26/2950/3162/1594/51022/578/867/5024/5788/467/3383/83990/664/3600/3659/838/6513/58528/10059/468/1312/2805/1030/5027/4141/8772/5743/4055/10518/9681/1956/5469/1536/9131/3596/834/1981/958/3920/3297/5610/5594/5366/835/10991/3428/8805/1611/6422/360/81929/26263/4878/7184/3170/9971/8795/10135/6721/4615/3309/359/1026/5292/11170/80149/5251/1965/7351/199/4654/5734/6722/26608/79077/8740/2348/3745/1591/4099/3676/432/6647/552/7099/51100/10985/943/56270/2534/3553/5781/7421/654/4193/26100/2475/8493/841/25828/55270/10634/79726/5599/784/355/81631/10514/5879/5028/5030/8735/9463/64121/54434/9451/968/8897/55626/79792/3655/8915/4217/476/5587/8428/9020/23394/29103/9994/10746/10533/22938/207/7040/846/3759/7132/4780/10670/10919/6263/4790/8074/8738/6872/54407/7392/54474/4149/10458/5289/11133/4976/183/572/8131/1265/6506/3725/9750/23334/79567/2350/22927/54468/1605/659/1647/11152/6494/25994/3673/51284/30849/7486/3178/5899/27063/7100/55062/9531/23378/7098/3077/23032/23274/6662/7071/8408/5179/2022/2909/2242/54332/5287/23411/8658/2729/5562/51520/5595/6416/9759/166/25959/7157/5563/490/55846/2752/8648/440738/5164/3371/6548/10325/55364/558/596/8644/5025/8678/7248/4929/7482/22863/5029/2308/10641/54795/2353/1277/6591/5468/5166/358/4023/4214/3952/477/93664/3625/6720/7494/2621/7481/5764/27244/5138/54361/213/10631/2697/9607/57535/5105
## GO:0022604 2633/53335/7804/6347/11135/1690/8437/3055/7504/3897/4651/6354/23603/11151/10562/10507/55079/3689/3383/3475/7473/6696/10059/6285/80128/7422/221061/6357/8997/1020/7143/29780/5604/10675/51177/2048/7852/348/23566/2011/2245/9373/84079/4192/23580/4478/1123/55660/4504/6356/5967/50674/9362/5911/3984/1785/51393/7940/2932/55171/811/708/6792/7533/2049/10097/5747/1141/7101/5058/6714/11178/6091/57091/7224/1857/3987/8851/1729/1399/2043/393/6845/3792/4289/57175/2243/10371/2035/10109/4133/1954/2266/1002/6722/9762/6049/1072/25805/8153/2185/3196/55607/4241/27185/226/4099/4352/4076/4627/5962/80005/752/2534/7074/2902/157922/2768/51330/113251/54413/1627/998/9948/11344/7476/335/55558/23316/8766/5063/9699/56965/396/7429/832/1826/79784/10090/57154/5879/9175/81565/5028/55843/2017/3706/10269/23654/4825/9368/23191/55604/4168/1739/4897/9798/3037/23394/2316/23370/1600/1523/2147/960/10716/6284/10810/2664/5881/577/2244/2038/56882/1742/310/301/6281/9820/6239/6369/55785/10494/64218/7225/8994/10630/1949/816/1946/81/1436/51199/57142/1613/10428/26012/23011/10458/22999/1382/4976/221472/7430/5979/5454/10672/5663/23237/347733/4649/8874/1136/5048/3074/5728/1855/23105/79594/2039/8482/387/5458/10439/9202/9204/1398/6259/6708/6900/3815/1605/102/659/11141/25/10519/6498/57194/127833/2335/11078/9839/989/2258/10152/9270/4974/9423/50618/1630/23098/116985/23043/57698/2059/4038/5800/55435/4916/10611/9203/1808/5649/755/6474/192670/54873/2909/10395/6383/55023/5168/5789/9344/2242/23363/5802/2268/26052/1856/4070/118987/9706/23077/9693/22871/10435/23499/23025/79006/3611/7070/5071/23189/5921/7337/5530/23136/4131/4776/627/64689/115703/8322/6794/29882/4739/22902/3791/7474/54014/9024/23111/1942/7168/4804/2803/4628/23426/66008/26037/80823/10979/4734/4803/23268/65981/1793/3397/9353/1902/8829/4747/2620/5064/55742/2192/9037/22906/4653/5764/6387/23327/56920/2045/5364/6678/4035/4915/3249/6857/10631/23303/7694/3679/9723/51760/4137
## GO:0097305 6279/983/8061/1978/8836/5888/7804/7298/1236/641/6770/6354/7412/11184/114/1535/2950/5031/55915/3351/3066/578/15/867/1019/1234/3383/2539/10213/939/57817/8751/10287/3359/999/929/1788/142/9076/551/1536/131/9131/672/3596/1080/1981/1365/3157/4880/2230/117/3558/113/57476/790/6422/2742/1728/10097/1141/5732/23209/6688/2770/6531/5019/1026/65985/5997/6363/1366/1813/109/6608/7292/2720/51208/339/2185/64854/5727/6647/552/2806/4988/2534/2902/23367/841/5245/5020/9400/2904/1440/6366/1646/23514/2660/130/2782/3747/329/5030/2796/6869/3184/4040/19/9869/7046/207/7040/7284/5581/9314/3156/114881/5999/2741/4968/1946/4087/2903/3779/6774/6155/572/10400/2822/116/20/5728/10270/4736/387/3728/847/4255/5741/1605/1938/4986/1815/112/6915/2059/5423/51150/4916/31/10654/5179/6517/1495/70/2309/7200/1571/598/1392/1268/2354/3709/7054/2263/4779/5562/687/3624/56848/107/1499/2155/5729/5563/490/108/3248/10365/3371/5914/3490/8644/1621/5737/6586/196/595/9353/7048/2934/1581/2353/5950/4747/210/5468/1393/3952/761/6678/54762/1036/7049/18/4129/9370/2625
## GO:0030522 55765/2146/23532/898/6502/11240/8767/330/3654/6943/9420/1594/64135/2171/7353/23586/409/7128/865/10626/142/26191/5467/8284/246/2692/8013/79132/5165/83737/63906/5901/5536/5469/672/23019/2101/4792/5371/7334/6397/6597/8896/8202/8805/811/6422/708/89870/10432/7533/8928/9125/9971/2288/5058/6714/64127/3164/2649/1399/2063/5292/11331/55885/9970/5970/7181/10062/7311/26057/55666/3065/6049/7067/1591/131566/8856/3665/8517/7099/6256/7421/190/4838/8085/10498/6885/5608/6096/841/5245/9113/5465/55601/6233/7316/10454/1390/1540/329/9745/1616/10891/10413/331/6899/6257/9063/10524/4848/10474/2100/7314/81606/22938/3717/2033/3661/9325/80196/8312/10002/65992/5740/23054/6047/11315/23543/1655/7189/26065/9249/55818/81/2852/59344/23376/405/6872/6774/1382/55252/26508/2103/79039/23558/9612/79876/9698/10013/51341/387/5458/9575/8780/23118/7105/171023/8031/1488/51366/7291/10902/5916/79671/7376/56937/23369/3670/51389/6095/10392/1022/8554/8854/4824/79447/55325/56603/2274/9604/406/7025/5187/23411/7026/29966/6879/8626/8289/2516/2874/1407/51569/9611/9975/5925/7337/1499/25959/1601/26007/55914/2908/10521/8648/2104/5547/6258/5914/3275/8644/23426/196/8204/54941/4929/55128/4734/29997/2494/10370/6591/5468/1592/57658/4246/3952/80216/8611/6720/2099/6097/7041/247/367/3169/1408/5241
## GO:0051480 10874/3627/10563/6373/4283/23413/952/5026/3932/133/1230/8326/1236/55503/4067/114/1535/5336/11151/1043/5031/3351/30001/1812/578/2830/5024/5788/3062/1234/6375/8698/491/8989/55151/2780/1020/930/3061/2805/9474/5027/2906/6262/10518/4644/7226/57214/551/23566/6376/100133941/3596/3814/356/2280/887/6261/3777/7052/55636/8811/2769/5371/117/10134/3558/719/931/1649/56302/9002/51196/796/9446/7224/3741/920/134/5145/1729/9170/623/3710/59340/2911/2056/10800/6363/581/1813/4842/5294/773/5621/3954/10523/2185/5335/6346/9472/552/4308/2534/1604/2902/22821/57192/3146/9001/5566/793/1756/2740/3358/5020/5777/2904/2847/781/6366/492/80045/59341/784/7222/2782/5028/2785/5030/57053/6869/2969/55283/8996/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/4544/27/5581/5156/1742/302/3060/114897/304/6263/4923/7225/1906/51714/2852/7531/2903/57338/493/55584/183/5023/7009/10672/5319/116/27020/1258/3064/10345/799/624/2587/2624/4987/8398/8620/25/5170/1201/2905/2696/287/79608/25998/3356/3827/1268/1910/3709/6546/5310/51024/2890/783/2150/6622/7070/3375/5158/23075/4088/825/490/10268/845/9256/2915/5745/7474/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/5311/3270/6717/1902/1907/553/54795/53373/2247/2281/11346/7220/2946/477/2099/857/775/1909/4035/5350/2697/185/3357/6863/776/3708
## GO:0002694 3902/3620/6664/29851/3149/952/1493/6352/7037/2175/1075/56833/3932/80380/3559/6347/712/639/914/8767/51237/1236/10859/55423/1051/136/3574/3575/4860/22806/4067/7412/864/27240/3458/959/27242/11151/3162/51083/9258/4436/11314/942/26228/79915/1880/8877/3329/8876/10288/7468/8530/3689/5788/5359/916/9466/30009/2207/6375/100/3600/3659/3549/923/940/64092/3735/3929/939/5880/7128/5588/3965/9308/10808/1445/671/865/10148/930/26191/4282/4690/6850/64109/8013/7124/912/3569/83737/1378/613/5133/8772/51293/8440/2213/54900/10125/23240/8456/3071/3135/164/8808/6376/100133941/3596/4192/7293/7305/7133/7525/958/5724/728/9402/55024/6654/5771/54542/11326/57162/3134/54440/57102/4004/3593/8651/30817/3558/9760/6441/729230/3623/7940/3592/51571/10333/3109/11006/6422/6693/4878/384/836/1326/1141/5058/8832/6714/64127/3662/8379/3398/970/2885/2896/7356/4332/920/1050/3635/1026/695/25793/23308/6845/27040/101/25807/3111/55183/3949/941/80149/3606/2056/6363/10062/199/10666/10892/8744/677/5621/7292/8740/55795/11221/9306/3586/10385/11126/972/4352/7535/7409/1209/3707/6647/7099/1948/2534/3553/5062/1604/5781/3718/1269/7301/3146/3598/22976/10457/3565/998/3133/2302/5777/9093/9092/5063/6366/3956/63925/9840/3113/8943/1947/8723/5879/975/1540/7001/3142/10461/3684/11146/2796/6869/177/8673/29102/3916/1739/8915/10193/23529/5290/1845/207/7040/51043/2319/6188/634/11277/50943/59067/383/2267/3115/114548/301/7189/944/961/1178/8741/1803/11148/5585/1949/2852/4323/2064/351/284021/5169/5074/148022/135/572/2323/3566/8764/56940/4092/3594/30835/54537/79155/387/933/149041/9750/8995/2624/2736/51561/6708/64844/814/25/2294/9580/5170/3958/10077/8600/4292/9984/6095/3440/2648/3077/5896/23729/9173/5573/6813/6810/22890/8546/5819/6830/472/56603/57178/6777/1268/2242/3456/2268/3280/4317/29108/7057/9655/7158/2150/6622/7070/4345/3624/6385/56848/9846/56339/1499/1960/8654/8660/5295/6778/3567/5914/29/4602/100507436/604/7474/558/9231/57045/596/5590/4179/54209/678/196/11005/10464/4208/221395/10039/7048/57126/79679/2934/2241/9867/6469/6812/90865/3485/3952/7494/2621/857/6542/7704/2737/2615/6863/6935/3572/3479/10451/652/2625
## GO:0046879 10874/6664/952/6352/133/4067/114/56943/3458/2297/51083/2867/292/6513/6696/5208/8997/5127/6659/6566/5467/2692/7124/4160/3569/2641/3091/4644/1956/26251/3814/1080/1908/1588/25874/6927/55636/51167/5578/1374/7036/8431/3623/1394/3589/151/6422/4878/5211/2778/3170/9971/152/8447/5019/3741/3172/402/134/695/6845/65985/5008/2243/3710/55585/51768/7351/2266/3033/1813/64111/3799/773/353500/9255/2661/3745/65220/7425/5798/3553/5781/93/7074/5861/9515/654/7447/3651/2740/3358/5978/2645/594855/293/6865/9699/59341/2850/4843/8723/5879/3747/6804/5028/6616/23568/2044/23178/4825/6869/5715/3630/8673/6928/9324/80223/10765/4760/3717/668/9727/846/4544/5581/5894/2244/818/3156/5906/11315/51762/186/301/114897/23435/1803/1906/51714/1946/640/2852/8074/4089/4087/7849/10312/9230/135/183/572/27230/6514/2822/116/1136/3557/9575/2693/291/2587/2695/6447/9448/8398/8620/7432/1385/5972/8600/3976/4986/3670/7110/3077/2696/6814/2260/57818/6810/4824/56729/26056/2029/6934/1392/1268/55512/406/5991/3709/5532/5071/3624/399979/1407/777/51092/5530/23409/8609/6453/408/8660/27445/11132/8322/2752/3382/4602/22841/3350/9024/2746/8425/80024/9501/5799/3790/6717/9854/54795/23410/8773/5950/2281/10411/1393/2691/3952/8864/3625/4856/6720/6833/775/1363/8938/4035/11069/55638/2697/185/55107/6863/3667/7349/9607/150/6926/9254/114899/18/776/9370/25924/3708/80736/2922/2625/7021
## GO:0022407 10563/3902/3620/29851/1493/6352/7037/445/23560/3932/80380/5100/3559/6347/8767/1236/10859/3654/55423/1051/3574/3575/4860/4651/4067/7412/864/3458/959/27242/11151/11314/942/3329/8876/1991/10288/4072/3689/5788/916/3383/239/30009/6375/100/3600/3659/3549/923/940/939/4771/5588/3965/9308/10808/1445/865/10148/999/7143/26191/4690/6850/246/8013/7124/912/3569/83737/5133/8772/8440/2213/54900/10125/23240/3071/3135/8808/6376/100133941/4192/655/7525/5724/9402/1041/5771/2651/54542/11326/57162/55083/54440/5578/3593/8651/3558/6441/729230/3592/51571/9780/3109/5345/11006/6693/1432/2049/384/3170/836/5747/1326/5058/6714/64127/8379/970/2885/7356/51441/920/84830/23308/5340/101/2243/941/5970/80149/3606/2056/8728/6363/2266/199/10892/2113/5621/7292/8740/11221/9306/3586/10385/11126/972/7535/7409/3707/3676/5962/1948/2534/3553/5062/1604/5781/3718/4838/3146/10457/3565/998/3133/2302/10653/335/5777/5465/9093/9092/5063/6366/928/6657/59341/3956/9840/3113/8943/1947/10076/5879/975/1540/7001/3142/11146/2796/177/53827/7471/1739/3655/8915/3037/5290/65125/1845/207/3717/7040/51043/960/2319/6188/634/50943/2244/9314/59067/4155/383/2267/50488/3115/5270/114548/10019/301/22920/7189/114897/961/1803/11148/10630/1949/1946/2064/5074/135/5598/572/3566/8764/56940/3557/4092/3594/30835/2039/387/149041/9750/650/2736/51561/6708/64844/4301/25/288/5170/3958/8600/5420/3440/3077/5896/5573/22890/8546/5607/57669/57178/6777/6370/9647/5580/8613/3456/10725/3280/79414/29108/9655/7070/6385/56339/10211/8631/23075/1960/8654/5295/28984/1952/5914/4602/375056/604/182/7474/9231/57045/5590/5592/4179/10272/7048/79679/10370/6591/6469/3485/3952/7494/6387/857/2045/7704/54361/2737/2615/3572/3479/4680/55714/18/9370/652/3169/2625
## GO:0032386 51512/10615/1894/23413/1001/65009/55612/3429/136/4067/1138/3458/3162/321/9585/11314/3351/2810/1812/3753/3208/4600/9141/7545/3689/2207/7295/3638/10059/3936/10541/5880/80128/3965/999/1020/5604/10675/23636/5905/8882/1410/5743/10938/57214/5901/580/3596/10055/4478/9221/55741/10755/5605/3059/28964/5594/57602/88/57102/8898/1142/5582/10134/30817/2932/9972/8934/4878/60561/1137/1432/54471/64328/7332/1141/5058/8832/6714/6721/23209/5579/6855/7260/9818/8851/10456/5217/6845/208/55486/55432/8573/4133/7855/80149/1459/1813/3799/6608/5621/10155/11052/1660/5501/51009/3745/2010/9777/5770/5962/51100/2534/3553/5781/22916/9515/59286/23256/55294/10178/4193/3598/9001/5566/4946/594855/9530/7476/3265/3843/8724/7175/10075/11235/3998/2332/9478/7323/5936/6853/10657/784/488/9776/8723/6804/81565/975/5028/3684/5030/5784/8673/3916/8021/53371/51465/23379/815/148/1409/2316/284/11261/5296/7040/5908/8536/2664/81555/79752/55754/5906/11315/186/22994/9783/302/2931/7327/23435/8086/79778/27429/26993/2064/1263/7134/320/7531/2901/6672/8314/5116/11236/23011/4607/5868/9230/4947/8841/63928/135/23400/5023/7430/5494/5663/3566/93974/20/1855/1778/51308/2039/89781/3728/23317/10956/2624/29969/8692/79567/9520/2294/10519/288/10425/55823/4924/5170/51715/51366/9270/4935/9912/9531/22930/11142/51763/4659/8973/55781/5864/26229/6342/10427/6813/55288/6517/6830/3356/22876/6934/392/2040/9695/5569/65018/1268/5580/2242/2268/26119/29072/54741/4641/56947/51024/54828/783/22871/5562/5071/7139/56848/9846/107/23409/79628/5595/4763/9648/9581/9638/1601/7157/4131/57506/4088/10497/11132/5295/23286/665/53407/55696/23621/22902/80184/1129/2619/9024/948/9162/6843/6844/4734/23255/9847/79899/4744/10411/5108/6469/6812/4926/3952/6653/6720/2621/3305/65055/2737/5350/6857/161291/347/30846/776/9370/5174/652/22885/25893
## GO:0019932 3627/6373/4283/50852/6364/2633/3576/333/57211/5026/133/5341/3973/6351/136/7412/114/2642/5336/51083/5031/9454/4159/4502/1812/8877/3208/5024/5788/1234/916/100/8698/79924/7422/8477/55151/6850/2692/7124/4160/5027/2641/7852/2906/2827/6262/348/4644/7226/23432/1956/1240/4161/5795/1908/2280/1672/4880/997/5578/8811/117/10134/2932/1394/153/113/4158/1814/4878/6344/2778/375346/51196/5732/6690/796/9446/5731/2770/5534/920/8445/55784/2358/695/2986/2357/27040/5997/3710/266977/58529/1113/4842/11123/109/8844/5725/4761/5621/10523/2185/5335/7137/566/7535/10900/9472/1827/552/4988/2902/6754/79849/57192/3651/9001/5566/5140/1756/2740/1816/10316/3358/2475/5739/2904/4772/9699/3361/2782/6401/3747/6343/5518/10269/2044/3630/9451/9368/6014/23394/11261/6954/19/57158/81285/4760/1193/22953/5144/3094/4544/3084/4157/1979/683/11251/186/89/2931/83988/3269/1906/5196/2852/11214/1609/2903/57338/493/63928/135/183/5598/51555/7253/10645/10267/116/2978/2039/3064/10345/7462/933/799/2587/5515/2695/4987/5741/7432/10519/2981/5170/51778/8600/4935/2771/112/2983/11163/5533/2905/2696/287/23295/6662/10846/9722/23576/2274/1392/4724/2982/1910/2065/3709/2977/6546/10725/115/9693/9455/9104/51024/64784/7057/5532/5141/5562/22859/2516/3375/5139/107/5530/9759/23564/2774/8654/27445/108/10268/5164/4882/10231/7320/845/6548/2915/5745/3791/5592/79625/948/54209/5025/4887/29995/5737/196/4881/844/187/79772/1235/5311/6403/3270/6717/1902/1907/481/2494/54795/8527/51643/2281/10411/358/1012/2691/10203/2946/55273/477/6444/775/5138/11069/5350/5744/185/3357/576/23261/7349/150/3479/10266/3708/4137
## GO:0003012 10874/2146/23630/952/1824/59272/3768/1482/136/6535/28999/1535/7111/3162/7136/3757/6870/3066/8557/779/1812/8877/3753/58/4626/5024/23676/9631/2023/274/2539/100/3600/6641/29895/4726/57817/6329/147/55151/4624/9456/4606/142/8013/7852/1410/5743/6262/4151/5142/7273/1134/10539/10021/1908/7133/5724/1143/5910/1144/6261/88/2257/5578/8811/6769/2626/1147/93408/10038/151/5606/23336/4878/7135/384/4619/5747/51196/1141/5058/3720/9446/8291/152/3741/3281/134/1180/4205/7414/5997/156/80149/10911/58529/1113/199/1813/4654/4842/6722/6327/5294/6331/6336/8837/7170/2010/7137/226/7140/9472/6647/80005/6323/80763/3553/10627/9569/7074/7171/5829/4635/1145/3762/8048/6442/5566/4851/1756/10316/5608/2668/2475/5020/4703/1674/140465/2627/9312/5465/781/5152/6865/4634/1131/2660/2775/79784/488/80852/7222/5028/3352/2017/7125/8735/10891/27302/6869/4625/26287/1739/8996/58498/476/148/859/2316/5290/1837/7341/9150/1193/22953/5318/5144/3759/7132/9314/818/4000/6901/5999/186/89/4633/1829/1146/487/2931/4632/9826/23213/2741/1906/816/2852/4089/7134/11214/6324/7528/1613/4621/1160/4607/9127/493/1241/6640/6093/183/30819/5023/8913/7094/1136/4092/9475/6332/6525/10345/387/3728/7431/2693/624/10052/6781/3815/8398/1938/8912/3673/51778/9464/4637/4846/8195/5300/6915/3764/4656/4660/287/1832/3781/3488/4090/2548/10611/103910/84193/70/9722/59/3356/2309/22876/9992/1025/3760/800/4638/4762/10848/2982/1910/5756/6546/7423/3363/5224/3672/7169/5286/51761/783/10174/4604/30845/6588/7139/3784/1760/9732/4608/72/5530/2702/6416/9759/4636/23125/7138/8654/23493/4088/490/845/8106/6752/6548/29119/3736/126393/7402/10087/5592/7168/2149/1490/5025/4887/29995/8678/2628/8082/5021/844/444/4208/3270/6717/2308/3752/1907/2934/481/54795/1140/10580/2281/10398/26509/10203/8470/10324/3952/2946/3778/477/6444/3693/9499/4653/23327/857/775/1909/23171/5350/55800/1264/2697/3357/7349/25802/3572/150/3479/5348/18/776/4629/23704/1311/2593
## GO:0016049 6280/6279/6790/9355/9928/53335/952/5645/8437/27346/1029/3897/1535/51083/54512/5459/1594/2810/55840/1031/8877/10507/3009/2023/2539/10591/3475/7473/6696/84722/29948/80128/57817/5588/8751/7422/1020/7143/5393/5467/55210/2395/83737/7852/1410/8904/348/551/1956/7490/23566/23404/5795/9373/1981/4504/57805/5967/54825/23769/9362/3578/5371/6446/2786/2626/3984/3558/4686/79577/1785/51393/2932/10038/6597/5716/51320/1032/6422/4878/6792/1839/3326/51196/5058/8936/5931/6197/7224/3172/8851/1026/6832/8828/1399/393/7414/4722/6868/5997/684/10371/84298/623/11170/5361/27296/4133/3320/1954/400410/1002/84861/9538/10479/6722/6049/11054/51379/56981/11007/8153/51009/51094/2661/2185/6195/27185/4099/131566/9472/3676/552/3484/3486/7074/8085/51330/54413/998/51176/2475/11344/5245/9166/6386/5465/6098/55558/23242/8766/22954/51193/9699/51079/10110/10298/1826/6456/51548/3273/57154/5518/9175/10276/81565/28956/2017/58189/27302/9792/4825/3630/81621/8239/23191/1982/26585/9746/4897/8548/9798/2100/11116/148/978/859/23394/8643/7046/9150/207/2147/7040/668/3621/634/2664/23251/22850/694/60676/3688/5999/5270/10201/8826/79602/186/4633/8725/22883/2931/2016/9826/10235/1906/1946/2658/4323/7251/51199/2064/4089/11214/351/1654/8314/7528/91/57142/23011/57446/22999/3020/1382/183/81501/5048/1855/23105/79594/10013/8482/387/5458/10439/3300/5515/6259/8692/102/659/25/57144/10519/127833/6494/2137/2335/10425/9839/2258/4682/5916/5300/9423/50618/9211/1630/6880/55031/55602/57698/55540/3488/5538/4916/4879/10611/6662/1808/5607/8711/57669/64321/1154/9344/29946/5802/6595/23411/6405/9706/5532/23499/23025/3611/26053/5071/3624/56848/5925/55909/6416/23136/1499/7157/4131/79960/627/56994/4088/23767/6794/29882/94/51447/6548/22902/54879/3373/3275/604/1027/55364/322/7474/51616/29104/3490/596/5590/23111/2803/6586/4881/8425/84162/26999/4692/7042/65981/9353/8829/7048/323/201163/55384/10516/5468/6695/8835/80208/8470/9037/23677/9201/4856/2273/7481/6387/23327/56920/2203/2045/4035/4487/3249/5167/64061/6857/10631/2487/214/2697/185/3913/3487/7349/3479/51760/80736/4137
## GO:0016570 890/983/2146/9212/1111/6790/891/59336/11240/56943/200424/1789/2005/3006/3066/8607/63976/1812/3008/7468/3009/2140/54496/2138/7422/10626/3276/86/1020/7443/6839/23028/8284/1786/55689/9474/2641/54107/23210/3007/5536/11177/8089/80218/672/7319/4504/675/1642/3054/57602/9734/8819/5578/7334/2091/10943/79577/8091/8202/55611/10432/9031/9757/2672/9971/29117/10856/3720/8986/3662/6688/8242/5579/1017/387893/26155/1810/5081/8193/5927/10629/55183/6877/2139/4654/4842/3065/26038/6418/54934/9329/4221/79918/22992/5079/9025/59335/51322/23774/3553/6883/22823/11137/51547/80853/79685/51200/10419/79723/2959/10445/56950/8085/10498/6885/7862/5253/22976/4524/5977/51176/5978/3141/79829/5245/8861/10664/7404/55124/4591/10075/4287/25862/9555/79184/2332/64324/5599/56979/63925/6795/26097/51548/9733/7324/5929/3622/23476/23512/8295/10269/10891/55011/56341/9960/9958/6598/10524/10474/5587/9085/94104/10765/55274/9869/8726/23186/22938/3717/7040/23133/51043/2033/22933/1386/50943/11143/4000/8888/6881/79697/11176/9682/8520/10919/23569/9767/9320/6421/55818/5585/55870/10933/10600/26993/8464/84759/7874/4089/8314/27097/55209/6872/8110/6497/6871/51562/64754/54556/23558/54531/51147/53615/79885/3299/10847/51773/10270/8450/25865/11107/7994/10013/9070/7799/9575/80335/23168/9913/2624/6018/64769/55140/54904/51720/9739/2122/171023/30827/55683/80349/1487/51742/23326/51366/7291/10902/3976/6304/3670/6045/4204/6880/8850/79813/151050/9646/2648/5896/7403/57634/55167/138151/84444/54880/23135/84193/6830/1911/10782/8473/472/1025/112869/65018/6015/7703/51230/9647/11108/5580/6314/4297/27005/5187/23081/79903/23411/9730/29072/54623/546/10014/23067/6879/5562/25836/6622/10336/23304/26053/56848/57343/5595/339287/9759/1643/1499/7157/79960/84148/408/23741/5563/6500/5926/1387/8648/23429/23522/7320/3275/4602/51564/604/51111/322/2145/9252/79858/79831/26036/55693/9810/23338/6419/5252/201163/23410/6591/8864/6720/4674/57332/23030/7786/7349/4582/2625
## GO:0031346 6280/2146/7804/3934/65009/11135/8437/79734/5365/1236/54149/3897/4830/5898/4067/23603/10507/7336/54849/7473/10059/6624/5880/7422/8997/23028/25940/4690/5604/5027/10801/7852/348/5216/23566/2011/6376/55835/9373/84079/4192/23580/655/91752/238/411/5967/9362/57118/3984/3558/1785/51393/5597/10807/9148/6792/79647/4914/10097/54606/5058/6714/6091/2896/3309/7224/1857/2043/6845/202018/5997/57175/84298/10109/1954/2056/6363/1002/49856/10300/6722/8837/8153/2185/5584/55607/27185/4076/23300/8976/2534/7074/55704/50944/6993/10178/9001/51330/1627/998/2475/7436/11344/3265/8724/5526/23242/23316/8766/2332/5063/9699/56965/6366/396/7429/2660/1826/2889/57154/64764/5879/9175/81565/3706/26499/23654/9897/9662/3630/10787/23373/4058/51657/23191/7471/55604/653/3655/6014/9798/5587/23394/7046/9842/1523/57787/2033/8536/27/2664/4780/23433/55754/5906/1742/51762/8826/9820/8578/6239/10494/816/1946/51199/6324/23011/10458/22999/1382/4976/183/5979/54874/55329/5663/347733/10163/116/54664/10677/8874/5048/27020/1855/5754/375790/950/54700/79594/3064/8482/387/5458/23613/9750/64175/3815/23064/8175/659/11141/6498/127833/2335/3673/9839/989/27063/9423/50618/80199/116985/2648/57698/9896/57498/9139/2260/538/4916/51517/9696/5649/6474/2909/5168/5789/1268/2242/23363/26052/1856/9693/54828/51761/22871/10435/23499/23025/2150/79006/3611/26053/5071/466/8321/9759/6453/9638/4131/9738/64787/162427/627/8322/6794/29882/22873/22902/3082/322/7474/81545/9231/2823/54869/79625/4804/2803/23426/324/3675/80823/4803/1809/65981/11075/22849/9353/1902/8829/2042/5176/5753/4747/2281/1272/5064/51364/89795/9037/585/5274/22906/5764/6387/23327/4035/4915/6857/7043/9863/55714/51760/4137
## GO:0001503 6664/4318/9636/8792/23560/1230/8326/26271/8200/1051/79412/2296/29887/1594/50617/1749/3381/10507/7290/9087/9188/1834/5552/7473/22943/3549/3376/2254/865/3336/55151/2824/246/7480/7124/5027/3569/5743/10492/3091/506/1956/525/9770/1959/4192/655/10736/4880/5594/6261/2101/265/1305/3570/2091/22800/6422/54857/25842/1432/54928/2778/26578/249/5747/3398/1050/651/6238/202018/3636/5251/1758/9350/5734/2131/51025/6608/2132/353500/7067/7477/1660/2185/4221/2194/1591/43/4617/5727/27044/3486/1192/93/2303/7171/656/654/6569/4091/5566/10457/4851/51176/6096/5978/5245/5020/4665/6615/55787/2201/6657/3183/5701/10514/57154/1213/10269/6869/51374/3192/81621/9451/653/1435/26585/4146/3516/5587/4209/1969/433/51430/207/103/7040/846/4745/3727/22856/3726/537/197/23051/657/4664/79697/51741/1052/1655/7189/4041/6272/9249/8994/25819/22904/2623/2658/4323/8074/23376/10312/6497/649/3020/1021/9562/2822/1836/92/3491/10766/8482/387/23317/6169/847/650/2736/55973/57003/23353/55366/374/6781/6209/5741/659/9260/25937/23020/8600/9464/7291/56998/1893/4656/4038/8519/9923/3488/4090/4325/55790/54880/6662/6670/7071/5179/23601/6474/79176/55512/64131/4015/2268/2719/6546/2263/7020/90/7286/8626/3611/25836/3199/154/8321/2068/10140/26156/4086/5595/4763/9759/5087/1499/4921/23314/7059/9902/4088/3399/490/4057/7010/860/2735/4882/3371/2662/3082/1291/5745/51564/1301/90993/182/5191/4920/4435/7474/57045/596/6779/1901/8840/1490/1280/8646/10272/2261/4256/7042/3397/84059/4208/4322/3400/1278/4077/8642/54795/56172/1277/6591/6469/1290/9365/3952/3295/1513/4488/79633/1009/4313/91851/7481/4653/5764/1462/116039/5364/8817/6678/7704/658/54361/5167/2737/5744/2697/63923/4330/7043/6863/3572/7166/3479/4958/1311/652/54829
## GO:0050708 10874/7850/4321/5004/2633/952/6352/55612/51311/914/8767/91543/1236/10859/9447/4067/114/3495/56943/2821/336/3458/959/27242/3418/64135/2867/292/3783/2597/7096/9466/5552/6513/23586/10059/2219/3735/5208/7128/3965/10626/5127/5047/6659/929/26191/6566/5467/945/4282/6850/64109/9474/7124/5027/3569/56253/7097/2641/348/3091/1956/7186/7273/2213/26251/10125/3556/6376/3596/834/4192/7293/1080/7133/958/55024/9734/25874/5578/5371/8651/1374/1147/8431/3558/55737/24145/10333/6422/1814/51744/1432/3552/5211/384/382/3170/55655/9971/6714/64127/5481/152/8447/79651/5019/3741/3172/402/84830/84818/10802/101/65985/5008/25807/2243/3710/7855/80149/51768/7351/6363/10062/2266/199/3033/5478/1813/5734/64083/3799/773/353500/57824/7292/1660/3745/65220/3586/10385/11126/6346/43/192683/7099/5987/4988/3553/5781/7074/9515/654/7447/3651/3146/2740/3133/5978/2645/50855/293/335/59341/2850/4843/5879/3747/6804/23208/6616/8754/23568/11146/2044/4825/5715/177/3630/3605/9324/10961/79792/353514/80223/284/81285/4760/3717/7040/9727/846/64215/3661/4544/5581/50943/2244/23086/1401/3156/4155/27202/5600/3098/5906/7114/114548/80772/186/301/7189/965/55801/23435/1803/1946/640/2852/1436/6992/10312/23765/26253/54474/22900/5289/135/23400/572/7430/7009/27230/6514/2822/5319/3566/8736/27159/55763/23607/933/9575/2693/291/64175/2695/8692/9448/55366/83786/8398/8620/25/2335/23705/7291/1815/27063/3670/11027/5066/7100/27236/3440/55540/2696/307/6711/9173/57818/6810/26525/23601/26056/2029/6934/1392/55691/1268/406/2268/5991/3709/4317/29108/5532/2150/4345/5071/1992/777/51092/5530/23409/2702/5595/8609/22861/7424/57506/408/10497/8660/11132/3567/2752/28984/3382/322/7474/64285/9024/5590/947/2746/8840/2149/54209/4628/80024/9501/26297/7042/3790/6717/9854/79679/283/54795/23410/5950/727/2281/55204/10411/4023/90865/23005/3952/1149/8864/3625/4856/6720/7494/2621/6833/775/8938/4035/11069/2615/10631/55638/247/2697/9590/55107/7043/3357/3667/79971/9607/150/3479/9254/114899/18/776/25924/3708/2625/7021
## GO:0072001 55165/6664/4318/8842/445/6772/4609/1063/9688/6943/28999/5613/2297/2296/5471/4953/2253/4072/8549/56913/7380/2138/10247/10220/8710/7422/6659/8772/5629/23210/9245/7490/2650/100133941/79902/655/9500/10736/4357/10018/1286/55083/3570/29927/1512/6422/5455/3975/4643/384/57122/51196/760/3237/3398/5017/231/359/6492/2043/64220/9788/3579/9244/581/9350/3227/6608/5915/51107/8837/7477/10409/5727/7475/1948/7917/93/2303/23279/654/1282/6569/4091/793/23322/2668/2302/5155/1636/3691/6495/9510/11020/10269/10413/6928/7471/1739/3655/10972/4854/26585/3037/284/7046/7040/8879/11277/5156/8826/7369/1285/186/26146/54475/23213/79810/3911/80144/4089/4358/4087/7849/51668/25976/317/2028/5154/26508/183/4326/79727/5979/3217/6382/90410/285/4092/3207/4868/847/650/2736/8692/7161/55366/2294/25937/5972/842/3976/55746/51301/56998/5420/3764/4038/5800/8854/4090/2260/7827/6662/4824/38/59/64321/5076/56603/2828/2719/8516/4070/3280/2263/403/7020/5310/9104/3611/25836/6385/5175/4086/4763/54806/5228/5087/1499/25959/80000/4088/3399/7010/4811/3248/5914/80184/1028/182/4435/1958/6299/7474/7466/9231/596/947/10272/3675/7248/84159/7482/5311/26249/2246/10252/7042/4208/9353/8829/5176/201163/8642/5950/4311/2247/9742/6469/1592/79633/7481/5159/116039/2045/7704/5125/54361/2737/65250/185/3913/9863/2200/1634/23371/80310/9370/2018/652/2625/7021
## GO:0044706 3620/8061/4318/1515/952/4316/133/639/705/1364/8372/5670/5471/1594/23764/6513/6696/3549/3291/3965/1244/6406/8997/5467/1312/5743/63978/5469/7372/6862/7319/5724/3297/5594/10661/2182/10959/1394/10991/113/790/151/811/259/4878/708/64750/1508/2288/10135/796/26528/5368/7356/152/231/5997/49/55585/2056/7351/682/1723/2113/10155/29924/5858/4221/10876/23780/6647/4184/552/6256/23641/2806/3553/7421/23633/29842/4838/2683/2475/5020/5671/3845/43847/2796/6869/5669/5675/5069/79816/5678/207/7040/7005/3678/5680/5676/3726/27120/5740/383/5270/79602/1829/55870/1906/91/54407/3020/4012/183/5023/412/116/8909/6013/3074/92/1833/824/285/6866/10935/1828/2693/2695/6781/8398/8620/659/85360/7076/3673/3976/5066/5672/53405/397/3077/3488/6670/6777/1392/1268/406/2354/7026/8434/6159/8289/56848/5673/5595/6532/5228/2013/84172/3248/5914/1543/5016/3490/596/181/5737/6019/3675/5021/2488/8605/7048/2353/7216/2057/1393/2192/7056/3485/3952/5618/4313/2099/5764/8528/1471/10916/5125/54361/5744/2697/7043/6863/367/7349/10266/1307/10699/8614/5241
## GO:0001819 55765/4321/3620/10855/3595/5004/55612/6772/51311/914/8767/91543/1236/10859/330/3654/9447/1054/1051/136/4050/3574/3495/1535/336/3458/959/5336/3148/3162/5435/64135/942/3066/2867/8877/3329/1991/10288/2597/81030/5788/916/7096/9466/9188/2207/3394/29923/6375/3600/3659/923/940/7353/23586/2219/3735/3929/5603/5440/4063/1652/5588/3965/8710/9308/10148/10626/5047/929/26191/4282/468/6850/64109/8013/7124/5027/79132/3569/4049/56253/7097/8772/5743/63906/3091/64170/5142/7186/1536/5795/10125/3135/8808/3556/6376/672/3596/834/4192/7305/958/5724/10622/728/5610/5054/5591/63940/57162/3134/54440/3570/3578/3593/2626/1147/3558/729230/3592/51571/3428/6397/3805/5437/24145/10333/719/5345/7294/6693/1649/27190/51744/3663/708/1432/3552/89870/55655/6556/6714/64127/3662/9533/4615/920/2069/661/84818/101/5008/6868/941/10394/2547/7855/4361/5970/3606/9261/6363/27035/199/1813/23643/26057/5734/10892/55666/57824/7292/1660/51704/8288/3586/566/11126/6346/972/3665/192683/10621/6647/7099/943/4791/3553/5781/23633/4838/3146/6885/3565/8809/3133/5045/1545/3265/10084/22954/55601/59341/27297/1653/3113/55703/975/329/11146/10554/177/3630/3605/602/9451/567/79792/9181/353514/8915/51728/5144/3717/7040/2033/7520/6188/3661/1386/50943/59067/4155/5600/3098/10623/3115/11315/114548/186/301/7189/26065/5434/965/55801/23213/11148/1437/10564/5196/2658/1436/4790/351/1654/23765/405/29110/26253/148022/22900/6774/51428/183/3566/116/10159/27159/718/10555/25865/9698/3594/9475/8482/8780/51561/8692/83786/7105/25/23705/1385/2324/51284/7291/79671/23369/3670/11027/7100/6095/7098/10392/7110/55540/6711/55718/9173/8737/23601/6777/23236/2268/29072/11334/4317/29108/7057/2150/4345/5441/26060/3315/5595/22861/10211/1499/4776/26007/57506/4088/5295/1387/6778/28984/3082/5914/4602/3554/1958/7474/5590/947/4179/2149/948/54209/54941/9208/10464/57493/29997/79679/4060/727/4023/90865/3952/7494/51157/7481/4035/1191/10631/247/9590/3357/26137/7349/3572/150/114899/9370/2625
## GO:0035690 890/983/2146/1978/53335/1894/5888/6663/7037/3934/445/56833/4609/8767/5111/116372/641/6770/6715/9447/51765/54541/4830/6354/11184/2730/114/1535/26/1789/5471/3162/3757/3351/4502/3066/779/1812/8877/969/1019/5024/3383/664/1132/11200/7295/1317/22843/1644/8807/5831/10280/5603/7128/10105/8751/8914/1244/55151/999/1788/26191/468/2395/8013/7124/5027/3569/11335/7852/5743/6262/1663/10518/7226/1133/1956/5536/5142/7186/1536/7372/28960/9131/672/1080/6001/5724/3297/4504/5594/10131/6261/2551/2230/2769/5911/26291/140885/1785/8091/113/328/790/6422/1137/7184/2742/3326/4914/1728/1977/27158/1141/6714/64127/6688/2770/3309/1017/58530/9283/8851/1399/156/5970/80149/5660/199/2861/2113/109/8837/5621/2348/7023/3586/6647/23641/51507/4988/2534/3553/60/2168/4193/51510/3746/5978/23367/1545/9400/5155/5151/11235/2332/1131/23514/2660/4843/2782/3747/10276/5028/1616/5030/10891/54434/2021/9181/4217/3184/10533/7040/5908/6188/4233/11277/5581/9314/4780/383/5906/11315/186/10494/6263/7225/2741/1906/1946/4790/6872/2767/5074/493/10458/3779/4976/5598/572/64754/2822/1136/5728/375790/9475/10013/3728/59338/7431/1398/2350/23064/25/11179/5972/842/3178/2771/112/2983/7098/10392/4659/1800/8737/23135/6662/4824/1495/2309/9992/5076/65018/1392/7703/9647/55512/5580/55139/4297/4548/23236/9101/23411/3709/7054/6546/2729/546/5532/5141/5562/687/5071/3784/56848/107/2776/5530/5595/1499/7157/2908/5563/108/6778/8648/55696/845/10365/3082/4602/3791/55364/1958/1129/558/5025/4314/196/8678/5029/3397/4208/9353/2308/5176/54795/5860/1393/358/2946/2621/51157/1471/2203/388/57332/5138/4487/80310/9370/10974
## GO:0010769 2633/7804/7504/3897/23603/10562/10507/55079/3475/7473/6696/10059/80128/7422/8997/1020/7143/5604/10675/2048/348/23566/2011/84079/4192/1123/4504/50674/5911/3984/1785/51393/2932/811/708/6792/7533/2049/10097/5747/1141/7101/5058/11178/6091/57091/7224/3987/8851/1399/2043/393/6845/3792/2243/10371/10109/4133/1954/2266/1002/6722/9762/6049/1072/8153/3196/55607/4241/27185/4099/4352/4076/80005/7074/2902/51330/54413/1627/998/11344/7476/335/55558/23316/8766/5063/56965/396/1826/10090/5879/9175/81565/2017/3706/4825/23191/55604/4168/4897/9798/3037/23394/2316/1600/1523/10716/2664/5881/577/2244/6281/9820/6239/10494/7225/10630/1949/816/1946/81/51199/57142/26012/23011/10458/1382/4976/5979/5454/5663/23237/347733/8874/1136/5048/5728/23105/2039/8482/387/5458/10439/1398/6259/6900/102/659/11141/25/10519/6498/2335/11078/9839/2258/10152/9270/4974/9423/1630/23098/23043/57698/4038/5800/55435/4916/10611/1808/5649/6474/2909/6383/5789/23363/5802/26052/4070/9706/23077/9693/22871/23499/79006/3611/7070/23189/7337/5530/4131/4776/627/64689/115703/6794/29882/4739/22902/7474/9024/23111/1942/4804/2803/66008/26037/80823/4734/4803/65981/1793/3397/9353/8829/4747/2192/9037/22906/4653/6387/56920/2045/4035/4915/10631/23303/4137
## GO:0006979 9833/6278/890/983/5163/2146/4521/8061/4318/1894/952/3934/6772/2643/5111/1236/6770/51765/1719/2730/5693/1535/7296/2950/3162/4688/3066/54205/30001/2253/51022/578/8877/8876/7444/664/2539/11168/7295/100/8807/5831/10280/5052/5603/8989/4689/7128/10105/215/1244/142/468/2395/8013/7124/54363/3569/50506/1410/221/5743/348/4151/3091/7226/1956/5536/7186/1536/23657/9131/1421/655/4248/4700/3297/4504/5034/5594/10131/4277/9588/1612/5371/2626/1147/140885/55290/1785/3417/328/10333/54929/1137/26034/6780/1728/51734/836/54583/6714/4841/7356/1017/9283/3741/57707/695/79400/25793/2876/4710/5970/80149/3848/5660/1965/7351/6363/27035/79109/199/2861/2176/2113/9361/8837/4520/5621/2185/8288/3586/2937/337/6647/7099/5798/2534/55294/5829/5625/2168/2877/4193/9943/2119/5978/4170/1545/51384/25828/5151/11235/55270/2882/9555/10110/5599/4720/2775/488/2936/3840/3747/10276/4353/7001/5516/8754/10891/5796/6869/3630/2074/26287/2021/7471/7352/8996/4217/5587/8428/3184/54840/10533/207/3717/22933/2071/6188/4233/11277/9314/4780/22850/8575/5893/383/5156/11315/10494/6421/7225/1906/4968/9962/27429/4323/4358/1263/351/1161/405/8455/5074/1861/2054/23400/10587/5598/572/318/5663/10645/3725/2879/824/6382/10013/59338/10935/1398/847/23334/8692/4255/374/23064/25/1938/11179/7515/55074/22925/11284/7486/4846/5601/2983/51389/1800/53905/29957/8737/538/9529/5445/10636/23135/6810/9973/5179/2309/79912/5076/1571/6667/65018/7703/55512/5580/55139/4548/2110/406/23411/6546/2729/9104/4779/5742/5562/4025/4482/6622/5071/10314/2067/3315/8321/2068/7337/5595/10550/1499/1718/7157/2880/5563/6649/6778/5164/10365/3082/2878/3373/4602/4153/55364/7173/3043/558/3240/596/2034/8644/1843/7168/948/9124/4314/8678/7248/51435/4929/11030/79772/5311/7837/11019/7507/2308/2353/1277/2241/79899/10516/6414/210/2281/50507/358/51314/2530/10218/7350/761/4313/10628/51157/5159/27244/1471/388/57332/8309/347/10202/7349/6898/80310/9370/4137/8614
## GO:0007568 2305/3868/597/983/9212/1111/4521/1515/3159/8438/4316/445/1075/133/712/7298/26271/1029/3654/8564/7412/2730/8942/5449/4436/6870/30001/51022/3889/578/2956/3689/3383/239/11200/706/100/22943/3600/2290/6185/1644/4726/57817/1788/9076/4282/5604/2692/3014/1030/23636/3884/1410/5743/3135/79677/6376/27101/7133/5933/675/5054/5591/5594/835/5371/8091/3805/328/811/1432/2027/384/4914/1728/10135/4869/3398/5428/6531/2885/8550/1267/3987/3635/1026/26272/9521/5309/23137/55532/7077/5970/2056/1965/7351/9516/6722/9361/11231/5621/1284/1738/3416/55607/3586/2937/5079/6647/131601/3484/54708/4791/218/29842/3651/10498/7014/2475/3265/51384/9093/3845/7015/2775/5028/3622/4353/10269/10891/2796/177/968/2021/7471/7352/51343/148/8301/10533/5144/207/7040/821/8932/3727/11277/4780/3156/4000/80317/657/383/267/7225/4889/1906/4968/545/27429/351/5074/3779/317/6774/1021/4976/183/27230/5663/53615/6506/3725/8893/5728/2879/7994/7799/847/8692/1605/10000/25/1938/11179/7076/1385/842/22925/7291/7486/4215/6909/51389/22937/5423/3488/56729/5179/2022/1495/3356/2309/472/9992/5076/57178/1268/5580/406/23515/63826/1910/23411/7054/4335/2729/9104/51761/8626/3611/6622/2516/2067/710/2068/26156/5530/5595/7157/6558/490/22846/4017/268/4303/2915/5745/1543/604/1028/6787/596/1490/4887/80169/8678/23268/7048/2934/5176/23410/2353/5549/4311/50507/3485/9365/3952/3861/9891/10769/6720/5159/4035/347/7043/1634/6926/18/1311/5105
## GO:0001822 6664/4318/8842/445/6772/4609/1063/6943/28999/5613/2297/2296/5471/4953/2253/4072/56913/7380/2138/10247/10220/8710/7422/6659/8772/5629/23210/9245/7490/2650/100133941/79902/655/9500/10736/4357/10018/1286/55083/3570/29927/1512/6422/5455/3975/4643/384/57122/51196/760/3237/3398/5017/231/359/6492/2043/64220/9788/3579/9244/581/9350/3227/6608/5915/51107/8837/7477/10409/5727/7475/1948/7917/93/2303/23279/654/6569/4091/793/23322/2668/2302/5155/1636/6495/9510/11020/10269/10413/6928/7471/1739/10972/4854/26585/3037/284/7046/7040/8879/11277/5156/8826/7369/1285/186/26146/54475/23213/79810/3911/80144/4089/4358/4087/7849/51668/25976/317/2028/5154/26508/183/4326/79727/5979/3217/6382/90410/285/4092/3207/4868/847/650/2736/8692/7161/55366/25937/5972/842/3976/55746/51301/56998/5420/3764/4038/5800/8854/4090/2260/7827/6662/4824/38/59/5076/56603/2828/2719/8516/4070/3280/2263/403/7020/5310/9104/3611/25836/6385/5175/4086/4763/54806/5228/5087/1499/25959/80000/4088/3399/7010/4811/3248/5914/80184/1028/182/4435/1958/6299/7466/9231/596/947/10272/3675/7248/84159/7482/5311/26249/2246/10252/7042/4208/9353/8829/5176/201163/8642/4311/2247/6469/1592/79633/7481/5159/116039/2045/7704/5125/54361/2737/65250/185/3913/9863/2200/1634/23371/80310/9370/652/2625/7021
## GO:1901214 4605/9928/6352/2019/6347/712/8326/2020/8200/6770/54541/1051/8564/2730/57103/11151/3162/4436/5641/2253/867/10936/3689/7336/2539/16/10525/22943/10280/409/8883/5457/1020/142/2558/468/7159/8013/7124/8882/348/3091/5536/7186/2213/23657/6376/9131/3596/4192/23321/1981/356/7305/7133/3297/4504/728/2047/10018/3134/997/835/10617/5582/26291/55737/2932/22800/10038/10333/8934/1649/3326/4914/1728/836/7965/54583/1522/2002/4841/2896/2895/57707/8851/134/25793/10763/2914/5309/101/2876/2562/55532/5700/2056/9244/1965/581/1113/5621/9040/6418/2185/5584/3745/116986/2561/3586/4099/6647/8517/7099/1948/2534/4296/2902/7301/55294/10457/28996/2668/2475/5978/841/1271/4170/3265/2904/5465/1440/5063/6495/3845/7015/1616/3684/10891/54434/27023/7471/55626/58533/1435/4217/23394/23529/284/11261/5290/7314/26281/8301/10533/207/3717/4544/1386/91304/6620/11315/6733/2898/27429/2901/29110/26012/6774/3981/29082/135/23400/6093/572/112399/5663/4835/3725/824/387/23017/163/8846/25/5966/5803/1385/5170/55074/842/429/3670/5300/23368/1201/1630/4204/23098/26471/1270/5538/5913/7516/2309/472/598/65018/23411/2065/7020/2729/3672/51024/3611/6622/4345/5071/5921/10314/8321/6416/4763/9759/1499/6453/1718/7157/4776/408/23621/4602/4435/1958/7474/7466/558/596/947/79625/2149/80823/54463/7248/4929/219699/7042/4208/8829/5176/2353/4747/6812/7832/4671/6653/2045/4035/4915/1191/10752/7786/7043/7349/27324/4137/1524/2625/7021
## GO:0043406 983/55765/2146/8792/8767/5871/3654/136/11184/959/6283/1991/5788/22943/3735/1852/1464/1445/7422/7164/4282/6850/5604/7124/5027/7852/7039/1956/7186/23566/10125/5149/100133941/79444/1908/5605/958/238/9500/1950/728/5610/5594/7334/10333/151/5606/1432/1849/4914/51196/1326/5058/6714/64127/6091/2688/2081/1857/8550/134/1399/2043/2357/2914/101/7855/2911/9261/6363/7311/23533/5291/5294/4342/2321/7477/2185/5770/5602/972/4294/6647/8517/7099/3553/5781/4296/7074/10178/6885/5608/3265/5155/11235/5063/3845/6233/7316/2889/5148/10454/9175/975/28956/7001/60370/2785/8754/1616/177/2074/4616/10961/9518/4217/9020/7314/7046/10746/3717/4486/7040/6188/3084/5894/9294/5609/5600/8826/23162/7984/7189/5585/1906/7867/2064/11214/5154/221472/5979/5663/51495/4293/5319/1847/10818/79594/51347/11183/1398/8682/650/29969/7161/23118/51776/3815/1647/9839/8600/4215/1815/10392/23043/10595/57498/10912/2260/8737/4916/5607/6464/3356/9064/9344/1856/8491/3672/8325/8567/7057/5562/3611/8649/23328/5595/408/8654/8322/3082/4920/27347/3643/7474/2322/4216/2149/11211/2246/4803/1902/727/2247/1848/50507/4214/25759/4254/4908/5159/2690/8817/7786/7043/3357/57551/9607/150/3479/652
## GO:0046883 10874/6664/952/6352/114/56943/3458/51083/2867/292/6513/6696/5208/8997/5127/6659/6566/5467/2692/7124/2641/3091/1956/26251/3814/1080/1908/1588/25874/55636/5578/1374/7036/8431/3623/1394/3589/151/6422/4878/5211/2778/3170/9971/152/8447/5019/3741/3172/402/134/6845/65985/5008/2243/3710/51768/7351/2266/3033/1813/64111/3799/773/353500/9255/2661/3745/65220/3553/5781/7074/9515/654/7447/3651/2740/3358/5978/2645/293/6865/2850/4843/8723/5879/3747/6804/5028/6616/23568/2044/23178/4825/6869/5715/3630/8673/9324/80223/10765/4760/3717/668/9727/846/4544/5581/2244/3156/5906/51762/186/301/114897/23435/1803/1906/51714/1946/640/2852/8074/4089/7849/10312/135/183/572/27230/6514/2822/116/1136/9575/2693/291/2587/2695/6447/9448/8398/8620/1385/5972/8600/3976/4986/3670/7110/3077/2696/2260/57818/6810/4824/56729/26056/2029/6934/1392/1268/406/5991/3709/5532/5071/3624/1407/777/51092/5530/23409/8609/6453/408/8660/11132/2752/3382/4602/3350/9024/2746/80024/9501/3790/6717/9854/54795/23410/5950/2281/10411/1393/2691/3952/8864/3625/4856/6720/6833/775/8938/4035/11069/55638/2697/185/55107/6863/3667/7349/9607/150/9254/114899/18/776/9370/25924/3708/2922/7021
## GO:0048568 79733/5080/6664/3576/10733/65009/2019/133/639/1482/6491/2020/50515/79805/6496/2709/1051/6943/6535/430/2296/5459/8820/8557/2304/2253/1749/7545/7262/100/4647/3549/50814/3638/2138/4522/2254/7422/257/6789/6768/4188/5604/9775/8013/7124/474/2048/613/5629/6262/3091/1956/525/5469/9021/6862/655/3297/10736/5594/10049/9421/55636/79977/2626/10959/55212/23513/5456/25806/53904/3975/8928/2778/79955/54583/7547/2637/60529/8563/3398/2885/6788/6434/1050/7274/8323/10763/64220/4669/7855/1954/5426/3227/6722/6608/5915/677/10155/7477/29924/9394/3562/2348/3586/5079/4617/5727/7289/6647/2303/7472/4838/4851/28996/2668/10653/841/1046/51384/5155/59343/6615/23242/2201/6495/51098/3203/6343/3142/57053/3198/10413/6928/6899/3236/9368/7471/653/1739/27173/6134/3516/1969/7046/4760/207/7040/668/51168/8932/3211/3726/10660/10083/6932/1045/8575/657/5156/10019/26146/6886/1437/9968/3856/6692/123872/1906/79728/3235/2623/4323/4087/65979/9573/7849/405/26005/55584/57599/5154/55764/2323/5663/53615/10818/3217/204851/1855/3491/5754/55081/3207/54345/9132/9750/6169/2624/2736/55036/3815/2294/7976/11078/9464/7291/3976/5916/8195/9423/5887/6909/80199/9645/7403/8854/9935/10427/2260/4325/220/6662/6670/2022/1750/6293/64321/6474/8521/5076/7703/79893/4762/4297/3218/10848/54903/51141/8516/1856/5333/7054/7026/29072/4237/3280/2263/7020/5310/9620/90/7942/5930/51761/25836/3880/3199/8289/579/2067/3204/2068/2702/5595/54806/5087/1499/2295/3232/7157/2535/23314/2299/10265/2186/23493/4088/3399/22846/860/8648/2735/5914/29/10253/3373/3791/1301/3215/80184/1028/4920/4435/7173/6299/7474/2034/1942/1280/3202/3216/5311/23462/7042/4208/3212/5919/55084/5396/7048/10370/5950/25949/51294/9742/6469/57728/58495/585/2202/56034/4254/26018/7481/116039/55112/5125/4487/3249/23414/2737/2487/1746/2697/7043/6935/2200/6926/652/80736/2625
## GO:0009410 890/6999/1978/26227/445/200315/5111/1869/6770/6715/54541/114/57103/26/1789/4176/2950/6870/64757/3351/3066/779/1812/6283/1557/3208/3383/11200/100/5447/1244/3251/55151/3359/1020/9456/1788/9076/11335/7852/2180/8772/6262/1956/5536/570/27284/1573/6001/5724/3297/874/6261/9734/5567/1551/5582/1785/790/1814/3326/1728/1977/1141/9446/1787/80777/6531/7356/3309/9049/3172/1544/5309/25807/26050/5997/2876/5970/2056/2326/199/1813/1723/1562/8837/2185/10728/7023/2937/1577/8856/6647/2806/4988/7074/2902/1269/218/41/4193/1816/54576/2475/5020/1545/116285/5155/1645/5153/2660/2775/54490/10891/6869/1555/1559/2052/10533/1565/7040/1727/5581/54905/5999/383/186/6263/1906/6529/405/670/2903/25976/135/64754/5520/4835/13/8824/8787/8682/2693/5903/5446/8574/8620/2327/2941/314/10249/842/10/4986/1815/6095/1572/4258/1800/23491/5179/3356/2309/1576/56603/1571/6777/1392/1268/1558/9101/63826/10858/2354/7054/6546/2729/6609/9455/10014/5742/5562/4025/6622/5925/7337/2328/5530/9915/2155/6799/1553/1373/2908/7366/845/1543/1958/6776/29104/54996/1621/196/1429/5021/23284/4929/590/2308/6817/22977/5176/26575/5468/1393/358/1592/2948/5577/3176/2946/5244/27092/2944/6097/2690/5138/6571/8639/6863/1036/2947/2053/51380/18/9
## GO:0051249 3902/3620/6664/29851/3149/952/1493/6352/7037/2175/56833/3932/80380/3559/6347/639/914/8767/51237/1236/10859/55423/1051/3574/3575/4860/22806/4067/7412/864/27240/3458/959/27242/11151/51083/4436/11314/942/79915/1880/3329/8876/10288/7468/5788/916/9466/30009/6375/100/3600/3659/3549/923/940/64092/939/5880/7128/5588/3965/9308/10808/1445/865/10148/930/26191/4282/4690/6850/912/3569/83737/1378/5133/8772/51293/8440/2213/54900/10125/23240/8456/3071/3135/164/8808/100133941/3596/4192/7293/7305/7133/7525/958/9402/55024/6654/5771/54542/11326/57162/3134/54440/4004/3593/8651/3558/9760/6441/729230/3623/7940/3592/51571/3109/11006/6422/6693/384/836/1326/1141/5058/6714/64127/3662/8379/3398/970/2885/7356/4332/920/3635/1026/695/25793/23308/27040/101/25807/3111/55183/941/80149/3606/2056/6363/199/10892/8744/677/5621/7292/8740/55795/11221/9306/3586/10385/11126/972/4352/7535/7409/1209/3707/6647/7099/1948/2534/3553/5062/1604/5781/3718/7301/3146/22976/10457/3565/998/3133/2302/5777/9093/9092/5063/6366/3956/63925/9840/3113/8943/1947/5879/975/1540/7001/3142/10461/11146/2796/6869/177/29102/3916/1739/8915/10193/23529/5290/1845/207/7040/51043/2319/6188/634/11277/50943/59067/383/2267/3115/114548/301/7189/944/961/1178/8741/1803/11148/5585/1949/4323/2064/5074/148022/135/572/2323/3566/8764/56940/4092/3594/30835/54537/79155/387/933/149041/9750/8995/2736/51561/6708/64844/814/25/9580/5170/3958/8600/4292/9984/3440/2648/3077/5896/5573/22890/8546/6830/472/56603/57178/6777/3456/3280/29108/9655/7158/7070/3624/6385/56339/1499/1960/8654/8660/5295/6778/3567/5914/4602/100507436/604/558/9231/57045/596/5590/4179/678/196/11005/10464/4208/10039/7048/79679/2934/6469/3485/3952/7494/2621/857/7704/2737/2615/6863/6935/3572/3479/10451/652/2625
## GO:0071383 1978/898/6663/445/6502/11240/6770/6715/54541/6943/1789/2950/9420/3383/409/1244/865/142/5467/8284/2692/8013/11335/5901/1956/5536/5469/9131/672/655/6753/23019/2101/10018/8431/6597/8896/8202/811/6422/10432/7533/8928/9125/7332/9971/1977/2288/7101/5058/6714/3164/2649/3172/84830/2063/11331/11170/55885/9970/7181/10062/4654/3065/6049/5915/8837/677/7067/7023/8856/6256/7421/190/4838/8085/10498/51176/6096/5978/5245/9113/5465/2660/1616/10891/10413/3192/7182/6257/9063/7068/478/10524/4848/10474/476/2100/81606/81285/3717/7040/2033/9325/8312/10002/65992/23054/383/6047/11315/23543/186/301/8725/1655/55818/1906/2852/23376/11214/6872/4864/26508/2103/64754/79039/23558/9612/116/79876/10013/51341/7538/387/5458/9575/6781/8031/842/51366/5916/7376/56937/3670/51389/6095/1022/7035/8554/4824/79447/2309/55325/2274/1392/9604/406/7025/5187/9101/23411/7026/29966/6879/8626/687/8289/2516/1407/51569/9611/9975/5925/7337/1499/25959/1601/2908/10521/10424/490/8648/2104/6258/5914/3275/2322/11057/3174/8644/23426/678/8204/4929/55128/4734/2308/5176/2494/5468/358/57658/4246/477/8611/2099/6097/4306/7041/367/652/3169/1408/5241
## GO:0006367 983/891/6884/1482/2957/5435/1871/1019/7004/6873/1024/5440/865/5467/7480/8013/5433/29982/5469/112950/6882/6875/2101/9440/6927/9862/8431/2960/9442/5437/2958/4878/9971/7101/3164/2649/9967/5439/3172/1026/2063/9970/5431/2968/7181/8148/6877/10062/581/55832/6722/5436/5915/2961/7067/10155/9282/9477/8856/892/6256/6883/7421/190/2959/6910/3146/22976/4851/29959/6096/8493/5438/5465/5432/51586/10891/10413/4150/2969/6928/7182/6257/7068/4854/2963/3516/2100/51003/22938/7005/2071/10002/6881/5434/9968/55534/6878/6872/1870/55729/2103/4331/5728/4853/9439/2965/25937/1385/5916/7376/9443/56998/9794/6908/4204/6880/8850/6095/1022/404672/6662/5430/9969/4855/1025/112869/7025/902/29079/10001/2967/6879/7003/81857/2516/5441/9975/2068/10025/7157/2908/23493/1387/860/2962/2104/6258/5914/51616/3174/7596/1490/595/26036/4929/2494/5468/6925/2099/6097/4306/367/5241
## GO:0001505 26227/23413/445/2643/6472/60482/6715/136/8564/1138/3458/6572/321/3351/23464/1812/1807/22895/51733/3689/3383/706/5806/1644/5447/10059/3177/10247/81034/1020/2824/10993/1312/8500/10675/7124/5027/7097/5743/2653/7915/570/23657/10755/1143/1119/28964/1142/5582/2618/140885/1785/2932/23513/10333/54/1814/23204/1137/3326/384/6809/1728/1141/9381/91683/5579/6531/6855/774/8447/2644/6507/5217/2914/5997/10394/8573/3320/80149/199/1813/4842/8541/747/64130/6581/2185/55607/2030/3586/43/8497/189/7099/3553/9515/41/2668/2475/594855/8618/1545/7476/27163/6865/2332/9699/5153/501/6853/488/55327/4843/5879/6804/5028/23208/6512/6616/5030/5865/2572/6511/6854/815/148/3766/6470/11255/207/3717/5908/9314/5053/8570/5740/5999/5906/11315/26059/186/57030/9783/3060/8867/961/4923/1906/2852/320/2901/6570/2903/5868/148022/1861/8775/493/22999/135/183/5023/6623/5663/1136/6506/1855/9475/1757/27345/635/3749/2731/10249/1488/8499/9751/1815/4846/1201/6095/22930/9152/8973/114088/5864/9378/6697/538/5538/55288/1103/9722/3356/23576/81539/2555/223/1268/9379/7054/9104/4317/783/51222/22871/23025/6622/5071/107/1806/6532/4763/10550/9581/10211/23564/1373/6582/4088/10497/27445/23396/2752/9256/10365/2571/23621/2717/3643/1129/3043/3350/7779/947/3067/948/5025/9627/9162/6843/6844/79772/9900/5799/5311/590/8825/4208/8448/275/6812/3176/8864/477/93664/857/23446/6542/6571/8938/8292/1191/10003/6857/4128/7166/6505/18/776/4129/80736/1524
## GO:0019882 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/6890/56992/3126/3112/10437/5688/5709/1236/5698/5693/1535/1520/5713/925/4688/5641/5721/5691/10288/5685/3383/5690/5684/5686/5695/2210/1514/10213/23198/4689/6891/6396/5699/5714/5702/9474/912/1509/10875/5708/1174/7454/5692/3119/5704/55016/2213/5971/1536/3135/164/5683/1175/55080/50489/5694/9363/3134/10134/1147/5718/5682/1785/1510/5716/3109/811/1512/2923/162/3108/5707/3797/1211/6556/3122/3835/64127/3106/5696/3796/3107/10802/5870/3111/1173/5719/5700/9554/829/3105/6363/5717/50856/10197/3416/84516/1780/972/5706/5873/8517/5710/6892/3133/1636/5689/5720/6366/10332/832/10121/3113/8943/6456/5701/7879/9491/1213/11021/5711/5715/8655/8673/51128/5865/3798/968/567/11258/9861/5705/821/10981/11277/3115/51762/9871/22920/7189/1783/8905/10120/161/830/4012/51143/22872/23180/1778/30835/3120/10540/10053/55860/163/64837/9632/51752/11127/10671/3831/10392/5869/64167/3077/10427/8546/1639/29108/7057/9341/10484/3140/9371/2209/3685/51164/948/54209/1781/114876/8722/8773/3693/3551/3117
## GO:0007204 10874/3627/10563/6373/4283/952/5026/3932/133/1230/1236/55503/4067/114/1535/5336/11151/1043/5031/30001/1812/578/2830/5024/5788/1234/6375/8698/8989/55151/2780/1020/930/9474/5027/2906/6262/10518/4644/7226/57214/551/23566/6376/100133941/3596/3814/356/2280/887/6261/7052/55636/8811/2769/5371/117/10134/3558/719/931/1649/56302/9002/51196/796/9446/7224/920/1729/9170/623/3710/59340/2911/2056/10800/6363/581/1813/4842/5294/773/5621/3954/10523/2185/5335/6346/9472/552/4308/2534/1604/2902/22821/57192/3146/9001/5566/1756/2740/3358/5020/5777/2904/2847/781/6366/80045/59341/784/7222/2782/5028/2785/5030/57053/6869/55283/8996/148/4040/859/2859/57158/1193/22953/5144/3717/2147/7040/27/5581/5156/1742/3060/114897/4923/7225/1906/51714/2852/2903/57338/493/55584/183/7009/10672/5319/116/27020/3064/10345/799/624/2587/2624/4987/8398/8620/25/5170/2905/2696/287/79608/25998/3356/3827/1268/1910/3709/6546/5310/51024/783/2150/6622/7070/3375/23075/825/10268/845/5745/596/3685/1901/2149/948/5025/4887/5021/80024/844/187/5311/3270/6717/1902/1907/553/54795/53373/2247/2281/11346/7220/2946/477/2099/857/775/1909/4035/5350/2697/185/3357/6863/776/3708
## GO:0007159 6280/6279/3902/3620/3695/29851/1493/6352/7037/445/3932/80380/3559/6347/6402/8767/1236/10859/3654/55423/1051/3574/3575/4860/4067/7412/864/3458/959/27242/11151/11314/942/3329/8876/119/1991/10288/10507/3689/5788/916/3383/30009/6375/100/3600/3659/3549/923/940/939/5880/5588/3965/9308/10808/1445/865/10148/6404/26191/4690/6850/8013/7124/912/3569/83737/5133/8772/8440/2213/54900/10125/23240/3071/3135/2650/8808/100133941/4192/4478/655/7525/5724/9402/5771/54542/11326/57162/54440/3593/8651/7264/3558/6441/729230/3592/51571/3109/11006/6693/384/836/1326/5058/6714/64127/8379/970/2885/7356/920/84830/23308/101/941/6793/5970/80149/3606/2056/3683/6363/199/10892/2113/64083/5621/7292/8740/50512/11221/9306/3586/10385/11126/337/972/7535/7409/3707/3676/1948/2534/3553/5062/1604/5781/3718/3146/10457/3565/998/3133/2302/5777/5465/9093/9092/5063/6366/10332/3956/9840/3113/8943/1947/6401/5879/975/1540/7001/3142/11146/2796/177/1739/8915/3037/5290/65125/1845/207/7040/51043/960/2319/6188/634/3678/50943/9314/59067/3688/383/2267/3115/114548/7369/301/7189/961/1803/11148/8174/1949/2064/5074/135/6093/572/7430/3566/8764/56940/4092/3594/30835/387/149041/9750/2736/51561/6708/4907/64844/10318/5170/3958/8600/3440/3077/5896/5573/22890/8546/57178/6777/6370/3456/10725/3280/29108/9655/7070/6385/5175/8631/1960/8654/5295/5914/4602/375056/604/9231/57045/5590/4179/6403/7048/57126/79679/6469/3485/3952/7494/6387/857/7704/2737/2615/3572/3479/652/1524/2625
## GO:0043900 7153/27074/3669/820/4321/6790/6355/3576/9636/6352/4599/10549/5551/3559/200315/6772/3838/5650/8767/91543/6351/3429/10859/330/6590/9447/51191/4938/4940/1535/3458/8372/5435/8638/3066/8547/55726/1991/3853/4064/2597/5359/5479/3394/5806/100/3600/940/7353/23586/2219/3929/5440/7128/3434/3965/6732/5047/4282/8815/23076/5702/7124/22880/7783/5027/79132/4049/10875/83737/7852/51497/2208/5629/5433/348/63906/60489/6376/79720/26986/5724/27350/5034/5610/6882/4880/1642/10221/4277/10018/10450/5578/9217/9830/5371/3593/25818/6441/8091/3428/6397/6597/200316/5437/811/904/10465/708/9126/89870/6780/384/64750/6690/5886/5481/2896/6372/10758/51441/920/5439/64771/79400/10184/684/5431/80149/55231/5478/55012/27183/23643/29883/8878/26057/55666/57115/3065/5436/1072/10133/10155/1660/7726/325/7023/7706/3586/972/3609/5987/3553/1604/11074/23633/6993/2959/654/4838/11267/2683/8468/51176/5978/23367/54476/5020/8724/10084/5438/5432/22954/51193/2332/55601/3956/8993/4795/25978/7879/4843/5518/5028/4353/329/23208/5225/7001/10269/56829/2074/6827/6598/2963/6954/6829/9869/9150/22938/60343/103/2033/85363/22933/5495/9450/64710/5091/51297/383/11251/6895/26146/6733/58509/54765/1655/302/7189/5434/9525/23435/7187/2741/6737/5586/10107/7251/25920/1654/29110/91/10475/22900/7113/572/51495/104/8812/51773/3725/9698/9218/3594/55337/24138/79594/7538/5007/55770/8780/51561/29969/55196/7105/10318/10519/8912/85360/7076/858/10077/79671/23369/11027/10392/51763/397/3440/5094/8519/201626/11043/25833/55223/5819/5430/64848/59307/7155/1025/2040/6667/1268/3456/23236/1910/29108/2150/1105/5071/3624/5441/23328/27243/23265/5595/9759/10206/54737/26007/57506/8654/10497/4057/2962/4882/4153/63901/23272/5016/596/3685/10410/948/27306/54941/5021/11005/6041/167/29997/1511/2934/2494/81603/6812/10581/23005/3625/857/25827/3249/5654/3479/79846
## GO:0060326 6280/6279/6278/3627/10563/6373/2921/7941/6364/3576/8792/6352/56833/1230/6347/11240/6351/5365/51411/1236/4067/6354/7412/3148/11151/2950/9420/2841/5641/26228/1880/2867/6283/3689/1234/6375/3735/3929/409/1652/5880/5588/3965/7422/6357/4282/6850/3569/7852/4363/51192/7226/1240/5142/3071/1525/6376/79902/4192/2833/1908/728/1588/5054/6356/63940/2047/3570/57118/30817/6441/729230/3592/57402/719/811/708/1432/4354/1839/79647/6368/796/3164/8291/6372/6223/2358/391/84818/1399/101/6868/57175/3579/6363/1113/199/5294/643/2321/8740/8394/2185/23604/3586/566/6346/5293/972/7409/63916/7074/1269/3146/9943/4851/3219/51176/3680/5155/3577/6366/59341/2660/1441/3273/5879/1435/26585/5587/1969/65125/5144/10488/4233/27202/683/5156/158747/7114/301/7984/6369/3269/1906/5196/8823/23765/2249/3603/5319/25865/1398/9750/51561/3815/102/8729/3958/8600/27237/2549/5872/5800/2260/10850/7857/1130/6370/5580/4015/1910/3672/7057/2150/3315/9732/5595/7424/2155/23075/1960/6558/23396/3082/3791/27347/7474/1901/1843/5025/9023/80024/1235/2246/7042/5919/9353/1902/1907/8829/54795/727/2247/55742/4681/83700/9037/4856/2621/51157/5764/6387/5159/8817/185/7060/10451/80310/79148/9547
## GO:0030098 3902/3149/26279/1493/2175/56833/3932/3559/639/914/8326/8767/91543/1236/1054/3574/3575/4860/915/22806/7412/864/3458/959/5336/5449/2841/4436/942/1880/2529/578/8876/10288/1794/5788/916/30009/100/3600/3659/3549/940/80758/939/4063/3965/9308/865/930/6659/26191/6850/9474/912/3569/1378/8772/23210/2213/5971/5795/10125/23240/8456/3071/3135/8808/4192/1380/5591/6654/5771/54542/9734/3175/6927/54440/55636/3593/8651/3558/9760/729230/3623/3592/3589/931/11006/29781/6422/6693/4914/973/3662/6688/10320/3398/1316/920/3635/695/25793/64421/101/3111/6868/941/7855/80149/3606/6363/581/5734/10892/6722/677/7292/55795/8324/2185/11221/3586/10385/5293/972/7535/7409/1209/3707/3676/6647/3718/7301/5897/3146/1015/3565/51176/8809/7163/2475/2302/222487/6194/5777/9093/9092/3956/9840/8943/4242/64919/5452/1540/7001/3142/10461/602/10945/29102/567/6929/7471/3955/10193/3516/23529/7040/51043/2033/4189/50943/6932/3688/23228/114548/301/64218/4323/5075/2064/10312/26253/6774/3981/1021/572/2323/10803/3566/5316/4853/4092/3594/51341/387/149041/6146/2736/51561/3815/814/25/9580/6304/55619/6095/3440/10538/2648/5896/23598/9935/57379/538/6670/22890/8546/3714/472/56603/57178/6777/29760/3456/9730/11334/8325/10014/399/9655/5532/3624/2874/56339/9759/1499/7157/1960/5295/6794/55846/860/6778/54856/5914/4066/4602/604/1958/2322/558/596/5590/4179/678/7248/11005/1235/9452/3087/7048/3953/6469/27434/3952/7494/2621/6097/7704/54361/2737/6935/652/2625
## GO:0007565 3620/8061/4318/1515/952/4316/133/639/705/1364/5670/5471/1594/6513/6696/3549/3291/3965/1244/5467/1312/5743/63978/5469/7372/7319/3297/5594/10661/2182/10959/1394/10991/113/790/151/811/259/4878/708/64750/1508/2288/10135/796/26528/5368/7356/152/231/5997/55585/2056/7351/682/1723/2113/10155/29924/5858/4221/23780/6647/6256/23641/2806/3553/7421/23633/29842/4838/2475/5020/5671/3845/2796/5669/5675/5069/79816/5678/207/7040/7005/3678/5680/5676/3726/5740/383/79602/1829/55870/91/54407/3020/4012/183/412/116/8909/6013/1833/824/285/6866/10935/1828/2693/2695/6781/8398/8620/659/85360/7076/3673/3976/5066/5672/53405/397/3077/3488/6670/6777/1392/1268/2354/7026/8434/6159/8289/56848/5673/5595/5228/2013/84172/3248/5914/5016/3490/596/181/6019/3675/2488/7048/2353/7216/2057/1393/2192/7056/3485/3952/5618/4313/2099/5764/1471/10916/5125/54361/5744/2697/7043/367/7349/10266/1307/10699/8614/5241
## GO:2001233 6280/6279/3002/4102/4318/1075/3932/2537/8326/1869/3574/2730/3148/2950/3162/9705/2810/5499/79915/578/8876/292/9141/10449/637/5788/2023/467/3383/664/10525/7027/81618/10059/409/7534/80758/7128/10105/3965/7164/6789/142/23028/4282/4690/7159/2395/7124/29949/5329/8772/5743/4055/11124/3091/551/3301/7186/8440/6376/672/4118/8739/356/2907/9500/5034/57805/5054/10131/79156/5771/10018/7185/5366/835/5371/10625/10134/7417/2626/2932/5716/1032/80237/1512/6422/2923/1649/10971/54929/10962/3552/7533/8795/6714/5534/4841/6788/7029/26155/4722/9521/2243/2876/8531/5970/2056/5326/27035/581/2266/1459/51025/3065/10197/8837/2773/7023/23604/5770/972/6647/27141/2534/3553/5062/55294/4193/3651/51330/5883/7529/2668/841/4170/6615/22954/51079/5599/7015/6201/355/54978/5518/1540/79886/3622/7001/2017/3630/10413/4150/51499/55011/28978/51657/9451/26287/9368/6477/10961/653/9181/3655/8996/8915/27113/754/7314/7046/64114/207/3717/5519/10488/960/6188/23542/5894/2244/259230/80196/4780/4000/8575/51741/11315/10116/186/8725/1491/2931/54475/6421/1437/9709/5196/9821/2623/2852/27429/7531/6672/1654/8717/1613/9774/317/135/4976/183/5598/572/7009/5979/5663/93974/9026/10616/5728/54700/79594/3064/51588/8682/23017/624/5414/8692/7161/64844/26355/8398/7178/57144/6498/25994/10955/3958/4846/2771/5601/23368/6135/6880/55031/5533/26471/1687/138151/2260/8737/9529/6810/4836/7857/4824/10771/5859/5607/1495/6934/598/55023/65018/7703/5580/3456/23411/4335/56947/2729/90/51024/29108/8567/7057/8626/64798/5071/3624/3315/5925/4763/1499/7157/4776/627/4088/7755/3082/90993/7466/51616/8743/596/3685/6478/1280/50486/1621/8678/4929/64112/219699/8829/2934/201163/7078/6591/8406/57007/638/3625/7494/6387/857/53832/4487/1191/658/54361/367/4582/3479/652/1524
## GO:0022411 4312/9133/7153/983/81930/146909/4321/891/11004/5347/4318/6712/1515/3159/4316/713/712/11240/51373/5650/5645/29088/4609/5341/29767/4324/28998/54541/3925/57103/1520/7111/3148/6182/92815/5499/51650/119/1991/51642/6183/664/706/1514/22943/57553/23175/10059/6624/3936/8751/51081/28977/1020/7443/9829/64960/7124/11222/3569/3091/3099/7415/65094/28985/23616/2011/90480/6376/9131/80183/3920/3297/4778/5119/9793/55168/65003/57602/88/51069/2264/5578/55052/65005/2932/6597/8444/63875/26586/9801/7818/9313/836/9553/56648/29074/6721/51073/5579/23401/1857/51318/3837/6599/3796/5644/1984/10456/54148/25793/2043/10763/64963/5340/101/822/51116/7077/65993/7855/65080/400410/581/682/1459/440387/27183/8878/10300/7416/6710/55239/6150/2113/3799/51025/3396/51021/11198/4528/4281/3836/1072/10133/6418/7479/64976/79929/4241/6603/56945/9349/55173/5962/64780/8562/55201/6683/60488/55014/55294/29093/57192/51510/3146/64975/9711/9948/58526/79590/4905/11344/5045/54998/64981/1676/26589/9342/1677/59341/7429/26284/6456/25978/81631/2107/57154/81565/6602/5018/2017/5976/3684/51504/10269/10891/8673/10573/2021/7471/55604/55626/55037/9181/6598/9798/10193/6811/4040/28973/740/7046/2801/10533/1845/7040/29766/668/960/65082/23399/8312/823/79752/11315/54948/826/6605/6455/2931/8867/9525/1803/28957/83743/10630/23332/2852/27429/4323/26993/54516/7251/1263/1939/91782/57132/649/317/11345/81858/23400/7141/2580/3817/93974/10645/10677/6604/718/5048/1776/1855/824/79594/10013/2039/3064/5195/3818/6708/78988/222663/23064/122704/102/10519/4327/7076/9927/11078/8729/2258/64601/1452/24144/3831/1201/56893/22985/9645/2059/10595/6711/4320/7405/23274/4325/54832/7092/10904/23710/7249/10241/327/11337/65018/7093/10240/1856/11034/1215/1639/51332/51024/4317/2150/3915/8289/50810/5071/6588/2/154/8321/23107/146057/11140/118/27243/6601/10211/51023/1499/4921/3005/7157/4131/2535/23075/11132/55187/665/440738/10023/25876/3643/29104/9617/4314/324/8678/63931/54463/444/80279/22863/23122/4322/11075/6709/1511/2934/57731/164656/6591/10884/89795/3306/347240/4319/9037/1149/1513/11096/4313/85477/51474/6720/2191/3480/91754/11213/1471/857/79443/89927/4035/3249/5654/7043/57551/50853/25802/7177/1524/25893
## GO:0044282 1381/9582/23475/3620/4521/6999/3161/875/3613/5214/7378/200315/3101/26330/5194/4860/80896/8564/80150/2821/8372/57103/51302/8942/5471/7167/5973/1594/586/2584/23464/57016/2529/1807/2597/10449/5230/51733/6783/2023/5223/100/191/23175/3028/5208/10247/219/215/5315/3251/55289/5467/10993/2805/1890/56922/54363/221/2653/57214/3099/2108/7915/60489/131/27284/7263/51268/27350/4504/874/4357/3607/8898/1374/5444/200316/2820/27349/1666/1056/51102/55577/2027/79644/5211/51071/2528/5236/1593/3795/2582/5019/84830/3034/2592/10690/9942/208/10327/10005/5313/5009/229/4143/2710/949/5096/84890/3033/4842/5264/4552/83440/2720/6822/1738/57089/339/10930/1591/226/1892/6718/189/10478/4051/2806/230/5625/2744/2168/2526/2475/2645/1610/2523/25828/9784/5465/55270/23659/8659/1743/9108/501/4967/5213/3242/51/955/4843/2109/64577/53343/2572/23600/978/11261/5828/954/6470/8277/207/7040/960/3612/622/2026/10841/5053/3029/3098/1428/383/1962/89/10840/2527/23569/8578/1491/2931/4041/8867/669/2639/4923/1891/8074/51816/1629/493/51179/10894/1376/572/2875/2524/283927/4245/3074/5728/2747/4594/1632/3032/5446/8692/56623/4907/23498/5092/2731/34/593/55347/58510/26275/6652/7291/2990/4846/51084/1579/51763/3030/3712/89874/6342/57379/217/10295/51181/38/23576/26063/883/56603/23417/1268/3425/2110/10858/5224/3081/587/222/55825/30/56953/23670/5825/27034/1806/23564/7157/6799/55258/957/26007/953/9583/64064/35/8660/55576/37/2752/22875/224/56985/79873/2712/6548/2571/3373/1543/5191/549/2098/3073/2184/2746/225/3067/8644/5095/80724/11001/33/8604/3155/55556/2954/4329/81602/57834/6817/1581/64080/1384/2166/5860/2247/8310/275/216/56898/2530/1592/594/3952/3295/3176/64087/956/8528/10455/3991/443/32/8309/1036/3667/66002/36/54677/6898/10157/51380/18/9370
## GO:0072522 5163/5214/55526/8833/6319/262/9688/3101/26330/3948/54541/4830/136/4860/6576/2821/57103/2766/5471/7167/2584/30968/353/11332/3208/2597/5230/9631/10606/2023/5223/1633/100/4507/5208/4522/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/4880/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/113/64834/9972/81929/4878/9060/2027/516/5211/2646/1716/5236/57122/272/51144/5209/79023/9818/23305/201562/5313/522/229/10476/55066/514/6521/9605/109/23511/23205/83440/1738/2194/3614/226/132/51085/515/230/471/23279/79849/5631/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23225/60490/47/10891/80025/3630/55811/8021/53371/81616/6470/7040/5571/54704/5957/11277/4928/2026/3098/6901/159/7114/10201/89/669/521/2639/539/8086/405/2979/513/55229/9883/203/6774/2103/1836/2978/27109/55022/51341/5903/4907/51660/348995/9524/2981/79717/51703/4846/55746/112/2983/863/4656/26471/5538/4879/441024/31/38/3356/8473/517/23417/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/56848/9611/107/29922/5198/9759/270/51292/5162/7157/957/5563/108/5164/4882/79966/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0006836 23413/60482/10859/136/6535/4067/8564/1138/55117/6572/321/3351/1812/11254/22895/2207/100/1644/10059/3177/1020/2824/6850/8500/10675/5027/10165/23657/10755/1143/28964/79751/1142/5582/2932/6397/23513/1814/4878/23204/1137/6809/1141/9381/91683/5579/6531/6855/774/55238/8447/6507/695/5217/6845/2914/9899/5997/8573/6539/1813/4842/8541/64130/6581/55607/2030/8497/57084/9515/41/3358/2668/594855/8618/7476/6534/27163/6865/2332/9699/6853/488/55327/8723/6533/6804/5028/23208/6512/6616/5030/8673/5865/2572/6511/6854/815/148/3766/11255/5908/5999/5906/11315/26059/54716/57030/9783/3060/8867/6540/4923/1437/1906/2852/6529/320/6538/2901/6570/22987/6580/5868/1861/8775/22999/135/5023/6623/5663/116/1136/6506/1855/7223/27345/55879/11230/3749/1488/8600/8499/9751/1815/22930/9152/8973/114088/5864/9378/5538/55288/1103/3356/81539/2555/1392/1268/9379/7054/783/22871/23025/6622/5071/107/28968/6532/4763/10550/9581/10211/6582/10497/27445/23396/2752/3382/9256/2571/23621/1129/3043/3350/7779/9627/9162/6843/6844/79772/9900/5799/8604/8825/4208/8448/8773/358/6812/8864/477/93664/23446/6571/8938/6857/6505/18/776/4129/80736
## GO:0007160 4321/10855/3695/55612/6614/1236/1029/3897/7412/23603/10225/3689/916/4771/8751/7422/1020/2824/8500/5795/79834/6376/5054/88/1305/10018/3175/3674/4585/2932/6422/5747/6714/3987/7414/4289/2243/11170/8573/5328/3683/2266/6722/5291/8394/2185/7448/27329/27185/4617/3676/7074/5829/2041/8861/3691/9480/6366/3273/5879/2017/8754/5796/3655/1435/26585/56999/1845/960/2244/7791/3688/683/50488/11093/8826/89/1896/6281/967/8174/3911/1946/23332/4323/87/1613/10894/1021/6093/81792/56940/8874/395/7205/5728/55966/9475/2039/387/3728/59339/9448/3690/26515/1605/25/10519/2335/3673/5170/9270/8499/29984/7007/57669/10395/6370/9647/9344/8515/8516/3672/5310/7057/54828/23499/3611/7070/5921/6385/3204/10420/5175/4763/1499/3232/2013/8631/7059/9748/4814/4088/5295/7010/4811/94/6548/3791/22998/604/182/7402/596/5590/947/3685/948/1490/3675/7248/10979/8910/51754/23122/8829/2042/22795/10516/10580/1012/1281/83700/50509/3693/4653/11117/10391/4035/54361/1842/10631/347/63923/25992/4059/3679/9723/4680/1307/1308
## GO:0001659 10874/8792/3934/6319/1051/4159/51316/2171/63976/1812/55856/3600/23175/7422/23028/79071/468/6850/7480/51087/7124/7852/2180/2827/5743/7226/26027/1240/3596/2271/3297/26291/51393/729230/153/4898/1666/1649/155/3552/2778/3662/4883/134/4858/6868/2876/3606/7351/10062/3033/1813/6009/7067/51094/4849/43/7099/3553/93/2303/50508/4851/3565/58488/8809/5608/5020/51548/10891/2887/3516/3717/51043/23228/79602/89/3060/4923/55818/3226/79054/5565/6774/8841/4012/1376/10400/5746/7253/3566/116/1778/7030/64641/55366/9927/8600/7376/79813/57406/10912/23135/3356/1734/8473/1268/406/1910/7090/4237/6588/8929/154/5925/9807/6794/5564/37/6778/2104/3910/1958/2034/948/50486/7840/1621/324/2628/5021/33/5334/3397/2308/1907/201163/3953/55198/216/7350/3952/1149/5618/79068/8864/11096/5733/56034/3480/857/9658/2697/18/9370/23090/4857/2167
## GO:0051091 6280/6279/8061/4821/8792/7804/8767/3654/9447/1054/114/959/8877/6283/3689/3383/8807/23586/5588/3965/7422/23028/7480/7124/3569/7097/7186/3556/6376/10987/958/238/3059/5610/50674/7185/57118/9830/7334/1147/92140/6597/8896/10333/2958/1649/89870/4914/4869/64127/8986/5579/4615/6788/695/101/11331/83696/5970/3606/266977/7311/10892/6722/54101/6608/4761/8837/1660/7726/5584/7706/3586/8517/7099/4791/5987/3553/6883/11074/7472/4838/10498/6885/23085/8809/28996/4591/5526/1440/22954/3845/6233/7316/10454/9175/10891/2044/4825/177/3630/23373/6929/7471/9181/60401/8915/26585/6598/10193/2100/5587/10346/815/4040/4808/7314/4760/207/3717/7040/2033/85363/2319/6188/1386/55367/65992/11315/114548/1896/7984/1491/7189/54386/55859/6737/1906/4790/351/8717/6872/10475/148022/4919/6774/183/5319/10616/5728/25865/51341/3728/10935/9575/8995/847/51360/23118/3815/10519/5583/8600/51389/7098/10392/11043/60485/55223/8737/4824/5649/65018/63973/8613/4762/1856/10014/29108/7158/4345/4985/8321/107/5530/9759/10211/1499/10206/4921/2535/57506/4088/825/4057/8322/268/3567/28984/306/79092/7474/5590/9252/948/84159/9208/7188/64320/2241/5468/81603/6469/84851/54360/2099/11213/857/1191/3551/367/4693/3169/1524
## GO:0009612 3627/1111/891/8061/4316/440/6772/51311/8200/54532/1535/5723/8557/578/58/1116/5024/664/3659/838/6513/3549/8989/2805/5027/7852/8772/5743/4055/6262/26047/3776/1956/7273/8796/3596/834/4192/958/4792/835/2626/4878/1432/4914/79955/8795/6714/40/4615/3741/6507/23349/64220/63982/623/5970/1813/5734/2113/8740/2185/4099/5727/7099/6323/943/2534/3553/5781/654/8048/1756/3746/841/6610/5599/59341/784/355/5879/5028/4353/57053/6869/2021/8915/476/9020/859/9994/10746/207/7040/8932/3759/7132/5894/5270/71/1906/4323/4790/1161/8738/54407/55584/183/572/1265/3725/285/3064/387/3728/9750/23353/3815/22927/1605/1647/3673/51284/27063/8195/7100/9531/7098/2115/9378/6662/25861/56729/2022/3356/9379/4762/2354/6546/2729/5310/7057/51761/5595/6416/9759/4131/3371/6548/23621/7508/1301/3736/4212/1185/5311/84059/7507/7048/2353/1277/5468/358/5493/1281/4214/3485/7832/477/10628/7481/5764/6387/5138/63895/3249/10631/2697/7349/1634
## GO:0034330 7368/55765/1894/1001/59272/23603/51599/6624/4771/7422/865/999/2824/9076/7124/1000/5817/5795/23616/79834/1525/1365/88/5578/79977/92140/6422/9074/50848/382/9971/56288/5747/57863/23114/6714/9080/3852/402/3987/7414/7408/11170/4867/7855/829/1002/6722/1010/5657/8394/2185/5584/5818/5962/11187/60/5566/1015/998/9948/50855/8861/1636/6615/3691/928/3801/59341/2889/3273/5879/1008/2017/1006/5796/1739/3655/3918/26585/79983/2316/1969/7046/5318/1845/7040/5908/3678/1007/5906/51762/8826/89/1829/6281/3982/71/79778/3911/1946/23332/81/4323/1436/5586/1013/87/1613/84612/10015/10982/8443/64398/6093/183/5339/261734/3914/1016/4649/7094/56940/8874/54549/204851/395/7205/6904/5728/6801/2705/4092/9475/2039/387/3728/1828/10052/4983/9448/4301/25/2335/23705/3673/5583/5170/9270/11228/8650/5872/29984/5800/287/1832/7145/5819/25861/1495/57669/10395/9647/9344/8502/4641/7082/9693/7057/54828/23499/2150/3611/8506/3915/7070/1004/6385/118/55679/10420/2702/1005/23136/10211/1499/83660/9748/4088/7010/23396/94/9922/6548/3791/22998/51564/25945/9231/596/2149/100506658/324/977/2318/7248/10979/2701/7042/23122/57493/8829/57126/2042/201163/1003/283/10580/6591/1012/1009/3861/7481/4653/857/10391/3909/10207/4035/54361/3551/347/2697/7043/7122/10266/1307/1308/57502
## GO:0016053 9415/3620/29968/26227/875/445/5214/440/55526/2643/65263/6319/9688/6472/219595/3101/6770/26330/1719/3948/54541/8564/2821/57103/51302/341/80142/8942/5723/9420/7167/586/2584/2171/6916/11332/2597/5230/51733/9631/2023/239/5223/79152/5831/4507/3638/873/5208/1464/4522/58478/6396/215/5210/23165/5315/1463/55706/79071/10993/4282/6850/246/2805/10675/23636/5027/345/63827/55301/3692/5743/5629/8985/5947/3091/4644/57214/551/3099/570/672/4927/79902/1950/10762/8480/55753/3607/11097/2264/3939/8560/2618/92086/7360/5351/5232/64834/5321/9972/55501/8647/242/27349/81929/5352/51102/2027/5211/2646/5832/57761/9971/5236/57122/2346/1593/51144/1109/5209/79023/9818/1544/6507/201562/10005/5313/5009/229/10394/10062/6521/23511/51074/4552/83440/241/51094/10728/2194/4942/226/337/972/4706/6718/189/552/3995/7390/2806/51085/3553/230/471/2744/23279/9444/9885/58526/5730/2645/9536/5155/7175/5465/4967/10170/5213/5207/51548/11319/10090/1213/23225/54995/10891/55256/64577/3630/23600/8021/1559/53371/3037/26031/10057/1565/7040/5571/634/10613/11277/4928/2026/5053/5740/3098/114881/11315/79602/89/2356/54529/1491/669/8086/1906/4790/59344/405/5565/4048/23169/493/9883/6774/1382/2103/2875/51495/5319/3036/2747/2879/2687/51341/5007/29940/9926/22928/5903/635/2695/23498/348995/9524/10955/7376/55746/863/22937/4656/26471/4258/23038/8854/6342/3990/220/240/441024/31/3356/26063/883/1576/8473/11343/1571/23417/8803/55512/256987/5322/4548/1558/63826/51422/23411/10858/5354/51141/5224/587/10998/9104/5742/55825/5562/114883/5825/9611/11160/1806/9759/7157/55258/1373/957/5563/5564/37/2752/3248/2571/3373/1543/79966/3643/2181/2746/225/8644/27306/2628/9023/11001/33/114876/10464/27165/8604/6785/7923/11019/1907/1581/7358/60481/5166/4023/2948/3295/8864/84869/7494/2203/443/1462/23743/2819/633/32/8309/10003/247/26137/1036/1634/4056/54898/2053/51380/3479/18/9370/2593
## GO:0051169 4321/51512/55110/3159/1894/55612/3838/3429/9688/10212/6496/56943/11260/3458/6634/2810/1812/6632/4600/7545/7884/9631/10553/4116/11168/7295/6636/10541/2254/6396/23165/6637/999/1020/55706/6628/79833/8815/6850/6427/9775/29107/23636/5905/8882/84268/5743/5901/5469/580/1959/79711/4927/79902/9221/10736/10762/3059/51501/5594/8480/4792/11097/26019/5371/4686/2932/3267/811/9972/6633/81929/26263/1432/64328/2646/29118/1977/57122/4869/23534/9785/8563/7307/6428/7514/79023/3837/9818/1984/1026/5514/56000/3181/6741/55153/3839/11331/51319/23381/80149/51068/9670/6635/10892/81608/23511/6608/55341/10155/23214/11052/1660/9887/5501/2010/10898/65109/9349/29890/2733/3313/8487/3553/84934/5781/22916/11338/23633/23279/4193/6426/5566/10921/50628/10073/6429/10250/3843/57187/7175/51362/9478/5936/10657/26097/8125/57154/3840/23039/868/23225/5976/6432/5784/8021/53371/84271/2316/284/11261/5296/754/22794/64901/4760/207/7040/5571/79760/8536/55705/4928/4000/8888/11315/186/80145/23435/56478/79228/8086/9147/8720/26993/11214/7531/6672/9883/6774/8841/63928/183/5494/5663/3728/5903/29969/8692/6209/348995/55374/51715/51366/3178/9984/55746/9531/23293/92335/11142/4659/3842/91746/55781/10482/8189/10636/65110/10768/7249/6830/6431/6934/5569/5580/54960/406/9295/29072/9939/5310/26060/54830/5530/4763/7157/60468/57506/4088/6430/9877/5295/55696/8106/4435/948/7248/4734/3087/10411/55198/6469/3952/6310/10628/2621/2737/347/652
## GO:0071375 890/990/1978/445/6772/2888/51237/3973/6770/6715/4067/114/1535/2642/5471/2950/50617/353/1019/2058/83990/5447/5588/1445/533/142/4690/2805/2692/8013/4141/5905/2641/4644/9296/525/3297/988/5967/5591/6654/5771/2101/9734/88/5567/8651/10603/26291/1394/113/328/9114/1395/5575/57761/9971/5568/5747/6121/5058/760/6714/3164/5579/2688/2885/30837/6599/208/55532/5970/7351/528/23545/109/896/8837/677/4142/3416/51094/339/5584/4221/1442/5770/8615/51606/3484/5617/2534/3553/5781/2303/3718/5829/4193/8048/5566/5140/529/4218/2740/523/2645/526/2660/6198/81565/9340/527/4825/2887/3630/23191/7471/9518/815/5296/5290/207/3717/7040/51043/5908/634/155066/3645/4780/537/1979/23433/197/64710/383/1176/186/51382/2931/1906/2844/9550/2852/2798/4790/55777/10312/2689/4149/10458/6774/140710/64506/4976/6093/183/7253/2822/5319/5728/55022/9475/5458/8992/1398/2693/9882/29988/5576/858/1385/5170/2771/112/2549/8850/23235/51763/54328/5872/23038/5573/10768/7249/6464/6517/8473/6777/6667/55023/535/5580/5786/534/23411/54741/4641/2729/115/5286/10014/5562/55667/23189/26060/107/4131/5791/1373/8660/490/6430/108/11132/5295/5164/4303/6548/3643/6776/5590/324/6844/4929/114882/5919/9847/2308/2241/10580/5468/5166/1393/8835/55198/11031/4023/9365/3952/5577/5618/3625/6720/7494/3480/857/2690/5167/185/3667/2200/9370/5105
## GO:0045666 6280/2146/6664/4821/1894/7804/339479/65009/1482/8437/5365/8200/54149/3897/4830/4067/1789/10507/55079/7336/60436/7473/22943/10059/7422/8997/23028/4690/5604/474/7852/5629/8904/348/23566/2011/6376/9373/84079/4192/1981/655/91752/238/411/5967/50674/9362/57118/3984/3558/51393/5597/151/9148/6792/4914/10097/54606/5058/6091/55906/2896/23531/3309/152/7224/1857/2043/6845/5997/84298/7077/1954/2056/1002/10300/6722/5915/4761/8837/6457/8153/2185/5584/51704/55607/27185/81544/4076/2534/7074/50944/6993/654/2119/51330/1627/2475/5978/7436/11344/27339/8724/5526/23242/23316/8766/22954/2332/5063/9699/56965/396/1826/2889/1406/57154/64764/9175/81565/50937/9043/3706/23654/10362/4825/9897/23373/4058/51657/6929/23191/653/9181/3655/6014/4897/9798/5587/23394/26281/4760/1600/1523/2033/8536/27/2664/4780/55754/5906/1742/8826/9820/8578/10494/7225/5121/816/1946/51199/6324/1453/23011/10458/22999/1382/26508/4976/183/79727/5979/5663/347733/116/54664/10677/5048/27020/5728/1855/5754/950/54700/79594/8482/387/5458/23613/650/2624/2736/64175/23064/8175/659/11141/6498/127833/2335/9839/429/27063/9423/50618/57698/9896/57498/9139/2260/1454/4916/51517/5649/6474/2909/5789/1268/2242/23363/4762/23081/1856/9693/51761/22871/23499/23025/79006/3611/5071/8929/466/8321/6453/9638/3232/4131/162427/627/8322/6794/8648/29882/22902/3082/5914/604/55364/322/7474/81545/9231/596/79625/4804/2803/23426/3675/80823/4803/1809/65981/4208/11075/22849/9353/1902/8829/2042/5176/5753/4747/2281/8835/1272/4681/9037/5274/22906/6925/5764/6387/23327/4674/4035/4915/6857/1746/6935/9863/55714/51760/652/4137/3169
## GO:0046394 9415/3620/29968/26227/875/445/5214/440/55526/2643/65263/6319/9688/6472/219595/3101/6770/26330/1719/3948/54541/8564/2821/57103/51302/341/80142/8942/5723/9420/7167/586/2584/2171/6916/11332/2597/5230/51733/9631/2023/239/5223/79152/5831/4507/3638/873/5208/1464/4522/58478/6396/215/5210/23165/5315/1463/55706/79071/10993/4282/6850/246/2805/10675/23636/5027/345/63827/55301/3692/5743/5629/8985/5947/3091/4644/57214/551/3099/570/672/4927/79902/1950/10762/8480/55753/3607/11097/2264/3939/8560/2618/92086/7360/5351/5232/64834/5321/9972/55501/8647/242/27349/81929/5352/51102/2027/5211/2646/5832/57761/9971/5236/57122/2346/1593/51144/1109/5209/79023/9818/1544/6507/201562/10005/5313/5009/229/10394/10062/6521/23511/51074/4552/83440/241/51094/10728/2194/4942/226/337/972/4706/6718/189/552/3995/7390/2806/51085/3553/230/471/2744/23279/9444/9885/58526/5730/2645/9536/5155/7175/5465/4967/10170/5213/5207/51548/11319/10090/1213/23225/54995/10891/55256/64577/3630/23600/8021/1559/53371/3037/26031/10057/1565/7040/5571/634/10613/11277/4928/2026/5053/5740/3098/114881/11315/79602/89/2356/54529/1491/669/8086/1906/4790/59344/405/5565/4048/23169/493/9883/6774/1382/2103/2875/51495/5319/3036/2747/2879/2687/51341/5007/29940/9926/22928/5903/635/2695/23498/348995/9524/10955/7376/55746/863/22937/4656/26471/4258/23038/8854/6342/3990/220/240/441024/31/3356/26063/883/1576/8473/11343/1571/23417/8803/55512/256987/5322/4548/1558/63826/51422/23411/10858/5354/51141/5224/587/10998/9104/5742/55825/5562/114883/5825/9611/11160/1806/9759/7157/55258/1373/957/5563/5564/37/2752/3248/2571/3373/1543/79966/3643/2181/2746/225/8644/27306/2628/9023/11001/33/114876/10464/27165/8604/6785/7923/11019/1907/1581/7358/60481/5166/4023/2948/3295/8864/84869/7494/2203/443/1462/23743/2819/633/32/8309/10003/247/26137/1036/1634/4056/54898/2053/3479/18/9370/2593
## GO:0006164 5163/5214/55526/8833/6319/9688/3101/26330/3948/54541/4830/136/6576/2821/57103/5471/7167/2584/30968/353/11332/3208/2597/5230/9631/10606/2023/5223/100/5208/4522/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/4880/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/113/64834/9972/81929/4878/9060/2027/516/5211/2646/5236/57122/272/51144/5209/79023/9818/23305/201562/5313/522/229/10476/55066/514/6521/9605/109/23511/23205/83440/1738/2194/3614/226/132/51085/515/230/471/23279/79849/5631/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23225/60490/47/10891/80025/3630/55811/8021/53371/81616/7040/5571/54704/5957/11277/4928/2026/3098/6901/159/7114/10201/89/669/521/2639/539/8086/405/2979/513/55229/9883/203/6774/2103/1836/2978/27109/55022/51341/5903/51660/348995/9524/2981/79717/51703/4846/55746/112/2983/863/4656/26471/5538/4879/441024/31/38/3356/8473/517/23417/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/56848/9611/107/29922/5198/9759/270/5162/7157/957/5563/108/5164/4882/79966/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0006520 8140/3620/29968/6999/26227/875/1503/7453/445/10549/440/8833/65263/5688/5709/6472/219595/5698/6535/8564/2730/5693/80150/2617/5713/8942/5471/5723/4953/8565/586/5721/5691/23464/30001/6897/1807/11254/5685/51733/2058/5690/5684/5686/5695/16/6611/10213/191/1644/5831/4507/3028/3735/23198/2673/4522/58478/3376/10247/81034/1158/5699/5714/10993/468/9056/5702/1312/2805/56922/4141/5708/8985/5692/2653/833/5704/7915/570/55278/23657/7263/51268/5464/5683/55157/1152/4357/5034/5694/283459/79814/2193/2618/5718/5682/5351/5716/790/5352/5707/5184/5832/1728/9971/56474/7965/54583/7407/2346/5805/5696/51582/3172/3034/6507/1615/9521/5009/4143/51067/9057/5719/5700/84890/4842/5717/79731/10197/51074/4552/9255/1738/2937/4942/189/5706/2806/5710/5625/2744/56954/4524/4946/1610/7299/25828/4677/5689/6519/5720/8659/27068/1743/501/4967/3242/1638/5701/9491/4843/6533/55256/5711/55699/64577/5715/3630/2572/6470/9861/23395/9054/5705/6301/10667/5188/10841/5053/1428/383/11315/159/51540/2356/54529/23569/1491/2639/1629/670/1160/493/4947/5917/10400/2875/112399/1497/6545/80222/2747/4594/10352/2687/22928/3035/635/23498/5092/2731/51449/593/58510/10955/10249/26275/4846/1201/4204/3712/89874/1800/538/441024/10295/5859/38/23576/883/23438/256987/4548/56267/63826/7054/3081/587/2729/420/64122/9945/4482/57038/51520/27034/23409/1806/5198/23564/55258/1373/2752/2571/549/2184/2746/3067/27232/2628/51686/27165/8604/3155/55556/2954/4329/56605/80017/5860/55152/50507/275/594/3176/64087/8528/443/23743/6542/23428/10003/1036/36/6898/10157/51380/7166/18/2593
## GO:0018205 2146/1111/53335/9688/28999/200424/1789/3006/64135/3066/8607/63976/3008/7468/3009/9631/51471/5447/2138/23165/10626/86/6659/6839/23028/55706/1786/55689/9474/23636/5905/2641/8985/54107/2653/23210/3007/11177/8089/80218/1959/672/4927/79902/10055/675/10762/10054/3054/8480/9734/11097/7052/205564/10943/5351/8202/9972/81929/5352/9757/2672/57122/54472/29117/10856/3720/8986/3662/6688/79023/387893/9818/26155/1810/8193/79823/10629/23408/55183/5970/6612/83475/6877/4654/4842/6613/23511/10155/26038/6418/54934/9329/4221/79918/5079/4706/3713/59335/7917/399818/23774/3553/6883/22823/11137/51200/79723/2959/23279/10445/4193/56950/8085/6885/7862/22976/5977/51176/79829/7737/8861/10664/59343/55124/7175/9555/64324/54552/56979/63925/5929/6804/23225/23476/23512/8295/10269/10891/10362/55011/8021/53371/9063/26276/6598/10524/10474/9085/55274/9869/7341/79969/8726/22938/25895/7040/2033/22933/1386/7329/50943/4928/11143/4000/8888/6881/11315/8520/10919/9767/1491/55818/55870/8086/10933/8464/4089/405/27097/55209/6872/8110/6871/8535/51562/9883/64754/2647/79091/63894/54556/23558/51147/53615/10847/51773/11107/7994/79594/10013/51588/10363/9070/7799/9575/80335/23168/9913/2624/9189/5903/6018/64769/55140/54904/9739/2122/30827/55683/348995/10210/79609/80349/1487/51742/23326/7291/10902/3976/3670/55746/4204/6880/8850/1725/79813/25950/151050/9646/2648/7403/8554/57634/55167/538/84444/54880/84193/51218/6830/10208/10782/8473/112869/7703/51230/4297/5187/23081/79903/23411/29072/546/23067/6879/5562/6622/26053/56848/4826/10401/57343/23409/5595/339287/9759/1499/79960/84148/408/825/23741/5563/5926/4017/1387/8648/23522/26054/51601/4602/51111/1958/322/2145/9252/10609/26036/55693/23338/6419/5252/201163/54795/23410/6591/196483/10536/4674/4582/2625
## GO:0070661 3620/6355/6664/1503/952/1493/6352/3070/7037/80380/3559/8767/51237/10859/1051/3574/3575/4860/22806/4067/7412/959/27242/11151/2950/51083/11314/79915/1880/3329/10288/1794/5788/916/6375/100/3600/3659/3549/923/940/5880/7128/5588/3965/10148/3251/5699/930/26191/4282/4690/912/5027/3569/83737/8772/51293/8440/2213/23240/3071/3135/6376/100133941/3596/2000/7293/4478/1380/7305/7133/958/6654/54542/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/931/6693/384/6556/836/973/1141/3568/8379/970/7356/4883/4332/920/3635/1026/695/23308/684/3606/2056/6363/581/199/10892/8744/5294/896/5621/7292/8740/3614/3586/10385/972/4352/7535/7099/2534/3553/1604/5897/3146/10457/3565/3133/2302/6194/5777/1636/9093/11119/63925/3113/1947/975/7001/11146/2796/6869/177/1739/1435/26585/23529/7040/51043/6188/50943/59067/23228/383/3115/301/7189/944/1178/11148/5585/1436/2064/23385/10312/29110/5169/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/3815/5741/25/3958/8600/6304/64343/5573/472/6777/5580/3456/3280/29108/5532/2150/6385/1499/7157/8654/8660/3567/604/5813/2322/9231/3615/57045/596/4179/196/977/3087/4208/7048/79679/2281/6469/90865/3485/3952/4254/1191/54361/2615/2697/6863/3572/3479/10451/652
## GO:0006913 4321/51512/55110/1894/55612/3838/3429/9688/10212/6496/56943/11260/3458/6634/2810/1812/6632/4600/7545/7884/9631/10553/4116/7295/6636/10541/2254/6396/23165/6637/999/1020/55706/6628/79833/6850/6427/9775/29107/23636/5905/8882/84268/5743/5901/5469/580/1959/79711/4927/79902/9221/10736/10762/3059/51501/5594/8480/4792/11097/26019/5371/4686/2932/3267/811/9972/6633/81929/26263/1432/64328/2646/29118/1977/57122/4869/23534/9785/8563/7307/6428/7514/79023/3837/9818/1984/1026/5514/56000/3181/6741/55153/3839/11331/51319/23381/80149/51068/9670/6635/10892/81608/23511/6608/55341/10155/23214/11052/1660/9887/5501/2010/10898/65109/9349/29890/2733/3313/8487/3553/84934/5781/22916/11338/23633/23279/4193/6426/5566/10921/50628/10073/6429/10250/3843/57187/7175/51362/9478/5936/10657/26097/8125/57154/3840/23039/868/23225/5976/6432/5784/8021/53371/84271/2316/284/11261/5296/754/22794/64901/4760/207/7040/5571/79760/8536/55705/4928/4000/8888/11315/186/80145/23435/56478/79228/8086/9147/8720/26993/11214/7531/6672/9883/6774/8841/63928/183/5494/5663/3728/5903/29969/8692/6209/348995/55374/51715/51366/3178/9984/55746/9531/23293/92335/11142/4659/3842/91746/55781/10482/8189/10636/65110/10768/7249/6830/6431/6934/5569/5580/54960/406/9295/29072/9939/5310/26060/54830/5530/4763/7157/60468/57506/4088/6430/9877/5295/55696/8106/4435/948/7248/4734/3087/10411/55198/6469/3952/6310/10628/2621/2737/347/652
## GO:0008202 3294/1717/133/4597/6319/6713/29881/6770/6715/336/3458/51302/341/8435/3422/51083/3930/9420/1594/5641/2224/1557/10449/8608/6783/10682/2539/706/6696/3291/3290/50814/5447/3638/6646/50700/39/5467/79071/1312/7124/5629/348/5901/570/5469/51700/27284/1080/4504/3157/1588/3284/2264/2230/1551/8431/5444/8647/1056/7533/79644/2672/2784/9971/6721/1593/51144/1109/6307/231/3837/1050/120227/1544/8542/10005/10948/3949/3292/949/10577/54982/4800/1071/6822/2055/2194/23780/1591/27329/1577/337/8856/6718/6647/6256/51171/4598/3553/7421/190/29842/654/3565/4802/64746/9885/54576/5978/7436/1585/1181/1545/335/9784/6615/1645/2538/1646/10170/54490/2222/47/10891/1583/80025/4047/1555/23600/653/1559/476/26031/25830/19/3293/1565/8879/1727/10613/79154/3156/27120/114881/51741/5156/7555/8578/1586/8720/4790/8074/351/6820/1609/3972/4864/25976/183/1081/412/3069/3283/51588/5007/1584/59338/847/650/51360/3815/8912/9619/4204/6095/22937/7367/10273/6342/4801/2260/319/338/3990/8630/31/10654/38/1576/1571/6777/6667/1392/8029/1558/51422/23411/10858/51141/26119/10998/6609/4779/5562/7108/30/2516/114883/6716/11160/9453/5087/1718/6799/5563/37/7366/51478/9256/7536/1543/427/1958/3490/8644/1548/51706/51170/55911/3931/9023/11001/33/2488/114876/2246/27122/2232/866/7923/6309/6817/1581/2494/3953/2638/6591/64788/6469/3952/3295/5618/6653/51474/6720/2099/6097/3991/5205/1589/174/32/54361/8309/23541/185/10202/2053/4036/3158
## GO:0002237 6279/6278/3627/55765/3620/3595/3576/8792/6352/3934/445/133/79931/6347/2643/8767/3055/1236/6770/10859/6590/11009/3654/1051/4067/8564/7412/5336/3148/2950/1594/3066/26228/1439/1991/10288/4064/10225/1019/1234/7096/3383/3394/706/923/3929/4793/4360/57817/7128/3965/1244/929/26191/9076/5467/4282/1312/7124/5027/3569/4049/7097/613/5743/23097/64170/5142/2213/1053/6376/100133941/3596/9373/834/356/7133/958/5724/3297/728/5054/3587/10221/5594/4792/57162/5578/3593/1147/140885/92140/79577/3592/57402/10333/496/54/3663/1432/2672/249/6556/836/5732/6714/64127/5731/7356/6372/6197/1267/1544/6868/623/7855/949/5970/80149/3606/2056/2326/9261/10062/23643/9516/5734/10892/7292/2920/11221/3586/7099/23641/4791/4988/3553/1604/1269/654/51510/4091/3146/5739/841/9536/128/1440/5599/4795/488/4843/6401/4353/7001/5976/8754/10891/2796/968/567/8915/19/5144/207/3717/7040/85363/22933/5581/259230/9450/383/11093/114548/58509/10594/7189/1437/25819/1906/22904/7867/4790/148022/22900/10270/824/7538/79155/387/10935/7431/2693/23118/25/10949/5972/842/4986/27063/4846/11027/6915/3764/9646/4258/23729/7035/57379/338/5179/59307/3454/1268/63826/1910/7054/54623/2263/10014/29108/6622/23328/5595/1373/55914/4057/3248/8106/5914/29/1543/4435/7474/558/2149/948/54209/5737/6403/4208/11019/1511/2353/2241/210/7056/55970/7494/11213/7079/4016/6678/2697/9590/6863/57088/1634/4129/5105/1524
## GO:0042391 23630/1824/5026/2537/8326/3775/8838/2730/54532/1138/3757/3737/64208/1812/578/30968/3753/3783/5024/637/483/9631/274/664/239/706/5831/409/6329/215/1020/142/8115/2805/9775/5027/6262/7415/1525/1134/3786/10021/1080/1143/1144/610/88/5366/2257/8898/1142/2932/54831/885/153/4719/4878/1137/10962/2742/7533/1141/6714/23593/40/7224/774/2895/3741/2745/134/1180/2569/208/2562/2911/7351/581/1813/55012/3799/6327/6331/22997/6336/773/1738/2185/3745/55607/2561/8001/9472/6647/6323/1192/4988/2902/2570/1269/50944/41/6569/1145/3762/54413/1756/9948/3746/7476/79680/869/23316/781/2332/9699/27068/79845/784/79784/488/3747/6804/1135/23620/10269/57053/57369/80025/6869/23373/54434/6511/785/1739/478/4897/2900/2563/476/148/859/3766/2316/2859/7314/7341/22953/5318/207/27094/23542/4544/3759/9294/23530/5999/11315/1742/57030/1829/9783/1146/6455/10369/3060/2931/11060/2899/4923/2898/2741/1906/2852/7531/351/2901/6324/4355/9127/55584/10458/22999/135/6640/30819/5023/572/5774/5663/1497/8913/93974/116/1136/3725/5728/1855/55022/4092/79594/10345/3728/10935/23613/2892/27345/10052/8620/25/8912/288/2560/2258/54112/1815/1201/4204/22930/3764/8973/287/1832/3781/9378/4916/5649/9722/9992/3760/598/65018/1268/55186/6546/10242/2729/11334/2890/783/22871/8506/6622/30845/5071/4985/2897/3784/154/1760/10401/777/5530/2702/10550/10497/665/845/6548/2915/29119/3791/3736/29098/596/5590/23111/482/948/54209/5025/4887/10142/80024/9162/4734/2259/4208/6717/3752/481/54795/1140/2281/3751/3778/477/27092/2273/4653/5764/23327/857/775/23171/2550/4915/5350/55800/2697/1811/6863/1634/5348/2743/18/776/23704/57502/4137
## GO:0048880 5080/9355/6664/8842/712/639/7399/6496/362/1412/6247/7111/2296/5146/79888/3066/24147/578/3208/1411/1019/9997/60436/4647/3549/2792/4771/2254/10220/23287/7422/86/2780/5457/1413/2048/1410/5629/3091/23210/1956/5469/7490/23657/1421/655/6240/356/30813/6094/6654/2047/55636/1418/835/79977/55212/6597/25806/2820/3975/7101/23418/6121/2195/6656/30062/10763/64220/2779/5309/4669/10371/4867/7855/79583/581/6722/3065/5915/23094/7477/5584/7275/43/4617/5818/7475/7289/25932/6256/5078/4308/3150/93/25794/2303/25987/7472/654/1282/22926/793/23322/58158/28996/6096/7287/1181/1545/57096/7476/51384/56006/23424/2201/3985/6657/1826/2782/64919/50937/22989/10461/3684/55000/147912/1739/7068/51343/284217/1969/10765/7046/4760/7040/668/4544/9314/10002/2916/5156/26146/57030/5961/4041/3982/65979/9573/10312/10586/1419/7528/6497/4149/493/23770/6010/6774/55764/4976/5979/5663/261734/6152/1497/8736/5316/22882/6604/718/3299/10818/54549/204851/3725/5458/10319/7431/2301/5308/10210/659/6498/357/9927/9839/27077/8419/10152/7291/5916/3670/6909/22930/23554/1270/23093/8854/220/4916/6662/6670/130916/22899/5076/2909/84440/6015/10848/4286/7054/4237/7020/51761/25836/7070/8289/57835/3624/8929/9172/4763/54806/1499/2295/10265/4814/4088/2703/490/8322/5204/4124/94/5914/1543/80184/1027/1028/182/4211/25945/7474/3615/57045/23047/596/2823/4628/8412/4212/7482/5797/7042/8829/7048/5176/1735/5950/1295/9742/6469/1290/57728/81029/585/2202/91851/5764/5159/1471/1289/775/116039/1296/4915/658/2737/4081/1746/2697/3913/6935/6297/2200/11081/55714/652/80736/4693/2625/7021
## GO:0001558 6280/6279/9928/53335/952/5645/8437/27346/1029/3897/1535/51083/54512/1594/2810/55840/1031/8877/10507/3009/2023/2539/10591/3475/7473/6696/84722/29948/80128/57817/5588/8751/7422/1020/7143/5393/5467/55210/2395/83737/7852/1410/348/551/1956/7490/23566/23404/5795/9373/1981/4504/57805/5967/54825/9362/3578/5371/6446/2786/3984/3558/4686/79577/1785/51393/2932/10038/6597/5716/1032/6422/4878/6792/1839/51196/5058/5931/6197/7224/3172/8851/1026/6832/1399/393/4722/6868/5997/684/10371/623/11170/27296/4133/1954/400410/1002/84861/9538/6722/6049/11054/51379/56981/11007/8153/51009/51094/2661/2185/6195/27185/4099/131566/9472/552/3484/3486/51330/998/51176/2475/11344/5245/9166/6386/5465/6098/55558/8766/22954/51193/9699/51079/10110/10298/1826/3273/57154/5518/9175/10276/81565/28956/2017/58189/27302/9792/4825/3630/81621/23191/1982/26585/9746/4897/8548/9798/2100/11116/978/859/23394/8643/7046/9150/207/2147/7040/3621/634/2664/23251/22850/694/60676/5999/5270/10201/79602/186/4633/8725/22883/2931/9826/10235/1906/1946/2658/4323/7251/2064/4089/1654/8314/7528/91/57142/23011/57446/22999/3020/1382/183/81501/5048/23105/79594/8482/387/5458/10439/3300/5515/6259/8692/102/659/25/57144/10519/127833/6494/2137/2335/2258/4682/5300/9423/50618/9211/1630/6880/55031/55602/57698/55540/3488/5538/4916/4879/1808/5607/8711/64321/1154/9344/29946/5802/6595/23411/9706/23499/23025/3611/5071/3624/56848/5925/23136/7157/4131/79960/627/56994/4088/6794/29882/94/51447/6548/22902/54879/3373/604/1027/322/7474/51616/29104/3490/596/23111/2803/6586/4881/8425/84162/7042/65981/9353/8829/323/201163/55384/10516/5468/6695/8835/9037/23677/4856/2273/7481/6387/23327/56920/2203/2045/4035/4487/3249/5167/64061/6857/2487/2697/185/3487/7349/3479/51760/80736/4137
## GO:0045088 6280/6279/8685/55765/4321/3902/11274/6352/7804/56833/6772/51311/79931/94025/64581/1690/8767/91543/5688/3055/5709/10859/330/3654/9447/5698/727897/4067/5693/1535/3458/1520/5713/5336/9258/5641/11314/64135/5721/5691/2867/3329/5685/10225/25939/23547/3689/5359/7096/259197/5690/4068/5684/5686/2207/5695/1514/27293/3659/10213/8807/7353/23586/2219/3929/409/23198/7128/3965/9111/81622/6059/5699/6318/5714/929/26191/6850/5702/912/79132/56253/7097/5708/83737/1378/8772/5692/348/63906/64170/5817/5704/5469/2213/5971/10125/3135/164/9021/5683/10622/5591/5694/5771/4792/5567/9437/11326/7321/57162/3134/4585/4893/8454/9641/3593/8651/7334/1147/5718/5682/6441/3592/3428/6397/3805/5716/23513/57402/10333/7294/5707/708/89870/7184/10432/3326/2672/10010/9971/5568/1508/5058/6714/64127/5272/3662/3455/5696/4841/4615/2896/6197/6223/4332/2069/661/2358/695/4586/3385/101/2243/5719/2547/5700/5970/9261/10062/2266/1813/5717/7311/23643/29883/26057/10666/50856/10892/55666/57115/10197/23151/1660/11221/11126/5770/7409/3665/10621/5706/8517/7099/2534/5710/5062/5781/4584/7301/3093/6271/3146/6885/5566/5608/10906/3133/10462/54726/3384/841/3459/3265/5777/10084/5689/4583/5063/5720/55601/3845/7323/8993/6233/4795/55703/7316/5701/9491/10454/1540/329/3684/5711/5715/3630/331/3916/8915/7314/9861/7341/3717/60343/103/2033/7520/5705/85363/3661/634/149628/11277/64922/5581/5894/2244/59067/10623/383/58509/7189/26065/6421/7187/7867/4790/10695/55269/29110/57142/26253/148022/5289/7322/23180/9684/9698/79594/30835/79155/56667/1398/8780/3460/1755/23118/55366/7105/10318/23705/51752/5170/51284/30849/51135/79671/7376/23369/11027/7100/23098/7098/10392/8554/8737/338/3716/5819/23291/9865/6777/5580/3456/5802/2268/29108/2150/2/26060/2874/710/11140/10211/8945/57876/26007/57506/55914/6500/4057/1387/100507436/7474/22841/9252/948/54941/6041/29997/4589/4588/5468/9867/55198/10614/4214/3952/1513/80216/2099/11213/3263/857/81035/3551/4582
## GO:0002440 55765/9156/7037/5650/51237/91543/10859/3575/2821/336/959/3162/4436/79915/2867/3329/1991/10225/7468/2956/25939/5788/9466/9188/30009/2207/6375/7374/8807/940/23586/3735/4683/4282/9474/8013/7124/3569/10875/7097/3119/9245/7186/2213/54900/10721/3135/3596/7293/7133/958/5591/3134/54440/3593/25818/3558/729230/3592/3805/51744/1432/6556/64127/10758/695/684/55183/7855/3606/1113/10892/7292/51704/56259/3586/11126/972/9025/7099/3553/1604/3718/3598/6885/22976/3565/8809/3133/335/1653/975/5452/5225/10945/567/6929/1739/8915/23529/284/7040/79004/4189/11277/50943/8888/3098/383/114548/2590/7189/1178/8741/5585/10312/148022/3981/7009/3566/4092/54537/8482/933/3815/4292/9984/7098/3440/10538/3077/5423/57379/27343/6810/6830/9865/472/3456/354/23411/7158/2150/2067/56848/5595/3140/23075/57506/163486/6778/3567/604/3554/7474/5590/948/11005/1235/9452/7042/10039/54795/5950/27434/90865/7494/2621/11213/3263/7043/2625
## GO:0097191 3934/2537/3429/3574/2730/3458/3148/2950/3162/5499/637/5788/467/3383/81618/939/7128/6789/7124/29949/5027/8772/4055/11124/7186/6376/672/4118/356/7133/5054/10018/1612/7185/5366/3570/5371/3558/2932/3592/10038/6422/2923/10962/3552/836/8795/6714/970/6788/51202/2243/2876/5970/581/2266/2139/10197/8837/2534/3553/56616/5062/51330/2668/10572/841/4170/51079/7015/355/5518/1540/7001/2017/1616/10413/653/9181/3655/8996/8915/10193/7046/9994/64114/207/3717/7040/5519/7132/55367/5894/2244/80196/4000/51741/11315/10116/186/2931/6272/1437/81537/3856/5196/9821/2623/2852/27429/6672/1654/8717/8738/91/1613/183/5598/572/5979/204851/10616/5728/3064/8682/23017/8692/57144/10519/6498/5170/842/3958/27018/4846/9531/1630/7098/2260/8737/6810/7857/10771/5607/1495/2309/6934/11337/598/55023/2065/2729/90/29108/8567/7057/64798/3624/26060/4763/4088/5295/3082/8743/596/3685/6478/1280/50486/1621/3875/2872/2261/64112/4803/219699/7042/8829/9812/7078/6591/8406/90865/4254/857/658/367/3479/652
## GO:0003015 10874/23630/1824/59272/133/2643/3768/1482/3775/3757/4159/6870/8557/779/3753/483/9631/274/100/10059/491/147/55151/4624/9474/7852/6262/5142/7273/26251/1525/1573/10539/10021/786/1908/4880/6261/3777/2257/2626/3558/153/55328/5606/4878/1839/30820/6714/9446/10368/774/3741/134/4205/53826/6786/5997/522/10371/2876/3710/3761/156/80149/1113/1813/4842/6327/5294/6331/6336/7067/7137/6647/552/6323/80763/2534/6271/4193/4635/3762/8048/5566/1756/2740/5608/2475/5020/1674/1636/781/492/53822/4634/2775/784/488/10269/27302/10413/4625/785/1739/7068/478/476/148/859/2316/5290/7341/1193/5318/5144/3717/5349/3759/11277/778/6901/5999/486/186/140/4633/1829/487/10369/2931/4632/6263/1906/3770/7134/11214/7531/6324/4607/493/6640/183/30819/10659/8913/10060/4092/782/10345/3728/489/10052/6781/8620/8912/25937/64091/4846/2771/6909/3764/287/1832/3781/4090/2548/10768/70/9722/9992/3760/6543/3750/10848/3709/7054/6546/7423/783/30845/7139/27091/3784/1760/2702/9759/10265/8654/23493/490/10268/4882/845/6548/29119/1129/29098/2034/482/7168/27129/1490/5025/4881/10142/844/444/7042/3270/6717/3752/1907/57731/481/54795/2281/50507/55799/7220/3751/2946/477/27092/6444/6720/23327/857/775/23171/5350/55800/2697/6863/7349/9254/6505/5348/776/3708/10699/60598/23704
## GO:0046390 5163/1503/5214/7378/55526/8833/6319/9688/3101/26330/3948/54541/4830/6576/2821/57103/5471/7167/2584/30968/353/11332/2597/5230/9631/10606/2023/2539/5223/5208/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/3091/9551/506/3099/10165/7415/7372/4927/79902/509/10762/4880/8480/55753/3607/25874/11097/2182/5161/3939/5634/2618/8050/5232/113/64834/790/9972/81929/221823/4878/9060/2027/516/5211/2646/5236/57122/56474/272/51144/5209/79023/54963/9818/23305/201562/5313/522/229/10476/51727/55066/514/6521/1723/9605/109/23511/23205/83440/1738/2194/3614/226/132/51085/515/230/471/23279/5631/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23225/60490/47/10891/80025/3630/55811/8021/55312/53371/81616/7040/5571/54704/11277/4928/2026/3098/6901/159/7114/10201/89/669/521/2639/539/8086/405/513/55229/9883/203/6774/2103/1836/27109/55022/51341/5903/51660/348995/9524/79717/51703/55746/112/2983/863/4656/26471/5538/4879/31/38/3356/8473/517/23417/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/56848/9611/107/29922/5198/9759/270/5162/7157/957/5563/108/5164/4882/79966/3643/2181/3615/5836/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0042176 27074/55872/4085/51514/6790/5347/1075/55353/5709/3458/4953/79016/79888/7336/575/11200/10213/7128/51377/999/23450/5702/7480/7124/9978/5708/348/11124/7415/5704/1956/580/4478/4248/7133/55741/10755/1950/57805/1642/10221/5476/5371/5582/9532/10134/55212/55737/2932/5716/4898/2165/8975/26263/5707/3326/5747/54583/5886/8291/140462/7514/51582/725/6599/1050/8078/2043/101/25807/55432/2876/3949/5700/9554/3320/5970/1459/6613/23640/10197/3416/51009/2185/116986/29763/27185/3586/9097/9683/9349/5706/80011/5962/26088/51322/7917/2534/3553/55743/3093/55294/27352/2768/11267/4193/51035/5566/4946/28996/4905/5245/5045/9113/8724/6386/4534/4287/55270/22954/2332/51079/6201/5701/51160/29761/7879/9491/4843/57154/975/8754/11146/64110/25897/23163/3630/51374/722/9860/7471/51465/54971/51343/10193/11011/6811/859/2316/754/7314/7341/10533/207/9146/5705/22933/4745/3084/149628/4780/8312/3156/65992/28951/114881/11315/5270/369/302/2931/7327/9817/9709/7874/1263/23376/29062/1453/6872/2903/11236/4947/25976/11345/23400/6093/1915/5774/7430/29978/5663/2822/55070/93974/25898/23192/5728/1855/8450/51136/4092/28952/10869/10956/3300/64844/7432/7076/55823/6449/79643/1452/5601/5300/56893/5887/6135/6880/863/7110/9827/3077/26471/2670/2905/8554/10273/23274/1454/9529/6662/64321/8473/9992/9695/65018/406/2719/9101/23077/2729/5310/9104/4779/9655/6622/4130/5071/7337/6642/29116/2295/8945/1601/4088/23429/1027/819/7474/64285/9024/1917/1942/2272/54209/324/4194/9810/25837/51686/80279/26234/4734/29997/79589/2308/51339/7078/210/6469/6625/90865/6653/10769/5988/23327/11213/1471/857/4035/1191/2697/150/4036
## GO:0007611 8061/65009/2237/2019/8326/29767/1051/2515/114/5641/1812/10288/22943/6285/8997/1020/7143/2558/1312/9775/7097/2048/5743/348/3091/26047/3776/1956/1959/23657/11202/4192/5594/5923/8811/5582/6446/885/123803/1814/9757/5575/4914/10097/836/1141/8484/2760/64220/55236/3949/3710/266977/4900/1813/7416/109/6722/7419/4761/7067/5621/3274/4593/57468/2534/8704/2902/50944/41/793/54413/53358/2740/1816/2475/7436/5020/2904/23316/6865/5153/3845/10882/6616/6869/177/23373/27023/23394/378/8301/22941/2925/2033/10716/23542/3678/2334/577/1979/3156/54207/3688/1742/2764/9610/267/57030/8867/4923/3269/8086/6529/23385/351/2903/57338/183/5663/23237/4835/1497/5048/4891/27020/3725/5728/90410/3064/2693/6900/2695/4987/3815/814/8398/57144/5803/1385/2258/54112/4986/10347/1201/4204/2648/5896/8554/9378/1620/5538/10636/5649/3356/10396/60626/1392/6543/1268/9379/4762/23236/8516/7054/2890/5532/25769/4130/5071/22986/7881/107/6532/4763/6326/4776/23152/23259/10522/2915/3643/5590/22829/1621/3675/2628/5021/80823/4885/9162/4212/590/4208/22849/5176/2353/4311/9867/1393/11346/5577/7832/6310/477/9369/10769/5764/4915/6863/7349/7122/57502/4137/1524
## GO:0001701 9133/79733/4751/9837/891/8061/55723/3294/6663/10733/133/639/84296/6491/2707/79805/2709/1051/705/54892/4904/8894/430/2296/321/4436/23764/27022/7262/100/3549/50814/4678/4683/7422/27341/3276/86/6789/10436/4624/6768/4188/5702/5604/8882/5801/54663/8985/63978/3091/50861/5704/1956/29123/5469/1825/9021/655/7319/3297/675/5594/3054/10049/10018/9421/2551/55636/79977/10959/57718/4643/9470/54583/8178/2885/6788/8533/1050/7274/57820/154796/202018/7855/8531/79583/4071/53918/6722/6608/677/10155/7477/29924/9394/4849/10568/84525/5335/3586/5727/4097/4627/6256/11232/7472/2768/4838/23322/1603/10653/841/1046/9113/5155/59343/27339/2627/51493/6615/8451/1999/63925/4242/10454/81565/25988/6928/2021/653/27173/4848/3516/4952/284/7046/207/3726/1045/657/3688/5156/10566/9871/3633/2016/54475/1437/57680/9817/3856/4010/6692/1906/79728/2623/9546/79621/4089/4087/320/9573/405/91/57142/26005/3981/10400/10672/53615/9318/9412/4245/3491/824/54700/54345/79718/23168/650/2624/2736/8846/102/56949/2294/6498/9927/9632/27077/4154/2116/9464/7291/3976/4846/51763/9646/2648/7403/23038/57498/2260/55224/538/338/54880/4836/6670/4695/7516/6830/3714/57669/64321/8521/60626/57178/598/7703/79893/23081/5333/7026/5932/29072/79600/3280/2263/5310/90/7942/5930/26469/3880/2068/118/729/9915/1499/7157/2186/23493/4088/398/22846/8648/4124/7320/94/10365/8452/1028/4435/7779/10087/2034/7168/4628/5311/23462/57493/26115/7048/201163/25949/727/51294/2530/57728/58495/7075/55273/10161/201895/1909/4487/23414/2737/2697/7043/367/6926/3479/2625
## GO:0032496 6279/6278/3627/3620/3595/3576/8792/6352/3934/445/133/79931/6347/2643/8767/3055/1236/6770/10859/6590/11009/3654/1051/4067/8564/7412/5336/3148/2950/1594/3066/26228/1439/1991/10288/4064/10225/1019/1234/3383/3394/706/923/3929/4793/4360/57817/7128/3965/1244/929/26191/9076/5467/4282/1312/7124/5027/3569/4049/7097/613/5743/23097/5142/1053/6376/3596/9373/834/356/7133/958/5724/3297/728/5054/3587/10221/5594/4792/57162/5578/3593/1147/140885/92140/79577/3592/57402/496/54/1432/2672/249/6556/836/5732/6714/64127/5731/7356/6372/6197/1267/1544/6868/623/949/5970/80149/3606/2056/2326/9261/10062/23643/9516/5734/10892/7292/11221/3586/7099/23641/4791/4988/3553/1604/1269/654/51510/4091/3146/5739/841/9536/128/1440/5599/4795/488/4843/6401/4353/7001/5976/8754/10891/2796/968/8915/19/5144/207/3717/7040/85363/5581/259230/9450/383/11093/114548/58509/10594/7189/1437/25819/1906/22904/7867/4790/148022/22900/10270/824/7538/79155/387/10935/7431/2693/23118/25/10949/5972/842/4986/27063/4846/11027/6915/3764/9646/4258/23729/7035/57379/338/5179/59307/3454/1268/63826/1910/7054/54623/2263/10014/29108/6622/23328/5595/1373/55914/4057/3248/8106/5914/29/1543/4435/7474/558/2149/948/54209/5737/6403/4208/11019/1511/2353/2241/210/7056/55970/7494/11213/7079/4016/6678/2697/9590/6863/57088/1634/4129/5105/1524
## GO:0043010 5080/9355/6664/8842/7399/6496/362/1412/6247/7111/2296/5146/79888/3066/24147/578/3208/1411/1019/60436/3549/4771/10220/7422/86/2780/1413/2048/1410/5629/3091/23210/1956/5469/7490/23657/1421/655/6240/30813/6094/6654/2047/55636/1418/835/79977/6597/25806/2820/3975/7101/6121/2195/6656/30062/10763/64220/2779/5309/4867/7855/79583/581/6722/3065/7477/7275/43/4617/5818/7475/7289/25932/6256/5078/3150/93/2303/25987/7472/1282/793/23322/58158/28996/6096/7287/1181/1545/57096/7476/51384/23424/2201/3985/1826/2782/64919/50937/22989/10461/147912/1739/7068/51343/284217/1969/10765/7046/4760/7040/668/4544/9314/10002/2916/5156/26146/57030/5961/4041/3982/65979/10312/10586/1419/7528/6497/4149/493/23770/6010/55764/4976/5979/5663/261734/6152/1497/8736/5316/22882/6604/3299/10818/54549/204851/3725/5458/10319/7431/2301/5308/10210/659/6498/357/9927/9839/27077/8419/10152/7291/5916/6909/22930/23554/23093/8854/220/4916/6662/6670/130916/22899/5076/2909/84440/6015/10848/4286/7054/7020/51761/7070/8289/57835/3624/9172/4763/54806/1499/2295/10265/4814/4088/2703/490/8322/5204/4124/94/5914/1543/1027/1028/182/4211/25945/7474/3615/57045/23047/2823/4628/8412/7482/5797/7042/8829/7048/5176/1735/5950/1295/9742/6469/57728/81029/2202/5764/5159/775/116039/1296/4915/658/2737/4081/1746/2697/3913/6935/2200/11081/55714/652/4693/2625/7021
## GO:0032388 51512/10615/1894/1001/136/3458/9585/2810/3208/9141/7545/3689/2207/10059/10541/5880/80128/999/1020/8882/5743/10938/57214/5901/3596/10055/4478/55741/3059/5594/57602/88/8898/10134/2932/8934/4878/1432/54471/64328/7332/5058/6721/23209/7260/8851/6845/208/4133/7855/80149/1459/3799/6608/5621/10155/11052/1660/3745/2010/9777/5962/51100/2534/3553/22916/59286/55294/10178/4193/5566/4946/3265/3843/7175/10075/11235/7323/10657/784/9776/8723/975/3684/8673/23379/2316/11261/5296/7040/8536/79752/55754/22994/302/2931/23435/79778/27429/2064/1263/7531/8314/5116/23011/4947/8841/63928/7430/5494/5663/3566/1778/89781/3728/2624/8692/79567/9520/10519/288/10425/55823/51366/9270/9531/55781/26229/6342/6934/2040/9695/65018/1268/5580/2268/26119/54741/4641/56947/51024/54828/783/22871/5562/5071/56848/9846/9638/1601/7157/57506/4088/10497/11132/5295/53407/55696/22902/80184/6844/4734/23255/9847/79899/10411/5108/6469/6812/4926/3952/6653/2621/3305/2737/6857/161291/30846/776/5174/22885
## GO:0072330 9415/3620/5214/440/55526/6319/9688/3101/6770/26330/3948/54541/8564/2821/57103/51302/341/80142/9420/7167/2584/2171/6916/11332/2597/5230/9631/2023/239/5223/79152/3638/873/5208/1464/6396/215/5210/23165/5315/1463/55706/79071/10993/4282/246/10675/23636/5027/345/63827/55301/3692/5743/5629/5947/3091/4644/551/3099/570/672/4927/79902/10762/8480/55753/3607/11097/2264/3939/8560/5232/64834/9972/55501/8647/242/27349/81929/51102/2027/5211/2646/57761/9971/5236/57122/1593/51144/1109/5209/79023/9818/1544/6507/201562/10005/5313/229/10062/6521/23511/83440/241/51094/10728/2194/226/337/972/4706/6718/189/552/3995/51085/3553/230/23279/9444/9885/58526/5730/2645/9536/7175/5465/4967/10170/5213/5207/51548/11319/10090/23225/54995/10891/64577/3630/23600/8021/1559/53371/26031/1565/5571/634/10613/11277/4928/2026/5740/3098/114881/11315/79602/89/54529/669/8086/1906/59344/405/5565/4048/9883/6774/1382/2103/51495/5319/2879/51341/5007/29940/9926/5903/2695/348995/9524/7376/55746/863/22937/4656/26471/23038/8854/6342/3990/220/240/31/3356/26063/1576/8473/11343/1571/23417/1558/63826/51422/23411/10858/5354/51141/5224/10998/9104/5742/55825/5562/114883/5825/9611/11160/9759/7157/55258/957/5563/5564/37/3248/2571/1543/79966/3643/2181/225/8644/27306/9023/11001/33/114876/10464/8604/6785/7923/11019/1907/1581/60481/5166/4023/2948/3295/8864/84869/7494/2203/1462/2819/633/32/8309/247/26137/1634/4056/54898/2053/3479/18/9370
## GO:0009152 5163/5214/55526/8833/6319/9688/3101/26330/3948/54541/4830/6576/2821/57103/5471/7167/2584/30968/353/11332/2597/5230/9631/10606/2023/5223/5208/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/4880/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/113/64834/9972/81929/4878/9060/2027/516/5211/2646/5236/57122/272/51144/5209/79023/9818/23305/201562/5313/522/229/10476/55066/514/6521/9605/109/23511/23205/83440/1738/2194/3614/226/132/51085/515/230/471/23279/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23225/60490/47/10891/80025/3630/55811/8021/53371/81616/7040/5571/54704/11277/4928/2026/3098/6901/159/7114/10201/89/669/521/2639/539/8086/405/513/55229/9883/203/6774/2103/1836/27109/55022/51341/5903/51660/348995/9524/79717/51703/55746/112/2983/863/4656/26471/5538/4879/31/38/3356/8473/517/23417/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/56848/9611/107/29922/5198/9759/270/5162/7157/957/5563/108/5164/4882/79966/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0007264 2305/890/9928/29127/1894/29899/8437/57706/1029/5898/3925/22808/4067/9289/1122/9046/3162/867/1794/1795/9824/5880/2665/10287/8997/54509/117178/1786/5912/23636/9938/2048/345/613/7454/348/50861/23616/10125/8625/2245/23092/1123/9402/6654/51195/4893/5923/10617/5911/117/10603/1147/3984/1785/10044/22800/6016/51291/9267/10971/1432/5662/382/4914/9908/51196/8936/6714/6091/2885/1017/3837/8550/1026/391/23229/1399/393/27040/154796/58504/84033/7077/50649/57826/2056/55200/79109/199/55160/8878/1124/8844/7410/23094/1072/10155/116984/5877/55114/8615/7409/10900/3707/5962/80005/9844/7074/25780/6993/27352/22821/4650/9771/53358/4851/10146/998/3265/335/10928/9093/396/9909/3845/9138/5337/2889/27128/2782/5879/10276/50937/55843/5516/10750/54848/64121/10787/26230/23191/4168/79930/199731/79658/9181/1435/6014/5900/5587/148/4952/11261/5296/19/9869/23370/1600/3717/5908/3084/27/2664/4233/5881/5894/56882/23433/6236/11186/5600/3688/10565/5906/11315/23348/23526/3633/7984/79933/23380/6239/55785/9826/10235/10564/10630/65979/11214/57572/1121/9901/10982/23101/23096/6093/221472/253980/7204/10672/51495/4649/9266/10163/8874/23179/9754/395/3725/23607/4853/889/8036/9475/10045/387/1398/9750/5922/8216/6655/4983/9448/79567/5741/9322/25/7126/85360/6494/10144/9927/8729/10152/5338/80243/5899/9912/27237/55619/9423/50618/64411/116985/397/286205/57698/2059/29984/8315/5909/6237/26030/57148/55288/54922/8711/7249/23647/6464/5649/10188/10160/22899/8473/392/2909/10395/8727/9459/403/23682/9620/9693/80230/8567/399/2150/23263/79822/89941/26053/83478/23108/23189/5921/2/10256/9732/5925/57343/9265/8859/5175/4763/10211/94134/6453/1718/25959/7157/64787/408/26084/8660/398/115703/9922/29/394/8452/10633/604/23221/84986/29098/64283/1796/6478/54869/2149/23550/440073/4804/3675/8412/26037/9743/9162/9639/4803/23268/7042/1793/57493/9649/9353/1902/54453/9411/1278/8829/253959/50650/201163/9855/23365/2057/2247/10411/1012/1281/55701/9886/5863/25759/10769/4254/4653/5159/2203/388/51306/11069/9077/90627/11188/185/9828/150/3479/55103/10451/23362
## GO:0044839 2305/9833/9133/22974/4751/890/983/9212/1111/51514/6790/891/9928/3161/993/5347/51512/10733/54801/994/29980/1063/5688/5709/26271/641/5698/5693/8317/7277/5713/5721/5691/79915/9088/995/5685/1019/79866/5690/5684/5885/5686/5695/11200/203068/10213/6873/7283/23198/8883/4683/10383/63967/7164/5699/22822/5714/5702/7480/1030/9978/5708/5692/5704/672/55835/5683/22919/9793/5694/55722/8454/5889/5718/5682/1785/8091/5716/79959/8444/5707/60561/29086/55559/4957/4869/51400/5696/1017/1026/22809/10763/9702/5719/5700/3320/5500/5717/27183/60672/10197/7465/10133/23354/5706/5710/55125/5566/22976/8493/1069/9113/5689/8766/9555/79184/5720/10121/10657/5701/9491/8636/5518/23476/5711/5715/9662/8655/11258/11190/51343/11116/9861/5705/10382/10083/22994/22897/80174/9525/23332/79621/26993/1263/7531/10776/351/5116/1453/51451/2103/9577/5520/6604/5048/8555/4331/79441/10270/1778/80321/51347/10540/22995/51720/55755/571/4204/11064/55031/22981/1022/4659/4660/1454/23291/2029/472/79176/5569/5890/1112/9344/7846/23236/8481/902/5218/1639/8929/5087/8945/80254/7157/95681/9738/6500/55142/4303/80184/9024/79831/7840/80169/595/1781/10142/9814/54820/80279/23194/29997/25949/5243/5108/3306/5577/2273/5988/57551/51149
## GO:0043903 7153/27074/3669/820/6355/3576/9636/6352/4599/200315/6772/3838/91543/6351/3429/6590/4938/4940/5435/8638/8547/1991/3853/2597/5359/5479/3394/5806/940/2219/3929/5440/3434/3965/6732/8815/23076/5702/7124/22880/4049/7852/51497/5629/5433/348/60489/79720/26986/27350/5034/5610/6882/1642/10018/10450/9217/9830/5371/3593/6441/8091/3428/6597/200316/5437/904/10465/9126/89870/6780/5886/5481/6372/920/5439/684/5431/80149/5478/27183/29883/8878/3065/5436/1072/10155/1660/7726/325/7023/7706/3586/972/3609/5987/11074/23633/6993/2959/11267/8468/51176/5978/23367/8724/5438/5432/22954/51193/2332/3956/25978/7879/4353/56829/6827/6598/2963/6829/9869/9150/22938/103/2033/85363/64710/5091/51297/383/6895/6733/1655/302/5434/9525/23435/6737/5586/10107/7251/25920/1654/10475/7113/572/51495/104/8812/51773/3725/9218/55337/24138/7538/5007/55770/29969/55196/10318/858/51763/3440/8519/201626/11043/25833/55223/5819/5430/64848/7155/1025/2040/6667/3456/2150/1105/5071/5441/27243/23265/10206/54737/57506/4057/2962/4153/63901/23272/596/3685/10410/948/6041/1511/2934/2494/81603/10581/857/25827/3249
## GO:0009266 3627/81570/133/9688/3654/22797/4067/2766/6489/3162/51316/3351/3066/30001/51022/3329/5024/9631/11168/409/8989/6396/10808/1244/23165/27344/929/55706/23636/7852/1410/5743/7226/3301/7415/26027/6119/26973/4927/79902/3310/3297/10762/57805/10294/51501/5594/4277/8480/4792/2047/8891/27000/10049/11097/9532/6769/51278/51393/2932/153/9972/81929/3552/3326/4914/2288/57122/5931/79023/9818/3281/1026/134/2063/5313/63982/6117/3320/8531/1965/9261/4842/23511/7067/10728/3337/57468/6647/59335/7425/1361/5611/23279/6118/5566/55466/2475/64223/9530/841/7175/4287/9093/59341/2660/488/23225/1006/1616/10891/6869/9451/1967/8021/53371/815/7341/8890/207/2033/80196/818/4928/5609/10893/4923/80036/8086/49860/816/8823/8892/545/27429/1068/7531/79054/9883/7266/8893/5903/348995/10777/4846/55746/9531/56925/10273/9529/3356/472/7200/11080/23411/2729/4779/7057/5562/154/5595/4763/490/1387/37/6548/100507436/6750/3490/947/844/65084/573/2246/10016/2308/2353/5468/55198/3306/26509/4023/7350/6387/3305/56892/26353/9658/7041/55107/3357/3479/4137
## GO:0006732 5163/23475/952/55711/10797/5214/4199/55526/7298/8875/2643/6319/262/23590/9688/6472/3101/26330/1719/54541/4860/8564/6576/2821/5226/7086/57103/4200/8942/3418/7167/6515/27235/2584/8876/11332/55034/2597/5230/9631/2023/2539/8884/5223/8514/55856/6513/8566/57017/5208/80308/4522/58478/6888/6396/1737/215/81034/4190/5210/23165/5315/6573/9200/55706/79071/5160/51805/56922/23636/5027/5165/2180/3692/5743/22934/3091/3099/7415/26027/570/51268/4927/79902/874/10762/8480/55753/3607/25874/11097/2182/23597/5161/3939/2618/8050/3417/5232/64834/55328/9972/2820/9390/81929/2027/5211/2646/51071/5236/57122/10135/9446/2346/51144/5805/5209/79023/9818/23305/201562/4191/10005/5313/229/1622/4143/27249/5096/2326/79178/55066/27035/6521/23511/51074/23205/4552/83440/1738/2348/2194/65220/226/4598/51085/230/471/23279/4524/60496/8694/2645/3141/27304/7175/5465/1743/4967/5213/5207/51548/11319/23057/23225/60490/54995/47/25796/10891/80025/3630/29914/8021/55312/53371/81616/6470/9054/5571/1727/54704/11277/4928/2026/10841/3156/5091/5740/683/3098/4144/8034/89/2356/10840/10243/669/2639/4338/8086/27010/9962/56997/405/55229/9883/6774/2103/57107/10400/283927/55163/51341/51004/5903/4907/2350/51660/23498/5092/2327/348995/9524/54956/79717/51703/10249/54981/55746/863/4656/9540/27231/26471/23729/6697/5538/8801/441024/31/27430/10654/51181/38/3356/79934/8473/23417/55739/686/79066/8803/51422/80347/5224/2729/5562/79646/6622/9611/9759/9563/10229/4837/5162/7157/957/55191/5563/5164/79966/3643/2181/5095/27232/8604/3155/2954/1528/6785/7923/11019/57834/64080/60481/5166/51117/3295/64087/84869/4337/2203/23743/2819/23171/80221/32/26137/54677/54898/10157/3479
## GO:0048002 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/6890/56992/3126/3112/10437/5688/5709/5698/5693/1535/1520/5713/4688/5641/5721/5691/5685/5690/5684/5686/5695/2210/1514/10213/23198/4689/6891/6396/5699/5714/5702/1509/5708/1174/5692/3119/5704/55016/2213/1536/3135/164/5683/1175/55080/50489/5694/3134/10134/1147/5718/5682/1785/1510/5716/3109/811/2923/162/3108/5707/3797/1211/6556/3122/3835/3106/5696/3796/3107/10802/3111/1173/5719/5700/9554/829/3105/5717/50856/10197/3416/84516/1780/972/5706/8517/5710/6892/3133/1636/5689/5720/10332/832/10121/3113/6456/5701/7879/9491/1213/5711/5715/8655/8673/51128/3798/567/11258/9861/5705/821/3115/9871/22920/7189/1783/8905/10120/161/830/4012/51143/22872/1778/30835/3120/10540/10053/55860/163/64837/9632/51752/11127/10671/3831/64167/3077/10427/1639/29108/9341/10484/3140/9371/2209/3685/51164/948/54209/1781/114876/8722/8773/3693/3551/3117
## GO:0009150 983/5163/891/55711/5214/55526/8833/6319/9688/6472/3101/26330/3948/54541/4830/10380/6576/2821/57103/1537/8942/5471/7167/9377/4436/2584/30968/353/11332/4626/55034/2597/637/5230/9631/6783/10606/2023/5223/706/55856/10059/57017/4726/5208/4704/10105/6396/1737/215/5210/23165/5315/3251/158/29796/4624/9200/7386/142/55706/79071/204/5160/2395/23636/5027/5165/4725/518/2180/9061/3692/4723/3091/9551/506/3099/10165/7415/5901/26027/525/5142/570/1349/4708/27284/51268/9414/4927/79902/4700/509/10762/4880/54539/8480/55753/3607/25874/1351/11097/2182/23597/5161/3939/2618/1329/8050/5232/113/64834/4719/9972/55669/4697/81929/4702/4878/4354/9060/2027/516/5211/54928/2646/4694/1340/5236/10845/57122/272/51144/5209/79023/4712/9818/23305/4722/201562/10005/5313/4711/522/229/1337/1622/27115/7381/4710/8573/7384/10476/55066/514/6521/9605/1327/109/23511/9167/23205/83440/2773/6822/1738/2194/65220/3614/226/4706/132/4598/51085/515/230/471/23279/9567/8505/8694/523/2645/526/27304/5151/7175/1740/5465/5152/2987/4717/51079/10632/1743/4967/10861/4720/271/5213/5207/4833/29789/4709/51548/498/1352/4713/11319/6819/23225/60490/54995/47/10891/80025/5143/53343/3630/4625/55811/8021/1345/79631/4701/2631/53371/1739/79736/81616/3704/25830/1969/29103/4729/9054/5144/7040/5571/3094/54704/11277/4928/2026/3156/23433/4714/3098/6901/4696/11315/159/7114/10201/89/10243/669/521/2639/539/4338/8086/27089/6820/405/513/55229/4621/5169/9883/203/6774/2103/6834/4976/10975/572/7385/283927/8460/1497/1836/93974/116/1355/27109/55022/51341/374291/387/5903/4907/79085/51660/5741/4707/348995/9524/79717/51703/51715/10249/55746/112/2983/4204/6095/863/4698/4656/26471/1350/23479/201626/538/5538/4879/8801/4695/10846/31/10654/4705/38/51103/3356/8473/517/23417/65018/8803/4724/2982/51422/2977/80347/5224/115/5141/5562/79646/6622/56848/9611/107/29922/5198/9759/270/51292/5162/7157/6799/957/8654/8459/5563/108/5164/4882/79873/79966/3643/2181/3615/54209/4881/8604/3155/2954/6785/7923/8622/6817/201163/481/60481/5166/5136/3295/64087/477/84869/4337/4832/2203/5138/2819/80221/32/5167/5744/26137/8382/54677/54898/10157/3479/26289
## GO:0034329 7368/1894/59272/23603/51599/6624/7422/865/2824/9076/7124/5795/23616/79834/1365/88/5578/79977/92140/6422/50848/9971/56288/5747/23114/6714/3852/402/3987/7414/7408/11170/4867/7855/829/6722/8394/2185/5584/11187/60/5566/998/9948/50855/8861/1636/6615/3691/928/59341/2889/3273/5879/2017/5796/1739/3655/3918/26585/79983/2316/1969/5318/1845/5908/3678/5906/8826/89/6281/3982/71/79778/3911/1946/23332/81/4323/5586/87/1613/84612/10015/8443/64398/6093/183/5339/261734/3914/4649/7094/56940/8874/204851/395/7205/6904/5728/6801/2705/4092/9475/2039/387/3728/1828/10052/4983/9448/4301/25/2335/3673/5583/5170/9270/5872/29984/5800/287/7145/1495/57669/10395/9647/9344/8502/4641/7082/9693/7057/54828/23499/3611/8506/3915/7070/6385/55679/10420/2702/23136/10211/1499/83660/9748/4088/7010/23396/94/6548/3791/22998/51564/9231/596/100506658/324/977/2318/7248/10979/2701/23122/57493/8829/2042/201163/1003/10580/6591/3861/7481/4653/857/10391/3909/10207/4035/54361/3551/347/2697/7122/10266/1307/1308
## GO:1903522 10874/23630/952/1824/59272/133/2643/3768/1482/3775/3757/4159/6870/779/3753/483/9631/274/3383/100/491/147/55151/4624/5743/6262/551/1956/5142/26251/1525/1573/10539/10021/786/1908/5724/4880/6261/3777/2626/3558/153/55328/151/4878/1839/5732/30820/40/9446/10368/152/774/3741/134/4205/53826/6786/5997/522/2243/10371/3710/3761/156/80149/1113/2266/1813/4842/6327/5294/6331/6336/7067/3274/7137/552/80005/80763/6271/4193/4635/3762/8048/5566/1756/2740/5020/1674/1636/781/492/53822/4634/1131/2775/784/488/10269/27302/6869/177/4625/785/1739/7068/478/476/148/859/2316/7341/81285/1193/5318/5144/207/3717/846/5349/3759/2244/778/5999/486/186/140/4633/1829/487/10369/2931/6263/3269/1906/3770/7531/6324/493/6640/183/30819/5023/10659/8913/10060/4092/782/10345/387/3728/624/489/27345/10052/6781/8620/659/8912/64091/2258/4846/6909/287/1832/3781/2548/10768/9722/3356/9992/3760/6543/3750/3709/7054/6546/10242/783/2150/30845/1889/7139/27091/3784/1760/9732/2702/9759/10265/8654/23493/490/4882/845/6548/29119/1129/29098/2034/482/7168/2149/27129/1490/5025/1621/4881/10142/844/444/7042/3270/6717/3752/1907/57731/481/54795/2281/55799/7220/3952/3751/2946/8864/477/27092/6720/857/775/23171/5350/55800/2697/185/6863/7349/150/9254/6505/5348/776/3708/10699/60598
## GO:0150063 5080/9355/6664/8842/712/639/7399/6496/362/1412/6247/7111/2296/5146/79888/3066/24147/578/3208/1411/1019/9997/60436/4647/3549/2792/4771/2254/10220/23287/7422/86/2780/1413/2048/1410/5629/3091/23210/1956/5469/7490/23657/1421/655/6240/356/30813/6094/6654/2047/55636/1418/835/79977/55212/6597/25806/2820/3975/7101/23418/6121/2195/6656/30062/10763/64220/2779/5309/4669/4867/7855/79583/581/6722/3065/5915/23094/7477/5584/7275/43/4617/5818/7475/7289/25932/6256/5078/4308/3150/93/25794/2303/25987/7472/654/1282/22926/793/23322/58158/28996/6096/7287/1181/1545/57096/7476/51384/56006/23424/2201/3985/6657/1826/2782/64919/50937/22989/10461/3684/55000/147912/1739/7068/51343/284217/1969/10765/7046/4760/7040/668/4544/9314/10002/2916/5156/26146/57030/5961/4041/3982/65979/9573/10312/10586/1419/7528/6497/4149/493/23770/6010/6774/55764/4976/5979/5663/261734/6152/1497/8736/5316/22882/6604/718/3299/10818/54549/204851/3725/5458/10319/7431/2301/5308/10210/659/6498/357/9927/9839/27077/8419/10152/7291/5916/6909/22930/23554/1270/23093/8854/220/4916/6662/6670/130916/22899/5076/2909/84440/6015/10848/4286/7054/4237/7020/51761/25836/7070/8289/57835/3624/9172/4763/54806/1499/2295/10265/4814/4088/2703/490/8322/5204/4124/94/5914/1543/80184/1027/1028/182/4211/25945/7474/3615/57045/23047/596/2823/4628/8412/4212/7482/5797/7042/8829/7048/5176/1735/5950/1295/9742/6469/1290/57728/81029/585/2202/91851/5764/5159/1471/1289/775/116039/1296/4915/658/2737/4081/1746/2697/3913/6935/6297/2200/11081/55714/652/4693/2625/7021
## GO:0001654 5080/9355/6664/8842/639/7399/6496/362/1412/6247/7111/2296/5146/79888/3066/24147/578/3208/1411/1019/9997/60436/4647/3549/2792/4771/2254/10220/23287/7422/86/2780/1413/2048/1410/5629/3091/23210/1956/5469/7490/23657/1421/655/6240/356/30813/6094/6654/2047/55636/1418/835/79977/55212/6597/25806/2820/3975/7101/23418/6121/2195/6656/30062/10763/64220/2779/5309/4669/4867/7855/79583/581/6722/3065/5915/23094/7477/5584/7275/43/4617/5818/7475/7289/25932/6256/5078/4308/3150/93/25794/2303/25987/7472/654/1282/22926/793/23322/58158/28996/6096/7287/1181/1545/57096/7476/51384/56006/23424/2201/3985/6657/1826/2782/64919/50937/22989/10461/55000/147912/1739/7068/51343/284217/1969/10765/7046/4760/7040/668/4544/9314/10002/2916/5156/26146/57030/5961/4041/3982/65979/9573/10312/10586/1419/7528/6497/4149/493/23770/6010/6774/55764/4976/5979/5663/261734/6152/1497/8736/5316/22882/6604/3299/10818/54549/204851/3725/5458/10319/7431/2301/5308/10210/659/6498/357/9927/9839/27077/8419/10152/7291/5916/6909/22930/23554/1270/23093/8854/220/4916/6662/6670/130916/22899/5076/2909/84440/6015/10848/4286/7054/4237/7020/51761/25836/7070/8289/57835/3624/9172/4763/54806/1499/2295/10265/4814/4088/2703/490/8322/5204/4124/94/5914/1543/80184/1027/1028/182/4211/25945/7474/3615/57045/23047/596/2823/4628/8412/4212/7482/5797/7042/8829/7048/5176/1735/5950/1295/9742/6469/1290/57728/81029/585/2202/91851/5764/5159/1471/1289/775/116039/1296/4915/658/2737/4081/1746/2697/3913/6935/6297/2200/11081/55714/652/4693/2625/7021
## GO:0022409 10563/29851/1493/6352/7037/3932/80380/3559/6347/8767/1236/10859/3654/55423/3574/3575/4860/4651/4067/7412/864/3458/959/11151/942/3329/8876/1991/10288/3689/5788/916/3383/6375/100/3600/3549/923/940/939/5588/3965/9308/10808/1445/865/10148/4690/6850/246/8013/7124/912/3569/5133/8772/8440/10125/3071/3135/8808/6376/100133941/4192/655/7525/5724/9402/2651/55083/54440/3593/8651/3558/729230/3592/51571/9780/3109/5345/11006/3170/1326/5058/6714/64127/970/2885/920/23308/101/2243/941/5970/3606/2056/8728/6363/2266/199/10892/2113/7292/8740/11221/3586/10385/11126/972/7535/7409/3707/3676/1948/2534/3553/5062/1604/5781/4838/3146/3565/998/3133/5777/9093/9092/5063/6366/6657/3956/9840/3113/8943/1947/10076/5879/975/1540/3142/177/3655/8915/3037/5290/207/7040/51043/960/2319/6188/50943/2244/59067/3115/114548/301/22920/7189/961/1803/11148/10630/1949/572/3566/8764/4092/3594/30835/2039/387/2736/51561/6708/4301/288/5170/8600/5420/5896/22890/8546/57178/6777/8613/10725/3280/29108/9655/7070/10211/8631/1960/5295/5914/4602/604/7474/5590/4179/10272/7048/79679/10370/6469/3485/3952/7494/857/7704/2737/3572/3479/4680/3169/2625
## GO:0009260 5163/1503/5214/7378/55526/8833/6319/9688/3101/26330/3948/54541/4830/6576/2821/57103/5471/7167/2584/30968/353/11332/2597/5230/9631/10606/2023/5223/5208/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/3091/9551/506/3099/10165/7415/7372/4927/79902/509/10762/4880/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/113/64834/790/9972/81929/4878/9060/2027/516/5211/2646/5236/57122/56474/272/51144/5209/79023/54963/9818/23305/201562/5313/522/229/10476/51727/55066/514/6521/1723/9605/109/23511/23205/83440/1738/2194/3614/226/132/51085/515/230/471/23279/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23225/60490/47/10891/80025/3630/55811/8021/55312/53371/81616/7040/5571/54704/11277/4928/2026/3098/6901/159/7114/10201/89/669/521/2639/539/8086/405/513/55229/9883/203/6774/2103/1836/27109/55022/51341/5903/51660/348995/9524/79717/51703/55746/112/2983/863/4656/26471/5538/4879/31/38/3356/8473/517/23417/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/56848/9611/107/29922/5198/9759/270/5162/7157/957/5563/108/5164/4882/79966/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0030900 597/259266/5080/2146/9355/9928/2173/7804/5307/6491/6751/1869/6496/6715/54149/4830/5194/9289/8941/5449/8820/2253/1749/1812/64211/284403/55079/664/22943/6513/166614/4771/23287/9095/1943/3251/5457/999/1020/5992/7143/57282/23028/4781/2692/3014/8013/474/2048/63827/7852/5629/3091/1000/26047/5901/1956/81853/23657/4192/6240/7305/238/6753/50674/8891/55636/2618/2932/79648/63974/5456/25806/5455/3975/2049/836/1141/7101/2637/6714/6091/10092/3398/6656/6531/30837/6434/1267/8851/22809/8828/1399/3362/30062/10215/55236/26050/83696/10371/22903/581/4900/1459/1813/2131/2113/3799/6722/25777/6608/3065/6331/5453/5915/4142/7477/26038/3337/27185/5079/81544/55118/552/2534/471/2902/7301/25987/190/6754/886/9001/23322/3746/547/7476/55558/6657/3845/63925/2775/3361/64919/3747/6343/81565/50937/3684/10891/2044/317762/27023/7471/4854/3516/23035/5626/2316/7314/79969/4760/1600/10716/3084/5881/79143/657/23224/8022/23380/2016/7080/27429/1436/51199/27089/7531/351/57142/6497/54407/493/317/1021/572/5454/5663/116/5048/10818/6506/8893/5728/80055/4852/8482/387/6658/1398/650/5308/2624/6259/2736/23334/6900/4983/26468/23353/56949/7515/9839/1385/2258/429/3670/8195/8650/22930/2648/8854/2260/538/220/23135/5649/7155/2909/10395/1392/554/23236/5802/7054/7026/6546/29072/79600/3280/2263/546/9693/8289/4642/3624/56339/4763/1499/9638/23314/79048/8648/2735/6752/5914/306/3736/6299/7474/558/57045/2145/5592/4628/8646/5021/7248/4929/7482/54820/3912/3400/9353/1902/8829/4747/358/5108/6469/2691/1281/9037/585/55970/7832/79633/85458/9201/5764/6387/79659/89927/4035/4915/4487/54361/2737/388677/1746/114327/6926/2018/652/4036/2066
## GO:0006816 3627/6373/4283/6355/23413/6352/5026/3932/1230/6347/6351/1236/10859/55503/4067/1535/63933/5336/11151/5031/1594/30001/779/1812/578/30968/10288/3208/3783/5024/5788/1234/274/3383/2539/706/6375/10059/409/491/55858/8989/6406/55151/1020/930/9456/7439/27032/945/9474/5027/2641/7852/2906/5743/6262/4644/7226/57214/5142/23566/6376/3596/786/356/2280/1950/10730/6261/55636/5371/117/6769/29927/51393/1394/6520/24145/931/1649/4878/255057/1137/56302/375346/1179/9002/1141/8832/6690/9446/10368/5579/8291/7224/774/920/1729/9033/9629/55013/55486/6786/11331/57113/2035/623/3710/8573/2056/10800/140803/6363/581/1813/4842/10343/7416/79568/5294/773/5621/26133/10939/3954/10523/2185/5335/29763/9472/23203/4308/5987/4988/2534/1447/7421/2902/6271/41/22821/57192/9001/5566/1756/10316/3358/2645/5245/5155/5777/2904/2847/781/2332/6366/492/59341/2775/784/488/7222/8911/9914/10269/57053/785/2631/353514/55283/8996/815/148/859/2859/57158/7341/1193/22953/5144/2147/7040/846/5957/5581/818/308/6236/778/2916/6687/5999/80228/302/28954/487/10369/3060/304/6263/4923/7225/80036/816/2852/7531/2903/79054/57338/493/55584/135/4976/183/5023/7009/3603/5663/8913/5319/10267/57165/7223/8787/3064/54499/782/10345/387/799/489/79085/6781/4987/3200/8065/8398/5741/11141/25/7178/8912/63892/5664/5170/3958/1815/4846/2771/11027/10367/51763/2905/309/287/25998/9512/9722/3356/9992/1392/6543/4638/27075/3709/6546/54836/5310/9104/783/6622/30845/7070/4985/6588/27091/10681/56848/221154/777/5530/1499/825/490/10268/845/6548/2669/51669/7466/7779/596/9187/3685/2823/2149/1490/5025/80024/844/187/79026/5311/2701/2259/27039/3270/93129/6717/481/54795/53373/2247/2281/55799/3306/10203/7220/2946/477/27092/2621/6387/5159/857/775/5138/5350/2697/3357/7349/150/9254/10266/776/3708/8614
## GO:0051402 4605/9928/2019/6347/8326/2020/8200/6770/1051/2730/54532/27242/11151/3162/5459/4436/5641/2253/2597/637/7336/664/2539/16/10525/10280/409/8883/5457/1020/142/2558/468/8013/7124/8882/8772/3091/6376/9131/4192/23321/356/7305/4504/728/10018/997/835/10617/5582/1649/3326/4914/1728/836/1522/4841/2896/3309/2895/8851/10763/2914/208/5309/101/2876/2562/55532/9244/581/5621/9040/6418/2185/5584/3745/116986/2561/4099/6647/2534/4296/2902/7301/55294/28996/2668/1271/4170/3265/5063/6495/3845/7015/3684/10891/6477/27023/55626/58533/7068/23394/23529/284/5290/26281/3717/4544/1386/6620/11315/6733/2898/23385/351/2901/26012/4149/317/3981/135/6093/112399/5663/4835/104/51604/3725/387/23017/1822/26355/8846/5803/5170/55074/842/429/3670/5300/1201/4204/26471/1270/5423/5538/5913/7516/2309/472/598/65018/2065/7020/2729/3672/51024/8626/3611/6622/5071/5921/10314/5925/6416/4763/22861/9759/6326/1499/6453/7157/4776/408/23621/4602/4435/7466/558/596/79625/2149/4804/80823/54463/4929/219699/7042/4208/8829/1735/4747/6812/7832/4671/2045/4035/4915/10752/7786/7043/27324/1524/2625/7021
## GO:0051188 5163/23475/29968/79094/5214/4199/55526/2643/6319/23590/9688/3101/26330/1719/54541/4860/8564/2730/6576/2821/1535/57103/8942/3418/7167/27235/2584/11332/55034/2597/5230/9631/2023/79017/5223/706/8566/57017/5208/80308/4522/6396/1737/5210/23165/5315/9200/55706/79071/5160/51805/2395/23636/5027/5165/50506/2180/3692/5743/3091/3099/3145/1536/23657/211/4927/79902/10058/10762/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/402055/64834/55328/9972/9390/81929/2027/5211/2646/5236/57122/10135/51144/5805/26873/5209/79023/9818/1544/23305/201562/5313/229/4143/27249/55066/6521/23511/23205/83440/1738/2194/65220/2937/226/3658/6647/7390/212/51085/2534/230/471/23279/2645/27304/7175/5465/55748/4967/5213/5207/51548/1352/11319/23057/23225/60490/47/10891/200205/80025/3630/29914/25974/8021/55312/53371/81616/9054/5571/54704/1371/11277/4780/4928/2026/3029/5740/3098/4144/8034/89/2356/10243/669/2639/4338/8086/27010/56997/405/55229/2235/9883/6774/2103/57107/1497/55163/93974/4891/1355/2687/51341/51004/54977/5903/6708/51660/23498/5092/348995/9524/54956/79717/51703/54981/55746/7389/863/4656/27231/26471/4258/53905/6697/5538/31/27430/38/3356/79934/8473/23417/55739/79066/8803/51422/80347/5224/2729/4779/55316/5562/79646/6622/9611/9759/10229/5498/4837/5162/7157/957/55191/5563/5164/7755/1543/79966/3643/2181/2954/6785/7923/11019/60481/210/5166/51117/56898/84869/4337/2203/2819/32/26137/54898/3479/4129
## GO:0072511 3627/6373/4283/6355/23413/6352/5026/3932/1230/6347/6351/1236/10859/55503/4067/1535/63933/5336/11151/5031/1594/30001/779/1812/578/30968/54503/10288/3208/3783/5024/29986/5788/1234/274/3383/2539/706/6375/10059/409/491/55858/8989/1244/6406/55151/1020/930/2694/9456/7439/64116/27032/945/9474/5027/10686/2641/7852/2906/5743/6262/4644/7226/57214/5142/23566/6376/3596/786/356/2280/4504/1950/10730/6261/55636/5371/117/6769/29927/51393/1394/6520/24145/931/1649/4878/255057/1137/6948/56302/375346/6556/1179/9002/1141/8832/6690/9446/10368/5579/8291/84061/7224/774/920/1729/9033/9629/55013/55486/6786/57380/11331/57113/2035/55532/623/3710/8573/2056/10800/140803/6363/581/1813/4842/10343/7416/79568/5294/773/81614/5621/26133/10939/3954/10523/2185/5335/29763/9472/55676/23203/4308/5987/4988/2534/1447/7421/2902/6271/41/22821/57192/9001/5566/1756/10316/3358/2645/5245/23516/5155/5777/2904/2847/781/2332/6366/492/59341/2775/784/488/7222/8911/9914/10269/57053/785/2631/353514/27173/55283/8996/815/54805/148/859/2859/57158/7341/57185/1193/22953/5144/2147/7040/846/3759/5957/5581/818/308/6236/778/2916/6687/5999/80228/302/28954/487/10369/3060/304/6263/4923/7225/80036/816/2852/7531/2903/79054/57338/493/7991/55584/7781/135/4976/183/5023/7009/3603/64924/5663/8913/5319/10267/4891/57165/7223/8787/3064/54499/782/10345/387/10463/799/489/79085/6781/4987/3200/8065/8398/5741/11141/25/7178/8912/63892/5664/5170/3958/55334/1815/4846/2771/11027/10367/51763/2905/309/287/23479/25998/9512/9722/3356/9992/1392/6543/79815/4638/27075/3709/6546/54836/5310/9104/783/6622/30845/7070/4985/6588/27091/10681/56848/221154/777/5530/1499/825/490/26504/23390/10268/845/6548/2669/51669/7466/7779/596/9187/3685/2823/2149/1490/5025/80024/844/187/79026/5311/2701/2259/27039/3270/93129/6717/481/54795/53373/2247/2281/55799/3306/10203/7220/2946/477/27092/2621/6387/5159/857/775/5138/5350/25800/6947/2697/3357/7349/150/9254/10266/776/3708/8614
## GO:0032943 3620/6664/1503/952/1493/6352/3070/7037/80380/3559/8767/51237/10859/1051/3574/3575/4860/22806/7412/959/27242/11151/51083/11314/79915/1880/3329/10288/1794/5788/916/6375/100/3600/3659/3549/923/940/5880/5588/3965/10148/3251/5699/930/26191/4282/4690/912/5027/3569/83737/8772/51293/8440/2213/23240/3071/3135/100133941/3596/2000/7293/4478/1380/7305/7133/958/6654/54542/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/931/6693/384/6556/836/973/1141/8379/970/7356/4332/920/3635/1026/695/23308/3606/2056/6363/581/199/10892/8744/5294/896/5621/7292/8740/3614/3586/10385/972/4352/7535/7099/2534/3553/1604/5897/3146/10457/3565/3133/2302/6194/5777/1636/9093/11119/63925/3113/1947/975/7001/11146/2796/6869/177/1739/1435/23529/7040/51043/6188/50943/59067/23228/383/3115/301/7189/944/1178/11148/5585/2064/23385/29110/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/25/3958/6304/64343/5573/472/6777/5580/3456/3280/29108/5532/6385/1499/7157/8654/8660/3567/604/5813/2322/9231/3615/57045/596/4179/196/977/4208/7048/79679/2281/6469/3485/3952/54361/2615/2697/6863/3572/3479/10451/652
## GO:0051090 6280/6279/2146/8061/4821/8792/7804/2175/8767/3055/1029/3654/9447/1054/114/959/3162/3066/8877/6283/3689/3383/6375/8807/23586/409/7128/5588/3965/7422/5457/23028/4188/6850/4794/7480/7124/3569/7097/83737/5629/11124/1240/7186/3556/6376/6862/7293/10987/655/958/238/3059/5610/10221/5594/50674/4792/57162/9421/7185/57118/9830/7334/6446/1147/8431/92140/6597/8896/5716/10333/2958/1611/1649/1432/89870/8928/10293/2672/4914/3170/55655/9971/9908/54583/4869/64127/8986/3398/5579/4615/4796/6788/8323/695/101/5927/5292/11331/83696/5970/80149/3606/266977/7311/10892/6722/54101/6608/4761/8837/5621/7292/1660/7726/5584/4221/7706/79918/3586/5602/5727/4294/8517/7099/4791/5987/3553/6883/11074/190/7472/4838/25855/10498/6885/22976/23085/8809/28996/2302/1545/222487/4591/5526/1440/22954/5599/3845/6233/4795/7316/10454/9175/1540/7001/10891/2044/4825/171392/177/3630/23373/6929/7471/9181/60401/8915/26585/6598/10193/2100/5587/10346/815/4040/2316/11261/4808/7314/7341/4760/207/3717/7040/2033/85363/2319/6188/1386/55367/50943/9314/65992/5740/5600/11315/7114/114548/140/58509/1896/7984/1491/7189/11060/54386/55859/9817/7187/6737/1906/4790/7874/23376/351/6672/8717/6872/10475/58487/148022/22900/4919/6774/26508/183/6425/5319/3725/10616/5728/9684/25865/4092/51341/28952/51588/5458/3728/10935/9575/8887/8995/847/5195/51360/23118/3815/10519/5583/8600/9464/7291/5601/6045/56998/51389/7098/10392/25950/26471/307/11043/60485/55223/8737/4824/5607/5649/59307/9969/6911/6934/65018/63973/8613/4762/23411/1856/5310/10014/29108/7158/4601/4345/4985/8321/5925/107/5530/5595/9759/10211/1499/8945/10206/4921/2535/57506/408/55914/4088/825/3399/4057/8322/268/3567/28984/3275/306/79092/7474/7466/5590/9252/948/84159/9208/5311/80279/3397/7188/64320/6717/2353/2241/5468/81603/6469/8553/84851/54360/4488/2621/2099/11213/857/1191/5167/3551/367/6424/4693/3169/1524
## GO:0009755 898/6502/11240/6751/6943/2642/9420/55915/409/865/142/5467/8284/2692/8013/23636/2180/6755/5901/5536/5469/672/655/6753/1460/23019/2101/8431/1394/6597/8896/8202/1395/811/6422/10432/7533/8928/9125/9971/2288/7101/5058/6714/3164/2649/3172/2063/11331/55885/9970/7181/10062/3065/6049/5915/7067/51094/8856/6256/5781/7421/190/6754/4838/8085/10498/51176/6096/5245/9113/5465/434/1616/10891/10413/7182/6257/9063/7068/10524/4848/10474/2100/81606/81285/3717/2033/9325/8312/10002/65992/23054/6047/11315/23543/79602/1655/55818/2852/23376/11214/6872/26508/2103/79039/23558/9612/79876/10013/51341/387/5458/9575/2693/5741/8031/5972/51366/5916/7376/56937/3670/51389/6095/1022/8554/4824/79447/55325/7200/2274/1392/9604/406/7025/5187/23411/7026/29966/6879/8626/8289/2516/26060/1407/51569/9611/9975/5925/7337/1499/25959/1601/2908/10521/10424/8648/2104/5547/6752/6258/5914/3275/6750/11057/3174/181/23426/8204/4929/55128/4734/2494/5468/1393/55198/57658/4246/5618/8611/2099/6097/4306/7041/367/652/3169/1408/5241
## GO:0071241 890/891/4318/1894/8437/641/6770/114/4496/57103/26/3162/5641/4502/4501/3208/664/706/10105/8914/4494/999/142/9076/468/246/9775/5743/8904/1663/7226/1956/5536/7186/1536/9131/27101/3297/4504/4493/5594/6261/3777/4495/3756/7036/1147/1785/113/811/2742/1728/27132/3398/3309/1017/7018/1050/1544/359/4205/55532/1965/6331/4761/8837/5621/241/3707/6647/25932/51507/654/673/57192/6569/1585/1740/2332/5599/23514/7323/3747/2521/1616/10891/9451/567/2021/55811/3184/65125/7341/207/3727/11277/3726/4780/8895/1742/8826/10235/6263/2741/1906/4968/23385/351/3981/63928/23400/572/2822/3725/2978/7518/2039/1584/1398/79085/8912/288/1385/5601/2983/4656/3077/1800/29957/538/55512/4548/2354/7054/7020/546/4779/22871/5562/6622/5071/107/118/5595/4776/825/5563/23621/1543/1027/3736/7474/8644/5025/4314/10272/8678/5311/4499/84059/4208/2308/79800/2934/5176/2353/210/1393/358/6469/2203/6857/2167
## GO:0097193 6280/9833/6279/5163/4102/4318/79094/3932/2537/1869/54541/1051/3162/2810/30001/79915/578/8876/2956/637/2023/664/11200/10525/10059/10105/4683/5457/142/23028/4282/4690/468/7159/7124/29949/5329/5743/3091/3301/7186/8440/100133941/9131/672/7133/2907/675/5034/57805/10131/79156/5771/10018/5366/835/8454/9641/5371/10625/10134/7417/3428/1032/80237/1649/54929/10962/57761/836/8795/6714/4841/64065/8445/1026/54431/26155/4722/2876/8531/2056/5326/64782/27035/581/3065/8453/23604/5770/972/6647/7917/27141/56616/3093/55294/5625/4193/3651/3090/29965/5883/28996/4170/1545/3265/11235/6615/8451/22954/51079/6201/10514/837/1540/3622/3630/2074/51499/602/51657/9451/23645/26287/9368/6477/10961/9181/60401/8996/27113/4217/8428/1969/754/7314/22938/207/3717/2033/10488/960/3094/6188/7132/259230/4780/8575/51741/11315/8725/1655/487/10494/6421/81537/9709/27429/1654/9774/1870/317/4976/5598/572/7009/204851/54700/51588/5458/624/5414/7161/64844/8065/10210/25/7178/6498/10955/842/4292/23368/23378/6135/6880/55031/26471/5423/1687/138151/9529/4824/598/65018/9647/5580/23411/51024/29108/8626/23612/5071/3315/54546/10550/6326/7157/4776/5295/6794/51065/5164/8452/90993/7466/51616/9024/596/2272/8678/64112/7507/201163/6591/57007/7494/6387/857/1396/53832/4487/1191/4582/3708
## GO:0010976 6280/2146/7804/65009/8437/5365/54149/3897/4830/4067/10507/7336/7473/10059/7422/8997/23028/4690/5604/7852/348/23566/2011/6376/9373/84079/4192/655/91752/238/411/5967/9362/57118/3984/3558/51393/5597/9148/6792/4914/10097/54606/5058/6091/2896/3309/7224/1857/2043/6845/5997/84298/1954/2056/1002/10300/6722/8837/8153/2185/5584/55607/27185/4076/2534/7074/50944/6993/51330/1627/2475/7436/11344/8724/5526/23242/23316/8766/2332/5063/9699/56965/396/1826/2889/57154/64764/9175/81565/3706/23654/9897/23373/4058/51657/23191/653/3655/6014/9798/5587/23394/1523/2033/8536/27/2664/4780/55754/5906/1742/8826/9820/8578/10494/816/1946/51199/6324/23011/10458/22999/1382/4976/183/5979/5663/347733/116/54664/10677/5048/27020/1855/5754/950/54700/79594/8482/387/5458/23613/64175/23064/8175/659/11141/6498/127833/2335/9839/27063/9423/50618/57698/9896/57498/9139/2260/4916/51517/5649/6474/2909/5789/1268/2242/23363/1856/9693/51761/22871/23499/23025/79006/3611/5071/466/8321/6453/9638/4131/162427/627/8322/6794/29882/22902/3082/322/7474/81545/9231/79625/4804/2803/23426/3675/80823/4803/1809/65981/11075/22849/9353/1902/8829/2042/5176/5753/4747/2281/1272/9037/5274/22906/5764/6387/23327/4035/4915/6857/9863/55714/51760/4137
## GO:0016055 259266/898/6663/1001/55612/8326/1482/5688/5709/6496/5698/5693/79412/5713/5336/440193/5721/5691/5499/2253/1749/8607/5685/8549/5690/5684/5686/5695/7473/22943/10213/7088/409/23198/1951/2254/865/56033/6789/2780/5699/4624/6659/5714/4188/5702/7480/9978/7097/5708/5692/6262/348/1000/2870/7415/5704/1956/5216/8796/23240/2011/100133941/79705/54994/6862/4192/5683/2300/1950/1460/57805/1175/25928/1642/5694/8454/5718/5682/4139/79577/55737/2932/6597/5716/25806/6422/1649/5707/1432/10297/64750/55681/29117/192669/6714/10856/5534/5696/23401/6788/1857/8323/81839/5145/26523/51444/1173/5719/7855/5700/10042/1459/1813/5717/7311/3065/10197/9679/7477/7479/25805/8324/2348/51704/2010/27185/9275/7475/5706/3484/5710/7074/25987/7472/3090/6885/10146/1455/998/51176/8629/50855/59349/5331/8861/7476/9113/51384/59343/8724/4772/5689/7091/9559/5720/6657/7015/2775/6233/10076/7316/2889/5701/9491/5148/57154/2782/5879/1213/5518/26108/1540/5711/23112/527/5715/2887/10413/331/6928/9368/7471/23072/26585/3516/9209/815/25776/4040/5626/7314/9861/65125/10009/6907/5705/8932/23399/50943/9314/23002/8312/6932/51741/1896/2931/4041/54475/23213/57680/83439/9968/8994/161/4790/351/4163/1654/5330/1453/1613/6497/5868/4919/5494/27130/5663/261734/6425/10159/55182/5728/6801/1855/51701/6382/90410/5754/51588/387/3728/53944/79718/23168/650/5515/6259/29969/55366/163/25/25937/27121/80349/7976/9839/80351/2116/51366/5916/1452/3670/80319/5300/57447/56998/80199/55031/23043/23554/9646/64897/4038/7403/5800/10927/64840/1454/6662/23291/64321/2309/192670/23500/6934/8613/81847/23236/406/54903/2719/9101/7090/4286/1856/54623/8658/5218/2263/5310/9620/8325/5532/23499/5562/3611/8434/1456/26959/5071/23189/8321/51421/2776/5158/5530/80114/54894/2869/166/1499/8945/1601/2535/79960/4776/607/4088/22881/5563/6500/8322/6794/5204/2735/7320/1952/10023/8452/4920/4435/1958/6299/7474/4300/6468/6478/8840/27303/11197/9736/324/3675/595/11211/10979/7089/25960/4929/7482/5311/27122/3087/65981/8418/2308/54795/1277/51339/6591/6469/57658/3485/9037/81029/3489/85458/1501/2099/7481/4653/857/1363/7041/4035/54361/2737/2239/2487/63923/27123/3487/9863/79971/6424/2625
## GO:0046651 3620/6664/1503/952/1493/6352/3070/7037/80380/3559/8767/51237/10859/1051/3574/3575/4860/22806/7412/959/27242/11151/51083/11314/79915/1880/3329/10288/1794/5788/916/6375/100/3600/3659/3549/923/940/5880/5588/3965/10148/3251/5699/930/26191/4282/4690/912/5027/3569/83737/8772/51293/8440/2213/23240/3071/3135/100133941/3596/2000/7293/4478/1380/7305/7133/958/6654/54542/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/931/6693/384/6556/836/973/1141/8379/970/7356/4332/920/3635/1026/695/23308/3606/2056/6363/581/199/10892/8744/5294/896/5621/7292/8740/3614/3586/10385/972/4352/7535/7099/2534/3553/1604/5897/3146/10457/3565/3133/2302/6194/5777/9093/11119/63925/3113/1947/975/7001/11146/2796/6869/177/1739/23529/7040/51043/6188/50943/59067/23228/383/3115/301/7189/944/1178/11148/5585/2064/23385/29110/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/25/3958/6304/64343/5573/472/6777/5580/3456/3280/29108/5532/6385/1499/7157/8654/8660/3567/604/5813/2322/9231/3615/57045/596/4179/196/977/4208/7048/79679/2281/6469/3485/3952/54361/2615/2697/6863/3572/3479/10451/652
## GO:0009615 3627/9582/3669/4283/4321/6355/8061/2633/3159/9636/6352/3934/4599/6502/5551/3559/22948/2537/200315/6772/51311/91543/6351/3429/10859/330/9447/54541/3437/3925/64108/51191/4938/4940/3458/8372/54512/4953/64135/8638/8547/10964/4600/25939/5788/5359/2023/9188/664/4939/6367/30009/11040/6375/3600/3659/7353/23586/7128/3434/3965/81622/3433/3467/6059/3452/8815/23076/7124/79132/3569/10875/50506/83737/7852/8772/1174/63906/64170/6039/6036/60489/56915/10561/5683/958/10622/5610/6356/50489/4277/10018/10379/5366/9641/5371/3593/10625/1147/8091/3592/60509/3428/6397/200316/3663/708/1432/89870/6714/3455/10758/3439/661/64771/684/10577/5970/80149/6363/29883/26057/55509/55666/1072/7292/9255/1660/3443/339/7706/566/55324/3609/3665/10621/8517/3451/3553/5611/10146/54476/3459/10084/2332/55601/11100/27297/10542/1653/55703/329/10269/56829/2074/602/3442/51728/3445/3588/10346/9020/2316/10533/103/4486/85363/3661/3446/11277/50943/5495/8575/5600/10623/51297/3448/114548/6895/3660/26146/54765/8725/26065/7187/6210/1654/29110/10475/58487/148022/1021/572/55421/104/55763/3444/10060/9698/3594/55337/24138/79594/6773/8780/3460/51561/1755/8692/7105/7178/8729/10955/3449/51284/10077/79671/4986/23369/81576/7098/3764/3440/5094/8519/55718/201626/1687/338/10771/5179/1130/59/3454/598/256987/3456/2268/29072/29108/2150/3315/26007/57506/10521/2962/665/3373/100507436/1543/63901/3441/1129/596/10410/3964/8678/54941/6041/29997/7728/10581/90865/9201/6387/11213/1191/5654/3551/2625
## GO:0031647 6790/1448/5347/51512/23560/22948/336/80155/440193/79139/908/56926/3329/10576/2597/483/3009/5479/11200/11040/7428/4771/6789/6659/7480/9334/1410/5216/7203/9770/55278/7305/10755/3920/10574/4504/57805/57733/5591/5594/3054/10575/57602/5476/9532/79577/55737/79763/8805/811/1512/8975/3326/836/6714/5886/2896/8774/6788/1857/7018/1026/5217/9099/25793/26272/2043/5292/11331/11170/3320/7756/6608/5621/389856/10728/9349/58525/51100/7917/55743/55294/8818/4193/27042/5245/10694/335/59343/11235/63943/3845/54552/7015/6201/51548/10408/975/10891/23163/54918/4047/8239/6477/9960/3916/10474/5587/1409/2316/11261/5828/1370/7341/54840/433/23252/6907/2033/2319/149628/11277/54344/4000/51125/8575/11315/54765/6048/23435/6737/7874/29974/57142/6872/11236/8841/173/55729/9026/5728/1855/51701/4092/79594/10013/3064/89781/79155/10869/1828/23673/650/64175/64844/55823/1385/22848/5300/9531/6135/6880/1022/55602/2648/9894/23032/10273/287/60485/9529/23291/64321/5190/65018/6400/7375/5580/8613/23515/9101/23411/902/29108/9919/6622/5071/5824/2776/3092/79612/29116/10211/8945/7157/56912/4088/825/5295/1387/7320/8452/819/54997/7466/51616/596/1942/79831/482/8863/4194/7248/444/1389/3397/84059/66036/91949/29997/79589/2934/481/51339/10103/6812/6720/7494/23327/4487/1191/3479
## GO:0018105 983/7272/9212/6790/891/5347/8767/11009/54541/11184/3458/5613/1812/578/11200/7295/22943/166614/409/5603/7422/63967/6789/1020/7443/8115/4282/4690/6850/7124/3569/5165/2641/5743/551/1956/8440/9770/2011/83942/1981/5605/3059/5591/5594/5578/4139/8091/2932/6300/3589/152559/22853/7150/1432/3326/9125/5058/6714/8986/6197/2081/1017/8851/10456/5217/5008/156/3320/2056/9261/79109/581/1459/4842/5584/4294/51085/5062/11137/673/10178/5566/1455/1756/28996/2475/9530/9113/5155/11235/1440/64324/5599/6795/10114/6198/8569/9175/2074/1859/9451/11011/5587/815/284/5290/7046/65125/5144/207/7040/960/8536/5581/5894/8312/23228/11315/369/54386/5593/7867/545/351/1609/29110/1453/6872/493/6093/5598/5979/64754/51701/25865/4092/9475/10013/2039/799/624/53944/4140/3976/1452/5601/51763/8737/1454/9623/4916/8408/22876/472/65018/9647/5580/79893/3456/23515/8658/5310/5562/3611/6622/1456/4985/146057/5595/408/51719/5563/10268/3082/10253/27347/7474/9024/596/5590/9252/10142/5334/1389/65981/3270/7048/57731/10411/9201/10769/2621/1195/4908/857/23171/4915/3551/7786/7349
## GO:0198738 259266/898/6663/1001/55612/8326/1482/5688/5709/6496/5698/5693/79412/5713/5336/440193/5721/5691/5499/2253/1749/8607/5685/8549/5690/5684/5686/5695/7473/22943/10213/7088/409/23198/1951/2254/865/56033/6789/2780/5699/4624/6659/5714/4188/5702/7480/9978/7097/5708/5692/6262/348/1000/2870/7415/5704/1956/5216/8796/23240/2011/100133941/79705/54994/6862/4192/5683/2300/1950/1460/57805/1175/25928/1642/5694/8454/5718/5682/4139/79577/55737/2932/6597/5716/25806/6422/1649/5707/1432/10297/64750/55681/29117/192669/6714/10856/5534/5696/23401/6788/1857/8323/81839/5145/26523/51444/1173/5719/7855/5700/10042/1459/1813/5717/7311/3065/10197/9679/7477/7479/25805/8324/2348/51704/2010/27185/9275/7475/5706/3484/4988/5710/7074/25987/7472/3090/6885/10146/1455/998/51176/8629/50855/59349/5331/8861/7476/9113/51384/59343/8724/4772/5689/7091/9559/5720/6657/7015/2775/6233/10076/7316/2889/5701/9491/5148/57154/2782/5879/1213/5518/26108/1540/5711/23112/527/5715/2887/10413/331/6928/9368/7471/23072/26585/3516/9209/815/25776/4040/5626/7314/9861/65125/10009/6907/5705/8932/23399/50943/9314/23002/8312/6932/51741/1896/2931/4041/54475/23213/57680/83439/9968/8994/161/4790/351/4163/1654/5330/1453/1613/6497/5868/4919/5494/27130/5663/261734/6425/10159/55182/5728/6801/1855/51701/6382/90410/5754/51588/387/3728/53944/79718/23168/650/5515/6259/29969/55366/163/25/25937/27121/80349/7976/9839/80351/2116/51366/5916/1452/3670/80319/5300/57447/56998/80199/55031/23043/23554/9646/64897/4038/7403/5800/10927/64840/1454/6662/23291/64321/2309/192670/23500/6934/8613/81847/23236/406/54903/2719/9101/7090/4286/1856/54623/8658/5218/2263/5310/9620/8325/5532/23499/5562/3611/8434/1456/26959/5071/23189/8321/51421/2776/5158/5530/80114/54894/2869/166/1499/8945/1601/2535/79960/4776/607/4088/22881/5563/6500/8322/6794/5204/2735/7320/1952/10023/8452/4920/4435/1958/6299/7474/4300/6468/6478/8840/27303/11197/9736/324/3675/595/11211/10979/7089/25960/4929/7482/5311/27122/3087/65981/8418/2308/54795/1277/51339/6591/6469/57658/3485/9037/81029/3489/85458/1501/2099/7481/4653/857/1363/7041/4035/54361/2737/2239/2487/63923/27123/3487/9863/79971/6424/2625
## GO:0070838 3627/6373/4283/6355/23413/6352/5026/3932/1230/6347/6351/1236/10859/55503/4067/1535/63933/5336/11151/5031/1594/30001/779/1812/578/30968/54503/10288/3208/3783/5024/29986/5788/1234/274/3383/2539/706/6375/10059/409/491/55858/8989/6406/55151/1020/930/9456/7439/64116/27032/945/9474/5027/10686/2641/7852/2906/5743/6262/4644/7226/57214/5142/23566/6376/3596/786/356/2280/4504/1950/10730/6261/55636/5371/117/6769/29927/51393/1394/6520/24145/931/1649/4878/255057/1137/56302/375346/6556/1179/9002/1141/8832/6690/9446/10368/5579/8291/84061/7224/774/920/1729/9033/9629/55013/55486/6786/57380/11331/57113/2035/55532/623/3710/8573/2056/10800/140803/6363/581/1813/4842/10343/7416/79568/5294/773/81614/5621/26133/10939/3954/10523/2185/5335/29763/9472/55676/23203/4308/5987/4988/2534/1447/7421/2902/6271/41/22821/57192/9001/5566/1756/10316/3358/2645/5245/23516/5155/5777/2904/2847/781/2332/6366/492/59341/2775/784/488/7222/8911/9914/10269/57053/785/2631/353514/27173/55283/8996/815/54805/148/859/2859/57158/7341/57185/1193/22953/5144/2147/7040/846/3759/5957/5581/818/308/6236/778/2916/6687/5999/80228/302/28954/487/10369/3060/304/6263/4923/7225/80036/816/2852/7531/2903/79054/57338/493/7991/55584/7781/135/4976/183/5023/7009/3603/64924/5663/8913/5319/10267/4891/57165/7223/8787/3064/54499/782/10345/387/10463/799/489/79085/6781/4987/3200/8065/8398/5741/11141/25/7178/8912/63892/5664/5170/3958/55334/1815/4846/2771/11027/10367/51763/2905/309/287/23479/25998/9512/9722/3356/9992/1392/6543/79815/4638/27075/3709/6546/54836/5310/9104/783/6622/30845/7070/4985/6588/27091/10681/56848/221154/777/5530/1499/825/490/26504/23390/10268/845/6548/2669/51669/7466/7779/596/9187/3685/2823/2149/1490/5025/80024/844/187/79026/5311/2701/2259/27039/3270/93129/6717/481/54795/53373/2247/2281/55799/3306/10203/7220/2946/477/27092/2621/6387/5159/857/775/5138/5350/25800/2697/3357/7349/150/9254/10266/776/3708/8614
## GO:0002793 10874/6279/4321/5004/952/55612/51311/914/8767/9447/114/3495/2821/64135/2867/3783/2597/7096/23586/10059/2219/3735/5208/3965/10626/5047/6659/929/26191/5467/945/4282/6850/2692/64109/7124/5027/3569/56253/7097/3091/1956/7273/10125/3556/3596/3814/834/4192/7293/1080/25874/7036/1147/8431/3558/55737/24145/51744/1432/3552/382/55655/9971/6714/64127/5481/8447/5019/134/84818/10802/101/65985/5008/2243/7855/51768/6363/2266/199/5478/1813/5734/64083/3799/57824/7292/9255/1660/65220/3586/11126/6346/43/192683/7099/3553/654/7447/3651/3146/3133/2645/50855/59341/2850/5879/8754/11146/4825/5715/177/3630/3605/79792/353514/81285/3717/7040/846/3661/5581/2244/23086/4155/5600/3098/114548/51762/186/965/55801/23435/51714/640/2852/1436/23765/26253/22900/135/23400/572/7430/27230/2822/5319/3566/8736/116/27159/55763/23607/2695/8692/83786/8398/25/23705/8600/7291/27063/3670/11027/3077/55540/2696/6711/9173/6810/23601/6934/1392/55691/2268/4317/29108/5532/2150/5595/22861/7424/6453/57506/408/10497/8660/11132/3567/2752/28984/322/7474/5590/947/2746/2149/54209/4628/4887/9501/7042/6717/9854/79679/283/54795/23410/5950/727/55204/2691/4023/90865/7494/8938/4035/10631/55638/247/2697/9590/55107/7043/3357/7349/79971/3479/114899/18/25924/2922/2625
## GO:0060047 10874/23630/1824/59272/133/2643/3768/1482/3775/3757/4159/6870/8557/779/3753/483/9631/274/100/10059/491/147/55151/4624/9474/7852/6262/5142/7273/26251/1525/1573/10539/10021/786/1908/4880/6261/3777/2257/2626/3558/153/55328/5606/4878/1839/30820/9446/10368/774/3741/134/4205/53826/6786/5997/522/10371/2876/3710/3761/156/80149/1113/1813/4842/6327/5294/6331/6336/7067/7137/6647/552/6323/80763/6271/4193/4635/3762/8048/5566/1756/2740/5608/2475/5020/1674/1636/781/492/53822/4634/2775/784/488/10269/27302/4625/785/1739/7068/478/476/148/859/2316/5290/7341/1193/5318/5144/3717/5349/3759/778/6901/5999/486/186/140/4633/1829/487/10369/2931/4632/6263/1906/3770/7134/7531/6324/4607/493/6640/183/30819/10659/8913/10060/4092/782/10345/3728/489/10052/6781/8620/8912/64091/4846/6909/3764/287/1832/3781/4090/2548/10768/70/9722/9992/3760/6543/3750/10848/3709/7054/6546/7423/783/30845/7139/27091/3784/1760/2702/9759/10265/8654/23493/490/4882/845/6548/29119/1129/29098/2034/482/7168/27129/1490/5025/4881/10142/844/444/7042/3270/6717/3752/1907/57731/481/54795/2281/55799/7220/3751/2946/477/27092/6444/6720/23327/857/775/23171/5350/55800/2697/6863/7349/9254/6505/5348/776/3708/10699/60598/23704
## GO:0051235 6280/6279/6278/259266/3627/6373/4283/3934/29899/3932/1236/4067/1535/5336/11151/5031/30001/1812/2867/5788/1234/29923/706/6375/5552/7295/3638/8989/6646/55151/1020/930/4188/4794/9474/7124/5027/5905/3569/6262/348/11124/10938/4644/7226/57214/3099/580/6376/3596/356/2280/6261/5771/4792/55636/9641/5371/4052/5716/55171/811/1649/7184/8733/9002/9908/6721/9446/8291/4796/2760/3309/920/402/1729/64714/623/949/80149/6363/10062/581/9350/1813/4842/64083/4481/25777/114885/3954/10523/2185/5335/27329/3586/9472/7782/3553/50944/55294/22821/57192/9001/5566/1627/1756/3358/7529/8694/11344/9113/335/5777/5465/6366/2201/8943/4795/23568/602/3192/55283/8996/6014/51099/2316/19/57158/1193/5144/207/2147/7040/5581/1401/23224/3098/11315/7114/57030/487/2583/4923/2852/4790/2901/6672/57338/7781/2495/123/7430/7094/718/5048/3074/28952/3064/10345/3728/10956/9913/23353/79085/3690/1605/10210/25/288/5170/7376/9619/51490/7405/287/25998/2548/338/3356/6777/65018/23515/23411/5756/3709/6546/5310/57104/6622/4601/7070/2516/1407/23136/83660/825/6500/22873/845/3685/2149/948/8204/10142/80024/844/187/114882/540/5311/3270/6717/2934/57731/53373/2247/2281/5468/23345/4681/4023/2317/7220/3952/1149/585/2946/79068/477/6653/85477/857/775/6571/32/5167/213/5350/3357/2200/3708
## GO:0007265 2305/890/9928/1894/29899/8437/57706/1029/5898/3925/22808/4067/9289/9046/867/8997/117178/1786/5912/23636/2048/345/613/7454/348/50861/10125/8625/2245/9402/6654/4893/5923/10617/5911/10603/1147/3984/1785/22800/6016/9267/1432/5662/382/4914/9908/51196/8936/6091/2885/1017/3837/8550/1026/391/23229/1399/393/27040/84033/7077/50649/57826/2056/55200/79109/199/55160/8878/8844/7410/1072/10155/7409/3707/5962/9844/7074/25780/6993/27352/22821/4650/53358/4851/10146/3265/335/396/9909/3845/9138/5337/2889/27128/2782/5879/10276/5516/10750/54848/10787/26230/23191/4168/79930/199731/9181/1435/6014/5900/5587/148/19/9869/23370/3717/5908/3084/27/2664/4233/5894/56882/11186/5600/3688/10565/5906/11315/7984/79933/6239/55785/9826/10235/10564/10630/65979/11214/10982/23101/23096/6093/221472/253980/7204/51495/9266/10163/8874/395/3725/4853/8036/9475/387/1398/9750/5922/8216/6655/4983/9448/79567/5741/25/7126/9927/8729/10152/80243/5899/27237/9423/50618/397/286205/57698/2059/8315/6237/26030/54922/8711/6464/10160/22899/8473/392/2909/10395/8727/9459/9620/9693/8567/2150/23263/26053/23189/5921/10256/5925/57343/9265/8859/5175/4763/10211/6453/1718/25959/7157/64787/408/26084/8660/9922/29/394/8452/604/29098/64283/1796/54869/2149/23550/440073/4804/3675/9162/9639/4803/23268/7042/57493/9649/1902/9411/1278/8829/50650/201163/9855/23365/2057/2247/10411/1012/1281/55701/5863/25759/10769/4254/4653/5159/2203/388/11188/185/9828/150/3479/55103/10451/23362
## GO:0071229 891/53335/339479/445/2707/1869/4830/1051/4067/2730/1535/5031/55915/3066/2867/1019/7473/58528/57817/7422/1788/9076/1786/7480/7124/5165/1956/1536/6862/7525/5724/3297/8651/1374/9148/6422/2742/9971/5732/6714/1109/359/11331/3949/80149/84861/7477/7292/7479/8324/2348/2185/7475/552/2534/7472/1282/6096/2475/11344/3843/5155/1645/51079/1646/6495/10542/2782/6602/28956/5030/10891/64121/10413/4058/6899/3184/6470/19/81285/22938/207/7520/27/5581/9314/22850/7584/10670/5156/2741/1906/27429/26012/10458/3779/64506/4976/5979/10270/824/5754/55022/2350/23064/6494/1385/112/4656/8854/538/338/4916/6662/31/472/5076/56603/598/65018/2263/2729/5562/3199/23304/8649/51520/6532/4776/5729/1373/3399/5563/8322/10365/3371/5914/1291/4602/3791/10325/1958/54997/7474/8644/5737/11211/5311/22849/1278/2042/5176/5753/1277/5468/5166/358/1281/4023/1290/7350/81029/3952/5244/4313/56034/23677/6720/7494/7481/4915/6935/3667/80310/1307/5105
## GO:0042063 6279/983/5080/2146/6664/26227/4821/6663/57211/6347/712/10397/1869/4067/9289/28999/8941/430/27242/2950/3418/3066/26228/1031/1880/1812/274/664/2840/706/79152/6285/1464/4771/1445/1020/6659/4781/5604/10675/7124/745/3569/4049/7097/9334/7852/1000/1956/1959/6376/4192/7133/4504/728/25825/5594/8891/729230/23513/1814/56288/7101/3398/2896/30837/9283/1267/8851/2358/1399/2043/208/5309/10215/3949/5970/6009/25777/6608/3065/5453/5501/2185/5584/7448/11221/27185/566/4099/6647/7099/3553/5781/7074/10419/2119/54413/4851/9948/58158/2475/2250/4665/27339/80045/928/6657/3845/7015/5028/4825/9463/177/1967/1435/23529/3766/8890/1600/207/2147/7040/22933/3084/10810/79143/4664/23224/5270/23380/6886/2016/10893/9968/6692/7080/8892/4323/1436/2064/23385/23376/351/57142/6497/9331/64398/4919/6774/135/1021/79727/10100/5454/5663/116/79885/5048/3074/57165/8893/5728/7223/5324/387/10319/7431/650/6900/7161/23353/374/1605/25/1938/5803/1385/5583/429/3976/9921/2596/4916/6662/5179/5649/8521/23500/5076/5354/2065/3280/4779/53616/79006/3611/8506/8929/2068/79628/5595/56339/4763/23405/1499/29956/22891/4602/4920/26011/54209/5025/4692/9639/7042/3912/2817/3400/1902/2934/3953/5468/6469/90865/4653/5764/443/3908/89927/4035/4915/1191/2737/1746/54587/3913/3572/4036/4137/1524
## GO:0032355 890/81930/2146/952/445/3015/4324/5111/6715/1789/2950/6870/3549/5457/1788/10095/1410/5743/1956/9131/655/3297/6753/2101/10018/117/8202/811/6422/8886/1728/836/10856/2688/920/1544/4654/2113/8837/7479/3586/5727/6569/841/5020/7476/8930/3361/58189/10891/6869/2021/10524/3184/7040/8932/4968/2852/6529/6774/183/572/53615/9612/5728/2879/8787/5458/2693/847/374/4987/1938/3673/842/599/5066/4656/7035/8854/338/5179/6777/7054/7026/5932/29966/6532/9915/1499/2155/4131/10268/8648/3248/5914/1027/1843/1490/5737/8204/595/5021/1277/1393/8835/6812/3485/3952/4488/10628/2099/5764/5159/1471/10631/2697/7349/10266/3169
## GO:0043401 898/6502/11240/6943/9420/409/865/142/5467/8284/2692/8013/5901/5536/5469/672/655/23019/2101/8431/6597/8896/8202/811/6422/10432/7533/8928/9125/9971/2288/7101/5058/6714/3164/2649/3172/2063/11331/55885/9970/7181/10062/3065/6049/5915/7067/8856/6256/7421/190/4838/8085/10498/51176/6096/5245/9113/5465/1616/10891/10413/7182/6257/9063/7068/10524/4848/10474/2100/81606/81285/3717/2033/9325/8312/10002/65992/23054/6047/11315/23543/1655/55818/2852/23376/11214/6872/26508/2103/79039/23558/9612/79876/10013/51341/387/5458/9575/8031/51366/5916/7376/56937/3670/51389/6095/1022/8554/4824/79447/55325/2274/9604/406/7025/5187/23411/7026/29966/6879/8626/8289/2516/1407/51569/9611/9975/5925/7337/1499/25959/1601/2908/10521/10424/8648/2104/6258/5914/3275/11057/3174/23426/8204/4929/55128/4734/2494/5468/57658/4246/8611/2099/6097/4306/7041/367/652/3169/1408/5241
## GO:0106106 3934/6319/1051/51316/2171/63976/55856/3600/23175/7422/23028/79071/468/6850/7480/51087/7852/2180/2827/26027/1240/3596/2271/3297/26291/51393/729230/153/4898/1666/1649/155/2778/3662/4883/4858/6868/3606/7351/10062/3033/6009/7067/51094/4849/43/7099/93/2303/4851/3565/58488/8809/5608/5020/51548/10891/2887/3516/3717/51043/23228/79602/89/3060/55818/3226/79054/5565/8841/4012/1376/10400/5746/7253/3566/116/1778/7030/64641/55366/9927/7376/79813/57406/10912/23135/1734/8473/406/7090/4237/6588/8929/154/5925/9807/6794/5564/6778/2104/3910/2034/948/50486/7840/1621/324/2628/5021/33/5334/3397/201163/3953/55198/216/7350/3952/1149/5618/8864/11096/56034/3480/857/9658/2697/9370/23090/4857/2167
## GO:0120161 3934/6319/1051/51316/2171/63976/55856/3600/23175/7422/23028/79071/468/6850/7480/51087/7852/2180/2827/26027/1240/3596/2271/3297/26291/51393/729230/153/4898/1666/1649/155/2778/3662/4883/4858/6868/3606/7351/10062/3033/6009/7067/51094/4849/43/7099/93/2303/4851/3565/58488/8809/5608/5020/51548/10891/2887/3516/3717/51043/23228/79602/89/3060/55818/3226/79054/5565/8841/4012/1376/10400/5746/7253/3566/116/1778/7030/64641/55366/9927/7376/79813/57406/10912/23135/1734/8473/406/7090/4237/6588/8929/154/5925/9807/6794/5564/6778/2104/3910/2034/948/50486/7840/1621/324/2628/5021/33/5334/3397/201163/3953/55198/216/7350/3952/1149/5618/8864/11096/56034/3480/857/9658/2697/9370/23090/4857/2167
## GO:0035270 5080/4821/5307/1482/6496/6715/5449/8820/2304/2253/578/706/9095/999/6659/5604/2692/3569/7490/4192/5594/50674/3175/3570/2932/3170/6531/3172/1399/64220/1813/6009/2113/6722/6608/4221/5078/190/654/3651/335/2627/9480/6657/6495/4825/9451/6899/653/3516/5626/7046/4760/207/5894/657/5156/8022/2931/7080/7038/5075/4087/7849/1021/572/5454/116/3642/6658/9575/650/5308/2624/2736/2695/3200/1385/5170/429/3670/2696/8854/6662/1392/406/5991/3280/2516/51092/5595/4763/5087/3232/4088/2735/1028/6299/3643/7474/10272/3213/3202/84159/27122/2308/10370/6469/2691/9247/7481/4487/54361/652/2625
## GO:0050863 3902/3620/29851/1493/6352/7037/2175/3932/80380/3559/6347/639/914/8767/1236/10859/55423/1051/3574/3575/4860/4067/7412/864/27240/3458/959/27242/11151/11314/942/3329/8876/10288/5788/916/30009/6375/100/3600/3659/3549/923/940/939/5880/5588/3965/9308/10808/1445/865/10148/26191/4690/6850/912/3569/83737/1378/5133/8772/8440/2213/54900/10125/23240/8456/3071/3135/8808/100133941/4192/7133/7525/9402/6654/5771/54542/11326/57162/54440/4004/3593/8651/3558/6441/729230/3592/51571/3109/11006/6693/384/836/1326/5058/6714/64127/3662/8379/970/2885/7356/920/23308/27040/101/3111/941/80149/3606/2056/6363/199/10892/8744/5621/7292/8740/11221/9306/3586/10385/11126/972/7535/7409/1209/3707/6647/1948/2534/3553/5062/1604/5781/3718/3146/10457/3565/998/3133/2302/5777/9093/9092/5063/6366/3956/9840/3113/8943/1947/5879/975/1540/7001/3142/11146/2796/177/29102/1739/8915/5290/1845/207/7040/51043/2319/6188/634/11277/50943/59067/383/2267/3115/114548/301/7189/944/961/1178/1803/11148/1949/2064/5074/135/572/3566/8764/56940/4092/3594/30835/387/149041/9750/8995/2736/51561/6708/64844/814/25/9580/5170/3958/8600/3440/2648/3077/5896/5573/22890/8546/56603/57178/6777/3456/3280/29108/9655/7070/6385/56339/1499/1960/8654/5295/5914/4602/604/9231/57045/5590/4179/11005/7048/79679/2934/6469/3485/3952/7494/857/7704/2737/2615/6935/3572/3479/652/2625
## GO:1990845 3934/6319/1051/51316/2171/63976/55856/3600/23175/7422/23028/79071/468/6850/7480/51087/4160/7852/2180/2827/26027/1240/3596/2271/3297/26291/51393/729230/153/4898/1666/1649/155/6344/2778/3662/4883/4858/6868/3606/7351/10062/3033/6009/353500/7067/51094/4849/43/7099/93/2303/4851/3565/58488/8809/5608/5020/59341/51548/6343/10891/2887/3192/3516/3717/51043/23228/79602/89/3060/55818/3226/79054/5565/8841/4012/1376/10400/5746/7253/3566/116/1778/7030/64641/55366/63892/9927/7376/79813/57406/10912/23135/1734/8473/406/7090/4237/6588/8929/154/5925/9807/6794/5564/6778/2104/3910/2034/948/50486/7840/1621/324/2628/5021/33/5334/3397/201163/3953/55198/216/7350/3952/1149/5618/8864/11096/56034/3480/857/9658/2697/9370/23090/4857/2167
## GO:1903037 3902/3620/29851/1493/6352/7037/445/3932/80380/3559/6347/8767/1236/10859/3654/55423/1051/3574/3575/4860/4067/7412/864/3458/959/27242/11151/11314/942/3329/8876/1991/10288/3689/5788/916/3383/30009/6375/100/3600/3659/3549/923/940/939/5588/3965/9308/10808/1445/865/10148/26191/4690/6850/8013/7124/912/3569/83737/5133/8772/8440/2213/54900/10125/23240/3071/3135/8808/100133941/4192/7525/5724/9402/5771/54542/11326/57162/54440/3593/8651/3558/6441/729230/3592/51571/3109/11006/6693/384/836/1326/5058/6714/64127/8379/970/2885/7356/920/84830/23308/101/941/5970/80149/3606/2056/6363/199/10892/2113/5621/7292/8740/11221/9306/3586/10385/11126/972/7535/7409/3707/3676/1948/2534/3553/5062/1604/5781/3718/3146/10457/3565/998/3133/2302/5777/5465/9093/9092/5063/6366/3956/9840/3113/8943/1947/5879/975/1540/7001/3142/11146/2796/177/1739/8915/3037/5290/65125/1845/207/7040/51043/960/2319/6188/634/50943/9314/59067/383/2267/3115/114548/301/7189/961/1803/11148/1949/2064/5074/135/572/3566/8764/56940/4092/3594/30835/387/149041/9750/2736/51561/6708/64844/5170/3958/8600/3440/3077/5896/5573/22890/8546/57178/6777/6370/3456/10725/3280/29108/9655/7070/6385/8631/1960/8654/5295/5914/4602/375056/604/9231/57045/5590/4179/7048/79679/6469/3485/3952/7494/6387/857/7704/2737/2615/3572/3479/652/2625
## GO:0045862 6280/6279/6790/5347/1075/3932/4609/8767/6317/9447/4067/3458/5641/9705/11047/3066/54205/578/3329/9141/2023/7336/239/10213/3735/23198/1944/80758/10541/3965/4210/6406/3336/10440/5702/7124/1509/9978/1378/8772/348/7415/5704/7186/9131/834/356/7133/55741/3297/1950/10221/10018/1612/5366/2264/5371/9532/10134/55212/7498/2932/6300/3428/885/5716/4898/1611/1512/8975/26263/1432/10010/55655/10845/5747/8795/6714/2161/6091/5886/2896/64065/1050/8078/2043/101/5700/80149/54982/400410/581/6613/23640/26577/8837/23151/2185/7023/23787/4241/29763/27185/4627/5706/7917/27141/2534/55908/3553/56616/55743/2902/55294/5134/4838/4193/3146/5978/841/5245/5045/54998/2904/4287/22954/9966/2332/51079/355/5701/23786/57154/9733/8754/64110/177/9451/8915/4217/9798/859/8301/9994/7341/207/3717/668/5705/22933/6188/149628/55367/4780/8312/65992/4155/28951/114881/114548/1285/2931/9817/9709/2852/27429/4323/1263/351/1654/8717/1453/6872/2903/11236/22900/317/6774/7141/5023/572/29978/112399/5663/2822/55070/93974/25898/7142/718/9026/5728/1855/3491/51136/4092/55081/9475/79594/28952/387/57333/84168/3300/3818/6900/26355/10318/2335/842/6449/27018/1452/5601/863/10392/26471/8554/10273/8737/1454/10017/4824/23291/8473/9992/10395/9695/65018/6407/9647/23411/2729/9104/51024/29108/9655/6622/5071/5595/3092/10550/22861/729/8945/1601/408/4088/825/51065/8743/1942/2149/1490/54209/4804/9810/26999/444/10016/4803/29997/2934/5468/5118/2192/90865/10769/5988/857/3249/1191/10418/2152/150/4137
## GO:0006352 983/891/8061/6884/1482/2957/5435/1871/1019/10849/7004/6873/1024/5440/865/9328/5467/7480/8013/5433/29982/5469/7019/64216/112950/6882/6875/2101/9440/6927/9862/8431/2960/6597/9442/5437/2958/4878/9971/7101/9533/3164/2649/9967/5439/3172/1026/2063/64425/9970/5431/221830/2968/7181/8148/6877/10062/581/55832/6722/5436/5915/2961/8467/7067/10155/9282/9329/9477/8856/892/6256/6883/7421/190/2959/6910/3146/9014/22976/4851/5442/29959/6096/8493/5438/5465/5432/51586/9330/10891/10413/4150/2969/55011/6928/7182/6257/7068/4854/6598/2963/3516/2100/51003/22938/7005/2071/10002/6881/23054/11176/7343/5434/9968/55534/79101/6878/6872/9774/1870/55729/2103/9013/51773/3725/4331/5728/4853/10302/54700/9439/2965/23064/25937/1385/7291/9015/5916/7376/9443/56998/9794/6908/4204/6880/8850/6095/1022/404672/2972/6662/5430/9969/4855/1025/112869/7025/4286/902/29079/10001/2967/6879/7003/81857/2516/5441/9975/2068/5595/10025/1499/7157/2908/23493/1387/860/2962/84172/2104/6258/5914/51616/3174/7596/1490/595/26036/4929/284119/2494/5468/27136/6925/2099/6097/4306/367/5241
## GO:0010810 4321/2633/55612/1236/25975/1029/23603/10562/916/9806/5880/4771/8751/7422/2824/246/10675/5795/79834/6376/4192/5054/2651/3175/1785/2932/811/6422/708/5747/6714/51144/57091/402/3987/1399/5340/2243/11170/8573/10109/5328/1758/2266/5291/8324/2185/7448/4221/4241/27185/4617/80005/2041/4851/998/8861/335/4287/9480/6366/3956/3273/5879/7471/55604/3655/1435/26585/3037/2316/1845/3717/3678/5881/5581/2244/683/50488/8826/6281/6239/10630/1946/23332/81/4323/1613/25890/1021/6093/6251/56940/8874/395/6904/5728/3491/285/55966/9475/2039/387/3728/1398/59339/9448/1605/25/2294/10519/2335/11078/9270/29984/5800/55435/57669/10395/6370/9647/4070/7057/54828/23499/3611/7070/23189/5921/6385/3204/4763/2013/8631/9748/4814/4088/5295/8322/7010/4811/94/4739/6548/3791/22998/604/182/7402/596/5590/79625/948/4887/3675/10085/7248/1793/23122/8829/2042/1277/1295/6695/1012/2192/4653/5764/10391/4035/54361/10631/347/9723/4680/1307/10551
## GO:0050890 8061/65009/2237/2019/8326/29767/3973/1051/2515/114/5641/1812/10288/22943/6285/8997/1020/7143/2558/6484/1312/9775/7124/7097/2048/5743/348/3091/26047/3776/1956/1959/28983/23657/11202/4192/4248/874/728/5594/55636/5923/8811/5582/6446/885/123803/1814/1137/9757/5575/4914/10097/836/3122/1141/8484/9980/2760/84061/134/64220/55236/3949/3710/11170/266977/4900/1813/7416/109/6722/7419/4761/7067/5621/3274/4593/57468/2534/8704/2902/50944/41/793/54413/53358/2740/1816/2475/7436/5020/2904/23316/6865/5153/3845/10882/25978/6616/3198/6869/177/3630/23373/27023/23191/23394/378/8301/22941/2925/2033/10716/23542/3678/2334/577/1979/3156/54207/3688/1742/2764/9610/267/57030/8867/4923/3269/8086/6529/23385/351/55180/2903/57338/7991/183/5663/23237/4835/1497/5048/4891/27020/3725/5728/90410/9993/3064/2693/6900/2695/4987/3815/814/8398/57144/5803/1385/2258/54112/4986/10347/1201/4204/2648/5896/8554/9378/1620/5538/10636/5649/3356/10396/60626/1392/6543/1268/9379/6509/4762/23236/8516/7054/2890/5532/25769/25836/4130/5071/22986/7881/107/6532/4763/6326/4776/23152/23259/10522/2915/3643/5590/22829/1621/3675/2628/5021/80823/4885/9162/4212/590/4208/55084/22849/5176/2353/4311/9867/1393/11346/5577/585/7832/6310/477/9369/10769/5764/4915/10752/6863/7349/7122/57502/4137/1524
## GO:0001763 53335/6663/133/639/4609/10481/6943/2297/5499/2253/3549/2138/8914/7422/6789/6768/7124/5629/5469/7490/9021/4192/655/9500/10736/1950/6356/1305/7052/79977/5371/1512/6422/3975/5058/2637/6714/3237/1522/3239/2885/11331/10371/5361/7855/1813/64783/6722/6608/80004/3586/5727/7475/25932/6256/7421/2303/7472/1282/2119/2668/10653/63943/6495/3845/51548/9175/10413/6928/7471/1739/1435/26585/284217/859/1969/10765/7040/846/4233/10116/186/23213/6692/7080/1906/3911/2658/4323/4089/7849/57142/5154/183/10672/10818/3217/3207/650/2736/55366/374/1605/25/2294/473/56998/2260/6662/54922/4824/2022/6474/8521/4855/5076/23129/54903/2719/4070/29072/2263/5310/9620/90/8626/3611/5228/5087/1499/8945/4776/80000/2252/3371/3082/10253/4435/6299/7474/9231/596/3202/7482/55727/5311/2246/10252/9353/8829/7048/8642/2247/6591/6469/4488/79633/2099/10512/2045/1909/54361/2737/1746/367/6926/9723/652/3169/5241
## GO:0000086 2305/9833/9133/22974/4751/890/983/9212/51514/6790/891/9928/3161/993/5347/10733/54801/994/29980/1063/5688/5709/26271/641/5698/5693/8317/7277/5713/5721/5691/9088/995/5685/1019/79866/5690/5684/5885/5686/5695/11200/203068/10213/6873/7283/23198/8883/4683/10383/63967/7164/5699/22822/5714/5702/7480/1030/9978/5708/5692/5704/672/55835/5683/22919/9793/5694/55722/8454/5889/5718/5682/1785/8091/5716/79959/5707/60561/55559/4957/51400/5696/1017/1026/10763/9702/5719/5700/3320/5500/5717/27183/60672/10197/7465/10133/23354/5706/5710/55125/5566/8493/1069/9113/5689/8766/5720/10121/10657/5701/9491/8636/5518/23476/5711/5715/9662/8655/11258/11190/11116/9861/5705/10382/10083/22994/22897/80174/9525/23332/79621/1263/7531/10776/351/5116/1453/51451/2103/5520/6604/5048/4331/79441/1778/80321/51347/10540/22995/55755/571/4204/11064/55031/22981/1022/4659/4660/1454/23291/2029/472/79176/5569/5890/1112/9344/7846/23236/8481/902/5218/1639/8929/5087/8945/80254/95681/9738/6500/55142/4303/80184/9024/79831/7840/80169/595/1781/10142/9814/54820/80279/23194/29997/25949/5243/5108/3306/5577/2273/5988/57551/51149
## GO:0061138 6663/133/4609/10481/6943/2297/5499/2253/3549/2138/8914/7422/6789/6768/7124/5629/5469/7490/9021/4192/655/9500/10736/1950/6356/7052/79977/5371/1512/6422/3975/5058/2637/6714/3237/1522/3239/2885/11331/10371/5361/7855/64783/6722/6608/80004/3586/5727/7475/25932/6256/7421/2303/7472/1282/2119/2668/10653/63943/6495/3845/51548/10413/6928/7471/1739/1435/26585/284217/859/1969/10765/7040/846/4233/10116/186/23213/6692/7080/1906/3911/2658/4323/4089/7849/5154/183/10672/10818/3217/3207/650/2736/55366/374/1605/25/2294/56998/2260/6662/54922/4824/2022/8521/4855/5076/23129/54903/2719/4070/2263/5310/9620/90/8626/3611/5228/5087/1499/8945/4776/80000/2252/3371/3082/10253/4435/6299/7474/9231/596/3202/7482/55727/5311/2246/10252/9353/8829/7048/8642/2247/6591/6469/4488/79633/2099/10512/1909/54361/2737/367/6926/9723/652/3169/5241
## GO:0019080 6352/6351/9688/5435/9631/5440/6396/23165/8662/55706/23076/5702/23636/51497/5433/28985/4927/79902/10762/6882/8480/11097/9830/8091/6597/5437/9972/904/6227/81929/6132/57122/6142/79023/6202/6223/5439/9818/6741/8664/5431/22879/7311/23511/3065/5436/5725/1660/7023/9349/8562/5987/6181/11074/6156/2959/23279/51176/6217/5978/11224/5045/6206/6194/7175/5438/5432/22954/51193/6235/6230/6175/6158/6201/6233/23225/6187/6170/6827/8021/53371/6143/6134/6598/2963/6176/6829/9150/22938/8661/2033/6188/8665/6192/4928/64710/51386/6895/6193/6129/5434/6147/23435/8086/6222/6737/6208/6210/6232/6204/25920/1939/7392/6229/9883/6228/6167/6155/6128/6152/6171/6161/6133/6160/6141/51773/3725/7538/4736/6191/6234/6169/6146/6165/6203/5903/29969/6122/6136/6209/348995/25873/6164/55746/6231/6205/6135/6168/51763/8666/5094/11043/25833/55223/5430/6157/1025/6667/6138/905/9045/1105/6159/5441/10206/2962/10410/81603/3249
## GO:0007548 259266/81930/4521/1515/2491/2175/10549/3973/6770/6715/1051/6943/9289/8894/8372/2296/3148/4436/2253/84733/578/867/3383/83990/5806/1761/409/2189/4678/2254/8751/7422/8433/7490/6240/3157/675/1588/10018/55636/835/7022/9468/117/2626/3623/3417/6422/3975/9757/9125/4914/5568/836/56159/2288/57122/6714/11144/3239/3309/3172/2069/1399/64220/5927/10184/10371/8531/581/6736/6665/4142/23626/2661/10409/269/2492/6647/7425/5798/5781/7301/190/654/10046/1271/5245/7476/2627/9510/7258/3622/10461/9985/2796/4201/653/3955/2316/9210/7314/7046/3293/8890/668/8879/22836/6932/657/8999/5156/1586/7080/8892/2623/4323/4089/91/3972/25976/57599/3020/116/92/51665/8893/6382/3207/3206/59338/55366/3815/4327/642636/51742/8031/5972/599/4846/8195/7098/7110/152006/26471/5872/23598/7812/4090/9667/6662/4824/56729/1495/2309/192670/472/6777/598/4762/23411/5310/546/8626/25836/2516/3624/10388/2067/6716/7337/5087/1499/2295/1718/80000/408/10265/8322/5926/268/8648/7536/5914/4920/6299/3643/54997/7474/558/8743/596/8644/6586/10272/8204/595/23639/84159/2488/7482/7042/9353/22862/283/10370/5950/2620/6469/57728/3952/3295/3625/4254/2099/5159/1471/174/658/23414/54361/2697/367/6926/1602/4036/2625/5241
## GO:0050867 29851/952/1493/6352/7037/1075/3932/80380/3559/6347/712/914/8767/5341/1236/10859/55423/136/3574/3575/4860/4067/7412/864/3458/959/11151/4436/942/26228/79915/1880/3329/8876/10288/7468/3689/5788/916/30009/2207/6375/100/3600/3549/923/940/3735/3929/939/5588/3965/9308/10808/1445/865/10148/4282/4690/6850/64109/8013/912/3569/5133/8772/51293/8440/10125/3071/3135/164/8808/100133941/3596/4192/7293/7305/7525/958/5724/9402/57162/3134/54440/3593/8651/3558/9760/729230/3592/51571/10333/3109/11006/4878/1326/1141/5058/6714/64127/970/2885/920/1050/3635/1026/695/23308/6845/101/55183/941/3606/2056/6363/199/10666/10892/6665/7292/8740/55795/11221/6195/3586/10385/11126/972/4352/7535/7409/3707/7099/1948/2534/3553/5062/1604/5781/3146/22976/3565/998/3133/5777/9093/9092/5063/6366/3956/63925/9840/3113/8943/1947/8723/5879/975/1540/3142/3684/6869/177/8673/3916/353514/8915/23529/5290/207/3717/7040/51043/2319/6188/50943/59067/3115/114548/301/7189/961/8741/1803/11148/10630/1949/4323/351/148022/572/2323/3566/8764/3594/30835/2039/54537/79155/387/2624/2736/51561/6708/5170/8600/4292/11027/5896/9173/6810/22890/8546/5819/57178/6777/2268/3280/4317/29108/7057/9655/7158/2150/7070/56848/9846/1960/825/8660/5295/6778/3567/5914/4602/604/7474/558/596/5590/4179/1490/54209/6403/4208/7048/57126/79679/6469/6812/90865/3485/3952/7494/2621/5159/857/7704/2737/6863/3572/3479/10451/2625
## GO:0014074 366/8061/5026/445/6772/6770/6715/4830/1789/5031/3066/779/3753/15/5024/55151/23028/7480/5027/50506/5743/6262/10518/7226/7490/10021/1080/5724/3157/6261/610/2230/328/24145/790/7184/6531/3309/65985/5313/5970/682/1723/5294/677/2185/9472/189/6647/7425/5078/5798/3553/218/343/10498/5020/7299/65010/5207/1791/2889/7222/5028/329/5030/10891/54434/6528/22953/5908/5906/159/6263/6529/351/1609/6872/9127/135/5023/7430/5728/6382/2039/374/6781/4327/5972/51763/1261/53905/3488/5179/5322/4724/5187/2354/3709/6546/9693/5562/3784/5139/6532/1373/7010/845/4435/1843/5025/196/10142/5311/5029/54795/2353/1277/5468/10411/50507/1393/358/7056/2946/6720/5138/6678/2819/1811/1036/9370/5105
## GO:0048872 9133/2146/9636/3559/6772/1236/1054/3574/54892/3575/4067/608/27240/3148/11151/3162/9258/1880/578/2539/2207/100/5052/7128/3965/7422/3276/9991/4282/5027/3569/613/8772/4151/63978/3091/1000/23210/5142/5469/9770/8456/3071/23657/2271/3059/51621/6654/5771/54542/10661/10018/54440/5366/4004/10603/3558/729230/3623/8444/60682/1432/836/1233/272/6688/10320/3398/6372/6223/3635/27040/6868/3579/2056/581/94081/6521/2176/2113/6722/9898/5291/6608/677/7067/8740/80739/5293/972/4352/3658/3707/6647/3313/212/5781/3718/3146/28996/8861/6194/7564/9093/1777/3845/3050/1540/7001/6005/10461/567/1435/8915/207/3717/103/7040/29766/5881/50943/2038/3988/778/23543/10019/301/6886/2016/54475/669/5585/2623/6208/10107/23385/10312/405/8314/10296/91/6229/57599/6774/1021/2323/93974/5316/92/4891/54700/51341/2039/54977/7538/149041/2624/6708/55366/3815/5741/171023/10000/25/6498/51542/2116/4846/55619/51301/22985/5896/9935/5423/4090/6662/6670/2309/6777/4779/5532/3624/5925/2068/118/26058/5926/10365/604/2322/558/596/2034/2149/3202/3216/4208/221395/1831/83700/54681/4254/4856/7049/652/25893/2625
## GO:1901617 29968/3613/1001/1717/4597/2643/5341/6319/6713/3973/29881/6770/4948/1719/3948/3458/57103/51302/3422/5449/3930/9420/5031/1594/8877/2224/10449/10682/239/2539/1644/50814/5447/3638/8566/1652/39/79071/246/2805/7124/5629/348/4644/5901/570/51700/23657/1080/10755/5724/3157/1588/2264/117/55737/5360/8647/51744/54928/2672/9971/6721/1593/5805/1109/6307/6531/231/3837/120227/10005/2861/4800/5409/4142/2185/2194/6718/3707/6647/4598/3553/7421/654/4802/9885/5978/1585/1181/1610/7299/6615/434/1638/2222/5028/3706/47/4047/23600/653/26031/3293/10558/1727/3612/10613/4157/5053/3156/27120/114881/80271/11315/186/89/7555/6490/9517/4923/3269/2852/8720/4790/1609/51477/1497/55163/5007/3642/1584/650/51360/5092/5741/8912/7306/9839/9464/9619/22937/283871/6342/4801/6697/338/31/10654/1576/6667/51422/23411/10858/51141/7054/10998/9693/5562/7108/6622/114883/26060/56848/6716/11160/9453/9807/1718/7157/51151/5563/51478/51447/5745/427/4435/7474/3067/8644/51706/1621/9023/11001/4929/114876/2246/27122/8604/7042/6309/1581/2247/6591/7220/3952/3295/8864/6720/32/54361/8309/23541/7166/5105/3158/2625
## GO:0009108 5163/23475/5214/4199/55526/2643/6319/23590/9688/3101/26330/1719/54541/4860/8564/6576/2821/57103/8942/3418/7167/27235/2584/11332/55034/2597/5230/9631/2023/5223/8566/57017/5208/80308/4522/6396/1737/5210/23165/5315/9200/55706/79071/5160/51805/23636/5027/5165/2180/3692/5743/3091/3099/4927/79902/10762/8480/55753/3607/25874/11097/2182/5161/3939/2618/8050/5232/64834/55328/9972/9390/81929/2027/5211/2646/5236/57122/10135/51144/5805/5209/79023/9818/23305/201562/5313/229/4143/27249/55066/6521/23511/23205/83440/1738/2194/65220/226/51085/230/471/23279/2645/27304/7175/5465/4967/5213/5207/51548/11319/23057/23225/60490/47/10891/80025/3630/29914/8021/55312/53371/81616/9054/5571/54704/11277/4928/2026/5740/3098/4144/8034/89/2356/669/2639/4338/8086/27010/56997/405/55229/9883/6774/2103/57107/55163/51341/51004/5903/51660/23498/5092/348995/9524/54956/79717/51703/54981/55746/863/4656/27231/26471/6697/5538/31/27430/38/3356/79934/8473/23417/55739/79066/51422/80347/5224/5562/79646/6622/9611/9759/10229/4837/5162/7157/957/55191/5563/5164/79966/3643/2181/2954/6785/7923/11019/60481/5166/51117/84869/4337/2203/2819/32/26137/54898/3479
## GO:0009896 51514/6790/5347/1075/8767/26330/336/3458/3162/79888/7336/664/11040/5208/7128/215/4210/5210/5702/7124/5027/9978/3569/83737/348/11124/3091/3099/7415/5704/580/4478/7133/55741/26986/3297/1950/23019/1642/10221/79156/10018/1612/1374/9532/10134/26291/92140/55212/55737/2932/5716/4898/8975/26263/5747/5886/140462/5209/51441/725/1050/6832/134/8078/25793/208/101/25807/3949/5700/9554/3320/80149/400410/581/6613/23640/29883/5291/677/10133/2773/3416/2185/399664/27329/29763/27185/5770/337/5305/5706/8517/5962/51100/26088/51322/7917/51085/3553/55743/55294/27352/2168/11267/4193/9567/79837/6885/3565/4946/23367/4905/5045/5465/4287/10236/22954/2332/51079/5207/5701/51160/7879/57154/6343/975/5976/8754/64110/23112/56829/23163/3630/722/2021/55626/51343/10524/10193/5587/10346/6811/3184/859/51099/754/6829/7341/10533/207/10558/5705/22933/149628/5581/4780/8312/65992/23530/8570/28951/114881/11315/89/2931/7957/9517/9817/9709/6737/1263/405/29110/253943/5049/1453/6872/11236/148022/4947/25976/2103/6093/572/7430/29978/5663/2822/8396/55070/13/93974/10645/25898/23192/5728/1855/8450/51136/9698/4092/9475/79594/10013/28952/3064/7538/149041/9337/3300/7432/9927/1797/55823/7291/6449/5899/1452/5601/9531/22930/863/10392/26471/7405/8554/10273/23274/11043/1454/54832/6662/8408/7249/3356/10241/64321/2309/472/9992/9695/65018/79066/5580/2719/23411/9528/2729/7942/9104/9655/5562/57104/6622/5071/154/11140/10140/5595/56339/6642/29116/10206/1601/26058/957/5261/8660/5563/55187/6794/665/3791/1027/3643/7474/225/54209/324/678/8678/9810/7248/51686/26234/4734/22849/29997/79589/2308/201163/51339/53373/79899/81603/90865/7832/79068/6653/23677/10769/5988/857/79443/2819/26353/4035/1191/2697/26137/3667/1634/150/3479/57535/4036
## GO:0072331 2305/79733/22974/983/9212/1111/6790/891/51512/9156/6884/5984/5111/10397/641/1869/1763/54541/55003/23246/5982/2810/3066/79915/995/83990/11200/7027/4839/6873/80010/5983/4683/9100/3276/5457/1020/6659/23028/23212/4282/7159/6749/580/6119/672/1820/1460/675/6882/23019/6875/5366/835/5371/5810/5985/3428/5716/80237/8805/8444/1432/2765/9125/29117/5931/1017/7029/387893/64065/8445/8550/8851/1026/5928/26155/9219/9521/6117/4361/8148/64782/6877/581/1459/29883/11198/3065/26038/4849/7023/11073/972/9349/7917/6883/7156/10419/4193/56950/10498/3090/6118/7862/29965/5883/22976/28996/8493/1874/1108/6615/6201/10514/3622/10269/51499/1859/602/26287/54971/3364/60401/10524/4848/754/7314/22938/207/2033/5571/960/3094/149628/55367/80196/6881/5600/51741/10919/1655/545/1263/6672/6878/8738/6872/5565/1870/4850/51147/53615/57472/204851/54700/7994/5458/9337/5934/624/27330/64769/7161/64844/10210/1647/22925/7291/7486/5325/57060/27063/5300/23368/23378/6908/6135/6880/79813/26013/10538/26471/2309/55702/472/51230/10848/51422/23411/5932/546/29108/6879/5562/8626/23612/5071/10111/200734/5884/1107/7157/5563/6794/51065/5564/28984/5164/1027/51616/596/2272/4194/80279/29997/6591/10614/7832/9891/10769/4487/4646/4582
## GO:0050714 10874/4321/5004/952/55612/51311/914/8767/9447/114/3495/2821/64135/2867/3783/2597/7096/23586/10059/2219/3735/5208/3965/10626/5047/6659/929/26191/5467/945/4282/6850/64109/7124/5027/3569/56253/7097/3091/1956/7273/10125/3556/3596/834/4192/7293/1080/25874/1147/8431/3558/55737/24145/51744/1432/3552/382/55655/9971/6714/64127/5481/8447/5019/84818/10802/101/65985/5008/2243/7855/51768/6363/2266/199/5478/1813/5734/64083/3799/57824/7292/1660/65220/3586/11126/6346/43/192683/7099/3553/654/7447/3651/3146/3133/2645/50855/59341/2850/5879/8754/11146/4825/5715/177/3630/3605/79792/353514/81285/3717/7040/846/3661/5581/2244/23086/4155/5600/3098/114548/186/965/55801/23435/640/2852/1436/23765/26253/22900/135/23400/572/7430/27230/2822/5319/3566/8736/27159/55763/23607/2695/8692/83786/8398/25/23705/7291/27063/3670/11027/55540/2696/6711/9173/6810/23601/6934/1392/55691/2268/4317/29108/5532/2150/5595/22861/7424/57506/408/10497/8660/11132/3567/2752/28984/322/7474/5590/947/2746/2149/54209/4628/9501/7042/6717/9854/79679/283/54795/23410/5950/727/55204/4023/90865/7494/8938/4035/10631/55638/247/2697/9590/55107/7043/3357/79971/3479/114899/18/25924/2625
## GO:0032868 1978/8836/133/6772/2888/51237/6770/6715/4067/28999/5471/2950/51083/50617/353/15/1019/2058/3383/6513/3291/5588/533/142/4690/2805/2692/4160/4141/7097/3692/4644/9296/525/1959/2650/5591/6654/5771/2101/9734/8651/10603/9114/790/4878/57761/9971/6121/5058/6714/5579/2885/30837/6599/57707/208/5009/5970/3636/7351/528/23545/3033/896/8837/677/3416/51094/339/5584/3586/5770/8615/51606/3484/7425/2806/5798/3553/5781/51052/2303/8048/5140/529/4218/6429/2475/523/2645/526/5465/59341/5207/2660/6198/81565/2170/527/2887/3630/23191/7352/5296/5290/207/51043/634/155066/3645/537/1979/23433/197/64710/1176/51382/2931/6272/2844/9550/10312/4149/10458/140710/64506/4976/183/2822/5319/5728/55022/5458/8992/2693/847/9882/29988/858/5170/4986/2771/2549/8850/22937/23235/51763/3030/5872/23038/6814/56729/7249/6464/6517/6431/8473/6667/55023/535/5580/5786/534/23411/51141/4641/2729/5286/10014/5562/55667/23189/26060/1407/5791/8660/490/6430/11132/5295/5164/4303/6548/4435/1958/3643/8743/5590/181/324/7248/6844/114882/5919/9847/2308/2241/10580/5468/5166/55198/11031/4023/9365/3952/3625/6720/7494/3480/5167/5350/3667/9370/5105
## GO:0019216 5163/1717/4199/133/4597/6319/6713/1236/6770/4067/336/3458/341/7296/27242/8525/3422/51083/1594/79888/2171/30968/8877/2224/1019/706/5447/3638/51599/215/930/79071/8013/7124/5165/345/2180/3692/5743/5629/29982/348/1133/551/5901/5469/9021/672/211/80183/887/5933/3157/53345/2264/8898/8651/1374/26291/3417/29095/1814/2672/2784/57761/9971/5747/6714/6721/64127/3398/30837/3837/3172/2358/134/208/3949/949/10577/96764/55066/6363/10062/8776/23533/4800/7410/5294/7067/2321/6822/51094/339/2185/2194/116986/9306/27329/337/6647/552/51129/6256/4598/51085/55908/3553/8439/7421/57223/55294/2168/654/10498/5140/9711/4802/58526/3358/54576/2475/5978/1181/335/5155/6610/5465/6615/9555/6366/51/64919/9110/6343/2222/2170/975/10269/10891/80025/4047/3630/26230/8897/55626/653/476/5587/51099/29103/19/207/60343/2147/7040/6907/11010/634/8721/54704/7132/10613/23399/11277/5581/9314/3156/27120/23054/6901/5156/79602/2852/8720/4790/29062/1609/5565/5525/5154/8841/1376/183/123/1081/2822/13/9612/6604/718/23179/3491/824/9926/2693/5934/79718/650/51360/2695/3815/8398/34/1385/30849/7291/7376/27063/9619/1579/6095/22937/4862/23038/10273/57406/4801/338/23309/31/10654/3356/1154/2274/23417/6777/6667/1268/55512/5580/2268/51422/23411/51141/26119/23682/9104/64784/4779/9655/5562/57104/7108/6622/10499/2516/2874/56848/9611/9975/11160/5925/113791/9453/23409/8660/5563/5295/7010/1387/37/8648/80205/5164/7536/12/1543/427/1958/2322/2181/3490/1917/225/8644/948/50486/2261/33/2488/10464/2246/22863/1389/27122/2954/221395/66036/5919/6309/51280/1581/2247/10580/6591/64788/60481/5468/5166/8835/55198/3952/1149/585/5244/8611/6720/6097/5159/857/32/54361/8800/23541/347/185/3357/26137/3667/150/2053/10451/9370/3158
## GO:0043254 4312/55355/10563/81620/9928/8061/6712/1978/7453/1482/5341/29767/3055/1236/9447/8543/3925/3458/7111/11151/56926/119/637/274/57180/3383/22943/2072/3638/10059/84722/6624/3936/4210/7422/142/8115/4690/246/10095/7480/7124/9978/10096/1410/29091/7454/348/11124/8290/7415/4733/8440/5216/6119/3071/84079/4478/1981/8739/22919/3059/5610/23019/6356/1642/3054/10018/6927/5366/11273/9557/1496/7417/55737/2932/885/9780/10333/5830/382/10097/2288/9908/5058/8936/6714/10092/2885/402/8851/10456/5217/822/7408/57175/10109/4133/6117/3320/2968/581/55832/1366/10094/6710/5734/6722/54942/7067/3416/2185/55607/79998/9873/10093/5962/7099/51100/5987/8976/5781/2959/157922/10178/4091/3146/6118/22976/1015/10146/998/2475/11344/9530/9113/5526/8451/1440/5063/6366/7429/23514/3273/5879/6804/329/2017/9463/3630/10787/1859/55011/6928/51657/23191/55604/9181/1739/4848/55243/23379/859/29103/19/7341/79969/7040/2033/29766/22933/2071/10382/6188/4233/5581/5894/10565/6047/11315/7114/80772/26146/7984/6369/6886/3512/1437/23332/545/51199/7013/1654/6872/9774/3020/55729/51451/5494/58497/10677/57472/55719/9026/3725/6904/8450/54700/10013/2039/3642/387/4868/8780/5195/6708/2965/23064/25/6249/11078/1385/23271/10152/55755/2073/7291/5899/56937/24144/5601/8195/56998/4204/2059/114088/2670/6711/5864/10273/55435/404672/10427/54922/8408/472/65018/5580/2242/5756/4286/4641/1639/51332/29108/2967/10435/6879/5562/6622/81857/4985/23189/5921/2067/3375/5925/2068/118/1643/1499/79738/7157/4131/8631/51112/23493/10497/5563/3567/26054/1027/55364/29098/5590/51185/948/3931/4314/26036/10142/23176/11076/6403/9924/11075/29997/6709/9353/7507/753/2934/57731/9855/51339/2241/25999/27136/89795/54551/6812/4926/24139/57763/585/638/6653/85477/2099/23116/1191/213/10788/50853/80206/51466/25802/2006/27124/4137
## GO:0019884 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/6890/56992/3126/3112/10437/5688/5709/5698/5693/1535/1520/5713/4688/5641/5721/5691/5685/5690/5684/5686/5695/2210/1514/10213/23198/4689/6891/6396/5699/5714/5702/1509/5708/1174/5692/3119/5704/2213/1536/3135/164/5683/1175/50489/5694/3134/1147/5718/5682/1785/1510/5716/3109/811/2923/162/3108/5707/3797/1211/3122/3835/3106/5696/3796/3107/10802/3111/1173/5719/5700/9554/829/3105/5717/50856/10197/84516/1780/972/5706/8517/5710/6892/3133/5689/5720/832/10121/3113/8943/6456/5701/7879/9491/1213/5711/5715/8655/8673/51128/3798/567/11258/9861/5705/821/3115/9871/22920/7189/1783/8905/10120/161/830/4012/51143/22872/1778/3120/10540/10053/55860/163/64837/9632/11127/10671/3831/10427/8546/1639/9341/10484/9371/2209/3685/51164/948/1781/114876/8722/8773/3693/3551/3117
## GO:1901293 6241/5163/23475/1503/7083/5214/4199/7378/55526/7298/8833/6319/9688/3101/26330/3948/54541/4830/136/4860/8564/6576/2821/57103/2617/1841/8942/5471/3418/7167/2584/30968/353/11332/3208/2597/5230/9631/10606/2023/5223/1633/100/3735/5208/80308/4522/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/5743/3091/9551/506/3099/10165/7415/7372/4927/79902/6240/509/10762/4880/5594/8480/55753/3607/25874/11097/2182/5161/3939/5634/2618/56895/8050/5232/113/64834/55328/790/9972/9390/81929/221823/4878/9060/2027/9519/516/5211/2646/1716/5236/57122/56474/10135/272/51144/5209/79023/54963/9818/23305/55326/201562/5313/522/229/10476/51727/55066/514/6521/1723/9605/109/23511/23205/83440/1738/2194/65220/3614/226/132/2079/51085/515/230/471/23279/79849/5631/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23057/23225/60490/47/10891/80025/10554/3630/55811/8021/55312/53371/1854/81616/6470/7040/5571/54704/5957/11277/4928/2026/5740/3098/6901/159/7114/10201/89/669/521/2639/539/8086/56894/405/2979/513/55229/9883/203/6774/2103/1836/1040/2978/27109/10555/55022/51341/5903/51660/23498/348995/9524/2981/54956/79717/51703/8760/11284/4846/54981/55746/112/2983/863/4656/27231/26471/5538/4879/441024/31/38/3356/8473/517/23417/55739/65018/64077/2982/51422/2977/80347/5224/115/5562/79646/6622/10111/56848/9611/107/29922/5198/9759/270/4837/5162/7157/957/55191/5563/108/5164/4882/79966/7084/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0006066 3613/1717/4597/23007/2643/5341/6319/6713/3973/29881/6770/1719/3458/51302/341/8435/5336/3422/5449/3930/9420/5031/1594/27235/2584/57016/8877/2224/10449/8608/6783/10682/2539/50814/5447/3638/6646/219/50700/39/5467/79071/51805/8813/2805/7124/54363/221/348/5901/131/27284/1080/5724/1119/4504/3157/2230/8811/8898/117/8431/5444/3631/2820/1056/51744/79644/54928/2672/2784/9971/51196/6121/6721/1593/5805/1109/6307/8291/231/3837/1050/120227/3635/8542/10327/10948/2710/3949/949/10577/3636/54982/4800/1798/1071/4142/6822/2055/2185/2194/5335/23780/27329/337/6718/3707/6647/6256/4598/3553/7421/64768/654/6569/3565/4802/8694/5978/7436/1585/5331/1181/1545/128/335/9784/1645/27163/5332/1646/9108/10170/130/2222/5028/3706/47/1583/4047/653/3705/80168/51109/4952/19/53630/10558/1727/3612/10613/3156/80271/11315/3633/7555/8578/8867/9249/9517/4923/81537/3269/2852/8720/4790/351/6820/1609/51477/5330/4864/9227/9562/3069/5728/3628/1584/847/650/51360/56623/8574/5092/5741/8912/124/6652/9619/4204/9651/22937/11163/51763/8854/283871/4801/2260/6697/319/338/217/3990/220/31/10654/1576/7276/6667/8029/23236/51573/10858/51141/5333/26119/6609/222/4779/55825/5562/7108/6622/56848/11160/9453/9807/1718/6799/5563/55190/37/224/51478/2712/23262/51447/5745/54884/427/3632/8644/55911/3931/33/114876/2246/27122/2232/6309/6817/1581/3953/5950/2247/64788/216/26509/3952/126/6653/84869/51474/6720/3991/2819/9677/8821/32/54361/8228/23541/2053/3479/27124/125/5105/3158
## GO:0031098 2305/55872/55765/8792/4609/8767/5871/1236/6317/3654/136/4067/11184/959/440193/2950/9258/8877/22943/3735/5052/1852/9618/5603/939/3965/7422/3276/7164/26191/6504/6850/5604/7124/83737/1410/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/5605/5610/10221/5594/2047/8454/5911/7334/1147/140885/7498/10044/10333/5345/5606/6422/259/1432/1326/5058/64127/23239/6788/2081/1857/231/1399/2043/10371/2873/7855/80149/9261/6363/27035/7311/5734/4281/677/7477/8324/2185/11221/4221/5770/5602/4294/8517/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/5599/59341/6233/355/54910/7316/2889/10454/10114/9175/1540/1616/10269/171392/177/2074/4616/1739/60401/4217/859/7314/10746/1845/207/846/6188/23542/8312/3156/11143/5609/5600/50488/23162/7984/7189/10494/55801/2898/5585/1906/9821/4790/64853/351/8841/221472/183/7430/51495/4293/5048/5470/10045/79594/51347/11183/7538/79155/387/4868/650/29969/9448/23118/51776/2122/1647/9839/2324/51135/8600/9464/4215/4986/5601/54986/7098/10392/23043/10595/10912/8737/10771/5859/23291/9064/2218/65018/9344/23236/5187/1856/9459/8491/8325/4317/29108/2150/5071/2874/9611/23328/5595/6416/10550/8945/3476/6500/8322/3082/4920/7474/4216/1843/1490/11211/7042/2308/4077/51339/9867/3952/3480/3551/7786/57551
## GO:2000116 6280/6279/27074/4102/4318/3932/2537/4609/8767/330/9447/5698/5641/9705/2810/54205/578/3329/9141/8530/239/5447/409/80758/10541/939/3965/4210/7422/3336/7124/1509/5329/1410/8772/5743/551/7415/7186/25816/9131/834/356/3297/4504/10049/10018/1612/5366/5371/10134/7498/3428/885/1032/1611/1512/23204/55655/8795/6714/5272/6091/6197/64065/2876/400410/581/8837/23151/8740/55795/7023/23787/6195/64780/27141/2534/56616/5062/1447/2902/5134/2168/4838/4193/3146/51176/5978/841/2904/9966/51079/6657/10542/7429/355/23786/79886/329/51499/55011/331/9451/8996/8915/4217/9994/207/3717/668/960/6188/55367/5894/80196/9314/11315/114548/1285/54475/9709/2852/27429/7531/1654/8717/2903/22900/317/135/5023/572/112399/9026/3491/55081/79594/387/10935/4255/26355/842/27018/10392/55031/5896/1800/8737/10017/4824/5607/5076/10395/9647/23411/51024/29108/7057/8626/6622/3092/10550/22861/1718/408/4088/3476/4057/51065/3082/831/8743/6478/2149/1490/4804/26999/444/10016/4803/2934/9812/5468/358/4671/2621/5988/2045/2152/4137/7021
## GO:2000027 6772/4609/5688/5709/5698/5693/5713/2296/5721/5691/2253/5685/5690/5684/5686/5695/22943/10213/5447/409/23198/2138/7128/1951/7422/5699/5714/4781/5702/7124/5708/5692/5704/5216/5469/7490/4192/655/5683/9500/10736/1175/5694/265/5718/5682/5716/6422/5707/3975/9313/64750/6091/5696/3239/1857/8323/81839/5292/11331/1173/5719/7855/5700/581/1758/5717/3227/6608/10197/8837/8324/10409/7475/5706/6256/1361/5710/7421/7074/2303/55294/7472/6910/10498/2119/4851/998/2668/50855/5083/7476/5689/5720/6495/5701/9491/57154/5879/1213/5711/27302/55000/5715/6928/6899/7471/7068/1435/26585/3516/859/9861/7046/7040/5705/634/23002/657/186/23213/9968/161/1906/4089/7849/4919/5154/183/10818/3217/1855/55966/5754/3207/387/650/6259/55366/163/659/25/7976/9464/7291/3976/3670/6909/1270/10427/2260/54880/6662/2022/64321/6431/5076/54903/2719/1856/4070/3280/2263/7020/9620/90/8321/55679/54806/1499/1601/2535/2252/22881/8322/860/2735/1952/3082/182/4920/4435/7474/596/947/4300/7482/55727/2246/10252/7042/7048/1735/10370/51339/6591/6469/7494/2099/7481/5764/10512/4487/3249/54361/2239/9863/367/4982/652/1101/54829/2625
## GO:0030595 6280/6279/6278/3627/10563/6373/2921/7941/3576/8792/6352/56833/1230/6347/11240/6351/1236/4067/6354/11151/9420/2841/5641/26228/1880/2867/6283/3689/1234/6375/3735/3929/1652/5880/3965/6357/4282/6850/3569/7852/51192/7226/1240/5142/3071/1525/6376/79902/4192/2833/1908/728/1588/5054/6356/63940/3570/57118/30817/6441/729230/3592/57402/719/811/708/1432/4354/79647/6368/796/8291/6372/6223/2358/84818/101/6868/3579/6363/1113/199/5294/643/2321/8740/2185/23604/3586/566/6346/5293/972/7409/1269/3146/9943/3680/5155/3577/6366/59341/2660/1441/5879/1435/26585/65125/5144/10488/27202/683/158747/301/7984/6369/3269/1906/5196/23765/3603/5319/9750/51561/3815/102/8729/3958/8600/5800/7857/1130/1910/3672/7057/2150/5595/7424/2155/23075/6558/23396/27347/7474/1901/1843/9023/80024/1235/7042/5919/9353/1907/54795/727/4681/83700/4856/2621/51157/5764/6387/7060/10451/79148/9547
## GO:0030168 3932/5341/4067/959/5336/8525/5359/3937/51266/239/2207/409/7534/5588/1608/6850/5912/3569/348/23657/958/23173/5594/3674/5578/2769/5582/151/7006/2778/9002/6714/5579/152/8323/7414/9158/2243/57113/3710/2266/23533/6722/5291/7410/5294/80739/2811/4352/7409/4627/7099/1192/2534/10627/5781/7301/60/2768/5155/5777/1606/928/29071/3273/7222/2782/1607/5028/10461/2814/160851/2316/954/5290/2147/634/5581/5894/2244/5156/5270/11093/2815/10019/114897/71/7225/10630/5196/2623/1609/2767/5154/5023/10672/7094/2039/3690/1465/5583/5170/10077/4846/51206/6814/2157/5580/3709/8526/3611/3315/2776/5595/408/5295/3043/7450/5592/2149/9162/6403/5197/1278/9630/8527/1277/10398/6812/1281/7056/2621/2151/150/10451/18/3708/1311
## GO:0009165 6241/5163/23475/1503/5214/4199/7378/55526/7298/8833/6319/9688/3101/26330/3948/54541/4830/136/4860/8564/6576/2821/57103/2617/1841/8942/5471/3418/7167/2584/30968/353/11332/3208/2597/5230/9631/10606/2023/5223/1633/100/3735/5208/80308/4522/6396/1737/5210/23165/5315/3251/158/9200/142/55706/79071/204/5160/23636/5027/5165/518/2180/9061/3692/5743/3091/9551/506/3099/10165/7415/7372/4927/79902/6240/509/10762/4880/5594/8480/55753/3607/25874/11097/2182/5161/3939/2618/56895/8050/5232/113/64834/55328/790/9972/9390/81929/4878/9060/2027/9519/516/5211/2646/1716/5236/57122/56474/10135/272/51144/5209/79023/54963/9818/23305/55326/201562/5313/522/229/10476/51727/55066/514/6521/1723/9605/109/23511/23205/83440/1738/2194/65220/3614/226/132/2079/51085/515/230/471/23279/79849/5631/2645/7175/5465/2987/10632/4967/10861/271/5213/5207/4833/51548/498/11319/23057/23225/60490/47/10891/80025/10554/3630/55811/8021/55312/53371/1854/81616/6470/7040/5571/54704/5957/11277/4928/2026/5740/3098/6901/159/7114/10201/89/669/521/2639/539/8086/56894/405/2979/513/55229/9883/203/6774/2103/1836/1040/2978/27109/10555/55022/51341/5903/51660/23498/348995/9524/2981/54956/79717/51703/8760/11284/4846/54981/55746/112/2983/863/4656/27231/26471/5538/4879/441024/31/38/3356/8473/517/23417/55739/65018/2982/51422/2977/80347/5224/115/5562/79646/6622/10111/56848/9611/107/29922/5198/9759/270/4837/5162/7157/957/55191/5563/108/5164/4882/79966/7084/3643/2181/3615/54209/4881/8604/2954/6785/7923/201163/60481/5166/84869/4832/2203/2819/32/26137/8382/54898/3479/26289
## GO:0048193 9493/1062/81930/3832/24137/11004/29127/6712/56992/1075/81693/10525/10652/3638/29097/6396/1445/51560/4644/7415/7039/3996/2153/164/11014/286/10228/10640/25839/10113/9217/10959/10139/23760/1785/51693/22820/60561/3797/11015/54732/3835/79585/1522/9980/26286/9276/8774/56681/377/27095/3796/5265/10342/51290/6845/10802/23423/5870/83696/381/9554/10434/8858/829/6710/64083/11316/10133/2348/5584/84516/1314/1780/8615/26088/372/9183/9179/1604/5861/6683/6892/55014/23256/5537/4218/29959/90411/10067/4905/59349/10466/3998/10175/832/23062/10121/64764/2802/9463/23163/8655/3630/8673/51128/10749/81876/10945/55738/6102/1315/3798/3916/11258/55291/10972/22870/8548/26984/5587/6811/378/662/2801/1523/2147/2158/553115/81555/51125/51552/2159/9871/9570/23299/22920/6272/51272/1783/10066/10564/7109/830/1453/51594/11236/8775/55850/11345/51143/10960/84364/2580/11196/22872/10282/1778/9218/55297/28952/54520/3064/10540/6708/55860/374/64837/400/9950/288/9632/8729/11127/10671/55062/3831/27252/11079/966/6711/7405/9527/287/55435/10427/79090/54832/6810/2060/6399/83452/2157/22818/60684/403/1639/51332/9919/2890/23499/30845/55614/4430/23230/9265/9341/10484/6642/9648/2155/9371/51112/64689/11070/9522/53407/23243/63971/8452/375056/2619/2181/29098/5624/81562/57020/51479/65258/51164/9905/22796/2803/3875/1781/2804/25837/6844/23041/10016/91949/6709/57731/8773/5627/64788/11031/582/6653/1294/2621/9135/51226
## GO:0006090 5163/5214/4199/55526/3945/9688/3101/26330/3948/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/9123/5208/6396/1737/5210/23165/5315/6566/55706/10993/5160/8013/23636/5027/5165/3692/3091/3099/4927/79902/10762/8480/55753/3607/25874/11097/5161/3939/8050/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/55066/682/6521/7416/23511/83440/1738/226/189/51085/230/23279/92483/2739/2645/7175/5465/23539/4967/5213/5207/51548/11319/23225/10891/3630/8021/53371/5571/54704/11277/4928/2026/3029/3098/89/669/8086/405/9883/6774/2103/51341/5903/51660/348995/55746/863/4656/26471/3356/8473/63826/51422/5224/5562/9611/9759/5162/7157/957/5563/5164/3643/8604/2954/5166/2203/2819/10873/26137/3479/5105
## GO:0045471 6279/983/1978/8836/7298/6770/6354/7412/2950/3351/3066/578/867/3383/2539/10213/939/57817/10287/3359/929/1788/9076/551/1536/131/3596/1981/1365/4880/117/3558/113/2742/1728/10097/1141/6688/6531/5019/65985/5997/1366/1813/51208/339/2185/64854/6647/2806/4988/2534/2902/841/5245/2904/1440/2660/130/3747/329/2796/6869/9869/7284/5581/3156/5999/2741/4968/2903/3779/6774/572/10400/116/5728/4736/387/847/4255/5741/1938/4986/1815/6915/2059/5423/51150/4916/5179/6517/70/7200/1571/1392/1268/3709/7054/2263/5562/3248/3371/5914/1621/595/2934/5950/210/1393/3952/761/6678/1036/18/4129/9370/2625
## GO:0002478 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/6890/56992/3126/3112/10437/5688/5709/5698/5693/1535/1520/5713/4688/5641/5721/5691/5685/5690/5684/5686/5695/2210/1514/10213/23198/4689/6891/6396/5699/5714/5702/1509/5708/1174/5692/3119/5704/2213/1536/3135/164/5683/1175/50489/5694/3134/1147/5718/5682/1785/1510/5716/3109/811/2923/162/3108/5707/3797/1211/3122/3835/3106/5696/3796/3107/10802/3111/1173/5719/5700/9554/829/3105/5717/50856/10197/84516/1780/972/5706/8517/5710/6892/3133/5689/5720/832/10121/3113/6456/5701/7879/9491/1213/5711/5715/8655/8673/51128/3798/567/11258/9861/5705/821/3115/9871/22920/7189/1783/8905/10120/161/830/4012/51143/22872/1778/3120/10540/10053/55860/163/64837/9632/11127/10671/3831/10427/1639/9341/10484/9371/2209/3685/51164/948/1781/114876/8722/8773/3693/3551/3117
## GO:0018209 983/7272/9212/6790/891/5347/8767/11009/54541/11184/3458/5613/1812/578/11200/7295/22943/166614/409/9806/2591/5603/7422/63967/6789/1020/7443/142/8115/4282/4690/6850/7124/3569/5165/2641/5743/551/1956/8440/9770/2011/83942/1981/5605/3059/5591/5594/5578/4139/8091/2932/6300/10038/3589/152559/22853/7150/1432/3326/9125/5058/6714/8986/6197/2081/1017/8851/10456/5217/5008/156/3320/2056/9261/79109/581/1459/4842/5584/4294/51085/5062/11137/673/10178/5566/1455/1756/28996/2475/9530/9113/5155/11235/1440/64324/5599/6795/50859/10114/6198/8569/9175/2074/1859/9451/54969/11011/5587/815/284/5290/7046/65125/5144/207/7040/960/8536/5581/5894/8312/23228/11315/369/56983/2590/54386/5593/7867/545/351/1609/29110/1453/6872/493/6093/5598/5979/64754/51701/25865/4092/9475/10013/2039/2589/799/624/53944/4140/79070/3976/1452/5601/51763/8737/1454/9623/4916/8408/22876/472/65018/9647/5580/79893/3456/23515/8658/5310/5562/3611/6622/1456/4985/146057/5595/408/51719/5563/10268/3082/10253/27347/7474/9024/596/5590/9252/79625/10142/5334/1389/65981/3270/7048/57731/10411/9201/10769/2621/1195/4908/857/23171/4915/633/3551/7786/7349/1634
## GO:0045926 820/53335/56649/1029/4496/51083/1594/51316/5641/4502/55840/1031/4501/1991/2023/2539/3394/3475/7473/6696/84722/3929/29948/80128/8751/4494/6789/1020/7143/5467/2395/7124/4049/1410/3091/3776/7490/5795/4504/57805/4493/54825/4495/5371/3593/2786/6597/153/1032/6422/4878/5747/5058/3720/5931/6788/3172/8851/1026/393/4722/5997/684/623/27296/4133/400410/58529/8878/9538/6049/51379/56981/11007/51094/2661/11221/3586/4099/131566/5727/6910/4851/5245/5465/55558/51079/2660/3273/5518/4353/58189/27302/9792/9518/26585/2100/978/859/9150/7040/3621/23251/694/5600/5999/5270/10201/79602/186/4633/2931/2658/4089/1654/7528/91/57142/57446/183/81501/51147/5728/4853/23105/79594/3300/5515/6259/8692/7161/659/6494/10743/2258/9423/1630/55602/60485/3488/8737/5538/4879/8711/64321/29946/7093/5802/2719/6595/23411/9706/3624/56848/154/6532/7157/79960/4088/6794/23286/94/51447/54879/3373/4153/604/1027/55841/4211/322/7474/596/23111/948/6586/4881/2261/4499/7042/65981/9353/8829/7048/1511/323/201163/5753/55384/5950/5468/8835/9037/23677/4856/2273/7481/56920/2203/2045/4487/5167/64061/2487/247/2697/652/8614
## GO:0030323 6664/1978/1717/6943/5499/9496/2253/1116/100/3290/9618/10247/2254/8914/7422/55151/4781/5604/7124/5629/8985/23210/1956/23657/3596/1981/51501/5594/54542/79977/6441/1512/1977/7965/7547/1522/1050/1544/64220/5251/9719/6722/80004/26257/7477/9394/7289/7917/93/55294/7472/4838/6910/6493/26154/2302/2627/3845/10454/9678/10413/3516/284217/51696/2033/3988/657/383/5156/8022/7080/123872/10630/3911/4323/4087/51668/5154/10905/5754/57333/2736/55036/171023/1605/659/2294/1385/2324/429/3976/4846/5864/8854/60485/3488/10427/2260/538/6662/6670/6431/1392/55512/4015/2719/3280/2263/5310/9620/9509/5595/1499/64759/2252/23152/2735/4124/10365/3371/10253/7474/9231/2034/1490/10272/3675/3202/7482/2246/10252/3397/57493/1907/7048/5950/4311/6469/6720/7481/5764/5159/8817/83716/6678/5125/23414/25803/2737/7043/652/3169/5241/10551
## GO:0050920 6278/3627/10563/7941/3576/6352/56833/1230/6347/11240/6351/1236/4067/6354/2950/2841/5641/26228/1880/1991/55079/9048/6375/7473/3735/3929/1652/5880/3965/7422/4282/3569/7852/1240/3071/4192/1908/728/1588/5054/5771/63940/3570/57118/729230/3592/57402/719/811/708/1432/4354/79647/6809/1233/6091/8291/2358/6868/57175/10371/3579/1954/6363/199/8740/2185/23604/566/6346/972/9097/1948/7074/3146/9943/4851/5155/55558/6366/59341/2660/1826/3273/5879/177/1435/26585/5587/65125/1845/7040/10488/10716/846/4233/27202/683/5156/158747/7114/1906/8823/2249/3603/347733/285/25865/5458/9750/6259/51561/102/659/3673/5800/2260/4916/6810/7857/9647/23077/7057/2150/3315/5595/7424/2155/23075/4088/3791/27347/7474/1901/1843/54209/5025/80024/25960/2246/5919/9353/1902/1907/8829/727/2247/1012/4681/83700/9037/4856/2621/51157/5764/6387/4908/5159/8817/2152/7060/80310/79148/9547
## GO:0060562 3627/9355/6664/65009/133/1482/4609/6491/8543/5898/6943/5613/2297/8092/9585/8820/8557/5499/2253/8549/239/3549/2138/4522/8914/7422/6789/6659/6768/7124/7852/5629/6262/3091/5216/5469/7490/6862/4192/655/9500/10736/1950/1460/6356/25928/5567/9421/55083/79977/5371/2626/10959/55212/23513/1512/6422/3975/8928/7547/5058/2637/6714/3237/1522/6788/8323/2043/9788/7408/11331/3579/1954/64783/6722/6608/80004/1072/3687/2348/5727/7475/7289/25932/1948/7421/2303/7472/4838/1282/5566/2119/4851/4524/2668/10653/63943/23242/6495/3845/6201/51098/54910/51548/11146/23654/10413/6928/7471/653/1739/1435/8915/26585/3516/284217/859/1969/10765/7040/846/4233/10660/186/7189/9968/6692/7080/123872/1906/3911/2658/4323/1436/4089/65979/7849/26005/6497/317/55764/183/5979/10672/5663/81792/3217/25865/5754/55081/3207/54345/387/650/2736/55036/55366/374/1605/25/2294/7976/9839/9464/7291/5916/8195/56998/9423/6909/80199/5420/9645/2648/7403/10427/6662/54922/4824/7249/2022/64321/4855/5076/2909/10395/23129/54903/2719/1856/4070/29072/79600/3280/2263/5310/9620/90/3611/8289/6385/8321/54806/5228/5087/1499/8945/2535/4776/80000/4088/10522/94/3371/5914/10253/80184/4435/6299/7474/9231/596/3202/7248/7482/5311/26249/2246/10252/7042/4208/11019/9353/8829/7048/8642/2247/6469/58495/585/4488/79633/2099/7481/388/2045/1909/54361/2737/90627/2697/367/6926/9723/652/4036/3169/2625/5241
## GO:0051403 2305/55872/55765/8792/4609/8767/5871/1236/6317/3654/136/11184/959/2950/9258/8877/22943/3735/5052/1852/9618/5603/939/3965/7422/3276/7164/26191/6504/6850/5604/7124/83737/1410/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/5605/5610/10221/5594/2047/8454/5911/7334/1147/140885/7498/10044/10333/5345/5606/6422/259/1432/1326/5058/64127/23239/6788/2081/1857/1399/2043/10371/2873/7855/80149/9261/6363/27035/7311/5734/4281/677/7477/8324/2185/11221/4221/5770/5602/4294/8517/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/5599/59341/6233/355/54910/7316/2889/10454/10114/9175/1540/1616/171392/177/2074/4616/1739/60401/4217/859/7314/10746/1845/207/846/6188/23542/8312/3156/5609/5600/50488/23162/7984/7189/10494/55801/2898/5585/1906/9821/4790/64853/351/8841/221472/183/7430/51495/4293/5048/5470/10045/79594/51347/11183/7538/79155/4868/650/29969/9448/23118/51776/2122/1647/9839/2324/51135/8600/9464/4215/4986/5601/54986/7098/10392/23043/10595/10912/8737/10771/5859/23291/9064/2218/65018/9344/23236/5187/1856/9459/8491/8325/4317/29108/2150/5071/2874/9611/23328/5595/6416/10550/8945/3476/6500/8322/3082/4920/7474/4216/1843/1490/11211/7042/2308/4077/51339/9867/3952/3480/3551/7786/57551
## GO:0002696 29851/952/1493/6352/7037/1075/3932/80380/3559/6347/712/914/8767/1236/10859/55423/136/3574/3575/4860/4067/7412/864/3458/959/11151/4436/942/26228/79915/1880/3329/8876/10288/7468/3689/5788/916/30009/2207/6375/100/3600/3549/923/940/3735/3929/939/5588/3965/9308/10808/1445/865/10148/4282/4690/6850/64109/8013/912/3569/5133/8772/51293/8440/10125/3071/3135/164/8808/100133941/3596/4192/7293/7305/7525/958/5724/9402/57162/3134/54440/3593/8651/3558/9760/729230/3592/51571/10333/3109/11006/4878/1326/1141/5058/6714/64127/970/2885/920/1050/3635/1026/695/23308/6845/101/55183/941/3606/2056/6363/199/10666/10892/7292/8740/55795/11221/3586/10385/11126/972/4352/7535/7409/3707/7099/1948/2534/3553/5062/1604/5781/3146/22976/3565/998/3133/5777/9093/9092/5063/6366/3956/63925/9840/3113/8943/1947/8723/5879/975/1540/3142/3684/6869/177/8673/3916/8915/23529/5290/207/7040/51043/2319/6188/50943/59067/3115/114548/301/7189/961/8741/1803/11148/1949/4323/351/148022/572/2323/3566/8764/3594/30835/54537/79155/387/2624/2736/51561/6708/5170/8600/4292/5896/9173/6810/22890/8546/5819/57178/6777/2268/3280/4317/29108/7057/9655/7158/2150/7070/56848/9846/1960/8660/5295/6778/3567/5914/4602/604/7474/558/596/5590/4179/54209/4208/7048/57126/79679/6469/6812/90865/3485/3952/7494/2621/857/7704/2737/6863/3572/3479/10451/2625
## GO:0006605 5194/64108/85377/23480/9454/9145/3753/3208/9141/637/3689/706/56993/7534/5880/10440/1020/10469/10531/10452/54363/6731/57214/570/51268/10055/10755/100287932/3920/23431/57602/7321/29927/3417/55750/9868/10245/25813/5830/6227/6132/10971/54471/26521/7332/6745/56288/26517/5058/6721/10368/6142/3309/6202/6223/9049/8851/134/10456/25793/6845/208/55486/10005/7855/3320/1459/7311/27183/10300/5264/51025/11231/6746/6734/5621/3416/5584/3745/10953/9349/9472/189/5873/26519/51100/23471/23203/9179/2534/6181/59286/64089/55670/6156/55294/64422/7529/6217/9530/11224/293/6206/3265/1610/6194/6728/6386/10075/3998/6235/51079/26520/6230/196743/6175/7323/6158/784/6201/6233/7316/7879/51/4843/9776/57154/6747/6187/3684/6729/6170/8239/23600/53371/6143/9804/6134/6176/11261/5828/23463/7314/8540/9146/5192/6188/2664/6192/9495/1962/51762/51172/10369/6193/2931/6129/6147/9182/6222/1891/79778/11154/6208/27429/6210/6232/2064/4358/6204/7531/8314/373156/1121/6726/8443/6229/6228/9409/29082/51179/6167/6155/6128/6152/6171/6161/6133/283927/93974/6160/5189/7322/6141/3308/79158/950/2039/89781/4736/9697/6191/6234/6169/10956/6146/847/10053/5195/6165/6203/6122/6136/6209/9520/26515/10519/288/9927/10425/6727/55823/4924/8031/25873/9270/6164/6231/6205/9531/6135/6168/51763/29984/6342/8546/26063/130916/7095/5190/6157/11337/2040/23417/65018/6138/9344/8504/54332/54741/4641/56947/51024/55825/22871/9045/5562/54469/30/6159/5071/5824/51520/11140/23409/9648/55914/665/5191/81854/11001/4734/29928/3155/23255/9847/9765/1384/5193/8310/3295/6653/22906/6720/8528/3305/10455/4053/1191/8309/23303/9590/54677/2053/5174/22885
## GO:0031668 4521/8061/1515/875/53335/1824/3934/6502/7378/440/55630/6715/51765/136/4067/7412/1535/26/2950/3162/1594/51022/867/5024/5788/467/3383/83990/3600/6513/58528/10059/468/1312/1030/5027/4141/5743/10518/9681/5469/1536/9131/1981/3920/3297/5610/5594/5366/10991/3428/8805/1611/6422/360/81929/26263/7184/3170/9971/10135/6721/3309/359/1026/5292/11170/80149/5251/1965/7351/199/4654/6722/26608/79077/2348/3745/1591/3676/432/6647/552/51100/10985/56270/2534/7421/4193/26100/2475/8493/25828/55270/10634/79726/5599/784/355/81631/10514/5028/5030/8735/9463/64121/54434/9451/968/8897/55626/79792/3655/4217/5587/8428/23394/29103/10533/22938/846/4780/10670/10919/6263/8074/6872/54407/7392/54474/4149/10458/5289/11133/4976/8131/6506/3725/23334/79567/2350/54468/659/11152/6494/25994/30849/7486/3178/5899/55062/23378/3077/23032/23274/7071/8408/5179/2909/2242/54332/5287/23411/8658/5562/51520/5595/166/25959/7157/5563/490/55846/2752/8648/440738/5164/3371/10325/55364/558/596/8644/5025/8678/7248/4929/7482/22863/5029/2308/10641/54795/2353/1277/6591/5468/5166/4023/3952/93664/3625/6720/7494/2621/5764/27244/54361/213/10631/9607/57535/5105
## GO:0061448 5307/7298/50515/8200/8372/2297/8092/1302/1116/1019/11173/3696/3549/5447/2251/2254/8710/5467/4781/7480/3091/7490/4192/655/10736/4880/176/2101/265/9421/3570/8091/51320/1432/54928/2778/9971/3398/5019/651/5081/65985/202018/5970/9350/6722/5915/8837/353500/7067/7477/871/4617/11061/2303/656/654/10498/22976/2734/7476/5155/6615/6660/7045/59341/64764/10269/10891/27302/9451/653/1435/26585/4209/5290/7314/56914/7046/7040/960/846/1386/22856/65992/657/4041/9517/23213/1906/2658/2249/649/2822/81792/3491/3207/4094/5458/64641/79718/650/2736/8692/6781/3200/5741/659/7076/9464/5916/8195/1893/4090/2260/538/55790/6662/38/59/6474/2828/9321/55512/4015/23411/5310/64102/51222/579/399979/4086/5595/8609/1499/3232/11145/23314/7059/4088/9149/4017/860/3221/94/5914/3373/5745/1301/4920/1958/7474/947/23111/6468/8840/1490/1280/3213/3202/2261/4256/84159/7482/4208/4322/5396/3400/7048/4060/54795/1277/2247/6591/54360/7227/81029/3952/585/1513/79068/4488/2202/85477/4856/7494/6097/7481/5159/1396/1289/116039/8817/9658/7704/4487/658/2737/5744/2121/2487/1746/6935/80310/1311/652/3169
## GO:0007163 10403/4085/5080/9355/11004/5347/29899/55612/1058/6351/917/1236/9585/1794/6624/54908/29780/10096/23625/23616/2011/3071/4478/286/9793/2047/55083/4139/2932/79648/23513/6693/9267/3834/3326/382/10097/56288/5747/23418/5058/2195/10092/1399/4133/3320/6363/64083/3993/4342/7465/23094/1072/7477/2185/5584/55968/4627/25932/9183/6993/23322/998/9948/2302/10653/7476/6366/10090/667/9368/9181/1739/10193/284217/378/57787/2319/5908/4000/1045/10565/10494/9826/23332/84612/10015/64398/6093/9053/6425/4649/5048/5754/889/9475/3064/387/1398/9750/4140/4983/23150/2294/81609/8729/2258/55755/4134/57698/137886/1495/56603/2909/55691/6939/4752/3280/5310/1639/54828/3611/23189/9265/9638/4131/55914/6794/7010/23286/126353/6548/22902/10253/7474/22841/9231/9024/5590/54820/10252/23122/23255/2934/1003/358/6469/55742/4926/9578/83700/7481/2625
## GO:0016052 5214/55526/9688/3101/26330/313/54541/2821/57103/7167/2584/5499/2529/2597/5230/9631/2023/5223/4759/5208/6396/5210/23165/5315/5834/55706/23636/5027/3692/1118/3091/3099/4927/79902/10762/5255/57733/11181/8480/55753/3607/11097/3939/5232/9972/2820/81929/2027/5211/2646/2528/5236/4125/57122/3795/2582/5209/2760/79023/9818/2592/10690/9942/10327/5313/229/2710/4668/5500/6521/23511/10825/83440/2720/226/51085/230/23279/2526/2645/2523/7175/5465/2538/4967/5213/5207/51548/11319/23225/10891/3630/8021/53371/8277/5571/11277/5260/4928/2026/1486/3098/89/2527/2931/4041/669/4126/5509/8086/405/9883/6774/2103/572/2524/5257/27159/3074/950/51341/5903/348995/55347/6652/51084/55746/863/4656/26471/2548/51181/3356/8473/5256/51422/4758/5224/5562/178/9611/9759/7157/957/26007/5261/5563/2712/4123/3643/5836/5837/8604/55556/64080/216/2530/23324/2203/2819/26137/3479/8972
## GO:0032970 6712/1894/1824/54959/5341/29767/3055/1236/3925/7111/11151/26228/119/9087/274/57180/3383/22843/6624/4771/8477/1020/2824/4690/246/10095/8500/10096/5629/7454/6262/7226/5142/8440/5216/23616/3071/6376/4192/10021/3059/6356/88/1496/2626/3984/9535/5345/6422/50848/382/10097/5058/8936/10092/2885/8851/134/10456/5217/822/7408/57175/684/11170/10109/10094/55160/6710/5734/6331/54942/1072/2185/55607/9873/10093/4627/5962/5987/8976/55704/50944/5829/10178/2041/998/9948/2475/64223/11344/9530/4703/3265/9113/335/1440/7016/5063/6366/396/7429/488/3273/5879/2017/27302/2044/6869/9463/10787/23191/55604/1739/476/55243/859/2316/7046/7341/5318/5144/7040/29766/3759/27/4233/5581/23433/683/10565/5999/5156/7114/1829/7984/79933/6281/6369/961/1906/10630/1946/23332/1436/29109/4089/7134/11214/1613/4607/10458/5154/6093/10163/10677/1265/9026/395/23607/4853/9475/2039/387/4868/3728/1398/6708/6781/25/11078/2258/10152/9270/5066/8195/116985/51763/397/2059/29984/6711/287/1832/55435/4916/9722/22899/2909/10395/9647/9344/5580/2242/5756/4070/11034/91807/4641/9620/51332/8558/29108/54828/10435/10174/2150/3611/5071/23189/5921/7139/6385/118/2702/23075/55616/4088/5295/7010/28984/6548/29119/22998/29098/1901/7168/1490/7840/11211/10142/7248/9639/23122/3397/4208/6717/6709/9353/1902/8829/2934/2042/57731/54795/2241/10411/50507/54551/83700/9037/585/477/85458/85477/51474/24142/7481/4653/6387/4908/5159/857/775/10391/4035/54361/5350/10788/7043/6863/57551/50853/80206/51466/25802/9723/2006/284266
## GO:0071248 891/4318/1894/8437/6770/114/4496/57103/26/3162/5641/4502/4501/3208/664/706/10105/4494/999/142/9076/468/246/5743/8904/7226/1956/5536/1536/27101/3297/4504/4493/5594/6261/3777/4495/3756/7036/1147/113/811/2742/1728/27132/3398/3309/7018/1050/1544/359/4205/55532/1965/6331/4761/5621/241/3707/6647/25932/654/673/57192/6569/1585/1740/5599/7323/2521/1616/10891/9451/567/2021/65125/7341/207/3727/3726/4780/8895/1742/8826/10235/6263/2741/1906/4968/23385/351/3981/63928/23400/2822/3725/2978/7518/2039/1584/79085/8912/288/1385/5601/4656/3077/1800/29957/538/55512/2354/7054/7020/4779/22871/5562/6622/5071/107/118/5595/4776/825/5563/23621/1543/1027/3736/7474/8644/5025/10272/8678/5311/4499/84059/4208/79800/2934/5176/2353/210/1393/358/6469/2203/6857/2167
## GO:0060541 6664/1978/445/1717/6943/8820/5499/9496/2253/1749/1116/54768/100/3290/10247/2254/8914/7422/55151/4781/5604/7124/5629/8985/23210/1956/7490/23657/3596/1981/51501/5594/54542/55636/79977/6441/1512/1977/7965/7547/1522/1050/1544/64220/5251/9719/6722/80004/26257/7477/9394/10409/7289/7917/93/55294/7472/4838/6910/6493/23322/26154/2302/2627/6495/3845/10454/9678/10413/23347/3516/284217/2033/3988/657/383/5156/8022/1896/7080/123872/10630/3911/4323/4087/51668/6497/5154/9242/10905/5754/57333/2736/55036/171023/1605/659/2294/1385/2324/429/3976/5916/4846/5864/8854/60485/3488/10427/2260/538/220/6662/6670/6431/1392/55512/4015/2719/3280/2263/5310/9620/9509/8929/7881/5595/1499/64759/2252/23152/2735/4124/10365/3371/5914/10253/7474/9231/2034/1490/10272/3675/3202/7482/2246/10252/3397/57493/1907/7048/5950/4311/6469/6720/7481/5764/5159/8817/83716/6678/23414/25803/2737/7043/652/3169/5241/10551
## GO:0000302 6278/890/983/2146/8061/4318/1894/3934/6772/2643/5111/1236/6770/51765/1719/2950/3162/3066/51022/578/8877/664/7295/100/8807/5831/10280/5603/8989/7128/10105/2395/8013/7124/3569/1410/348/4151/7226/1956/5536/7186/9131/1421/655/3297/4504/5594/10131/1147/140885/1785/328/1728/836/54583/6714/7356/1017/9283/3741/695/2876/5970/5660/7351/6363/2861/2176/2113/8837/2185/3586/337/6647/5798/2534/5829/2168/4193/1545/5151/11235/55270/5599/2775/3840/3747/10276/4353/7001/5516/8754/10891/5796/6869/2074/2021/7352/4217/8428/3184/54840/207/6188/4233/11277/9314/4780/383/5156/11315/10494/7225/1906/4358/1263/5074/10587/5598/572/10645/3725/824/6382/10013/59338/10935/1398/847/23334/8692/374/23064/25/1938/11179/4846/5601/2983/1800/8737/538/23135/2309/5076/1571/65018/7703/55512/5580/55139/4548/23411/6546/9104/5562/7337/5595/6778/5164/10365/3082/3373/4602/55364/3043/558/3240/596/8644/1843/7168/948/4314/8678/5311/2308/2353/1277/2241/10516/2281/358/51314/7350/4313/10628/51157/5159/27244/1471/388/57332/347/80310/4137
## GO:0045089 6280/6279/8685/55765/4321/3902/6352/51311/79931/94025/64581/1690/8767/91543/5688/3055/5709/330/3654/9447/5698/727897/4067/5693/1535/1520/5713/5336/9258/5641/11314/64135/5721/5691/2867/3329/5685/23547/3689/5359/7096/259197/5690/4068/5684/5686/2207/5695/1514/27293/3659/10213/8807/7353/23586/2219/3929/409/23198/7128/81622/5699/5714/929/26191/6850/5702/912/79132/56253/7097/5708/83737/8772/5692/63906/64170/5817/5704/5469/5971/10125/3135/164/5683/10622/5591/5694/4792/5567/7321/57162/3134/4585/4893/8454/9641/3593/7334/1147/5718/5682/6441/3592/3428/6397/3805/5716/57402/10333/7294/5707/708/89870/7184/10432/2672/10010/9971/5568/1508/5058/6714/64127/3662/5696/4841/4615/6197/6223/4332/2069/661/2358/695/4586/3385/101/2243/5719/2547/5700/5970/9261/10062/2266/5717/7311/23643/26057/10666/50856/10892/55666/57115/10197/23151/1660/11126/7409/3665/10621/5706/8517/7099/2534/5710/5062/4584/7301/3093/6271/3146/6885/5566/5608/3133/10462/54726/3384/841/3265/10084/5689/4583/5063/5720/55601/3845/7323/8993/6233/4795/55703/7316/5701/9491/10454/1540/329/3684/5711/5715/331/3916/8915/7314/9861/2033/7520/5705/85363/3661/149628/64922/5581/5894/2244/59067/10623/58509/7189/26065/6421/7187/7867/4790/10695/55269/29110/57142/26253/148022/5289/7322/23180/9684/9698/30835/79155/56667/8780/1755/23118/55366/7105/10318/23705/5170/51284/30849/51135/79671/23369/11027/7100/23098/7098/10392/8737/338/5819/23291/9865/6777/5580/3456/5802/29108/2150/26060/2874/10211/8945/57876/26007/57506/55914/6500/4057/1387/7474/22841/9252/948/54941/29997/4589/4588/9867/55198/10614/4214/1513/80216/2099/11213/3263/857/81035/3551/4582
## GO:0030072 10874/952/6352/114/56943/3458/51083/2867/292/6513/5208/8997/5127/6659/6566/5467/2692/7124/4160/3569/2641/3091/4644/1956/26251/3814/1080/1908/25874/6927/55636/51167/5578/1374/7036/8431/1394/6422/5211/3170/9971/152/8447/5019/3741/3172/402/65985/2243/3710/55585/51768/7351/2266/3033/1813/3799/773/353500/9255/3745/65220/7425/5798/3553/5781/93/7074/5861/9515/7447/3651/2740/3358/5978/2645/594855/293/6865/9699/59341/2850/4843/5879/3747/6804/6616/23568/2044/23178/4825/5715/3630/6928/9324/4760/3717/846/4544/5581/5894/2244/818/3156/5906/11315/51762/23435/1803/1906/51714/1946/640/2852/4087/7849/10312/9230/572/27230/6514/2822/116/3557/9575/2693/291/2695/9448/8398/8620/7432/8600/3670/3077/2696/6814/57818/6810/26056/2029/6934/1392/1268/55512/406/5991/3709/5532/5071/399979/777/51092/5530/23409/8609/6453/408/8660/27445/11132/2752/3382/22841/9024/2746/8425/80024/9501/5799/3790/6717/9854/54795/23410/5950/2281/10411/1393/2691/3952/8864/3625/4856/6720/6833/775/1363/8938/4035/11069/55638/2697/55107/3667/7349/9607/150/9254/18/776/25924/3708/2922/7021
## GO:0048863 4902/6664/1482/5688/5709/6496/5698/5693/23603/5713/2296/8092/5721/5691/5685/4072/5788/5690/5684/5686/5695/7473/10213/23198/51755/865/5699/11051/5714/5702/5708/83737/5692/3091/5704/1106/54517/6862/9221/655/1908/5683/5610/5594/5694/6949/4004/2626/5718/5682/8091/5716/80237/6422/5707/2637/3720/5696/51441/8828/5008/202018/10371/5719/5700/5717/6722/6608/10197/1072/2348/79918/5706/3313/5710/22823/2303/11137/29947/6910/3651/4851/2668/5978/59349/8861/7476/1636/2627/6660/5689/5720/1947/5701/9491/11166/5711/5715/10413/6928/3192/6899/6929/26585/3516/11281/4040/9861/81606/7520/5705/3084/553115/4780/657/5156/6886/55818/1906/3911/2623/4089/65979/25920/6774/2103/1021/79727/5979/9698/54345/8621/5308/2624/7161/9739/3815/25/2335/9839/429/9464/7291/3976/3670/6909/10538/8854/6662/64321/5076/4297/23081/1910/6405/29072/3280/2263/90/8626/2/8929/3204/8321/2068/5595/56339/23528/7157/860/4303/4602/4005/182/4222/2823/678/4054/10016/590/7042/4208/8829/6938/6591/6469/58495/83989/4488/4254/2099/5764/10512/1909/4487/10443/2487/3357/652/2066/3169/2625
## GO:0071453 890/5163/891/1978/51378/768/4609/10397/5688/5709/1869/3654/5698/5693/57103/1789/5713/3162/5721/5691/30001/867/5685/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/10213/10059/23198/2792/6285/7422/5699/5714/6921/1788/6839/5467/27087/468/5702/9978/5165/5708/5743/5692/3091/5704/3776/1536/9131/655/5683/4504/5034/5694/3777/5366/5718/5682/5716/9114/6422/360/5707/1179/54583/10135/6714/5696/101/11331/5719/5700/2056/27035/23545/4654/5717/7311/26608/10197/8837/8453/677/4352/5706/5710/79723/2168/4193/4851/28996/2475/523/2627/5689/5720/7015/784/6233/355/7316/5701/9491/2782/50809/10891/6923/5711/9463/5715/2021/8996/3516/7314/9861/10533/207/2033/5705/846/22933/5581/4780/537/4000/5740/55662/7225/8994/1906/9550/1263/405/3779/64506/4976/572/7009/112399/5728/9475/5458/10869/6781/9520/26355/64344/25994/7291/27063/571/6095/25950/10273/538/4824/6517/2309/23576/65018/23411/6546/5562/4985/23409/6326/7157/1387/665/28984/6548/1958/596/947/2034/79625/4194/7248/29997/1902/2308/10370/5468/358/3751/5764/857/5105/8614
## GO:0043281 6280/6279/27074/4102/4318/3932/2537/4609/9705/2810/54205/578/3329/9141/239/5447/409/80758/10541/939/3965/7422/3336/7124/1509/5329/1410/8772/5743/551/7415/7186/25816/9131/834/356/3297/4504/10049/10018/1612/5366/5371/10134/7498/885/1032/1611/1512/23204/55655/8795/6714/5272/6091/6197/2876/400410/581/8837/23151/8740/7023/23787/6195/64780/56616/5062/5134/2168/4838/4193/3146/51176/5978/841/9966/51079/6657/10542/7429/355/23786/79886/51499/55011/331/9451/8996/8915/4217/9994/207/3717/668/960/6188/55367/5894/80196/9314/11315/114548/1285/54475/9709/2852/27429/7531/1654/8717/22900/317/135/5023/572/112399/9026/3491/55081/79594/387/10935/4255/26355/842/27018/10392/55031/5896/1800/8737/10017/4824/5607/5076/10395/9647/23411/51024/29108/7057/8626/6622/3092/10550/22861/1718/408/4088/3476/51065/3082/8743/6478/2149/1490/4804/10016/4803/2934/9812/5468/358/4671/2621/5988/2045/2152/4137/7021
## GO:0050792 7153/27074/3669/6355/3576/9636/6352/4599/200315/6772/3838/91543/6351/3429/6590/4938/4940/5435/8638/8547/5359/5479/5806/940/2219/5440/3434/3965/6732/8815/23076/5702/7124/22880/7852/51497/5629/5433/348/60489/79720/26986/27350/5034/5610/6882/1642/10450/9217/9830/5371/8091/3428/6597/200316/5437/904/10465/9126/89870/6780/5886/5481/920/5439/684/5431/80149/5478/27183/29883/3065/5436/1072/10155/1660/7726/325/7023/7706/972/3609/5987/11074/23633/6993/2959/11267/8468/51176/5978/23367/8724/5438/5432/22954/51193/2332/3956/25978/7879/56829/6827/6598/2963/6829/9869/9150/22938/103/2033/85363/64710/5091/6895/6733/1655/5434/9525/23435/6737/5586/10107/7251/25920/1654/10475/7113/51495/104/8812/51773/3725/9218/55337/24138/7538/29969/55196/10318/858/51763/3440/8519/201626/11043/25833/55223/5819/5430/64848/7155/1025/2040/6667/3456/1105/5071/5441/27243/10206/54737/57506/4057/2962/4153/63901/23272/596/10410/6041/2934/2494/81603/10581/25827/3249
## GO:0016358 991/2146/53335/7804/54149/3066/10507/55079/916/10059/3251/8997/1020/2048/348/8440/84079/655/238/50674/2047/23769/2182/1496/57118/5911/3558/4139/7940/2932/9856/5597/9148/6792/7533/2049/382/10097/1141/7101/11178/10006/50807/7224/8851/1399/2043/6845/4205/55236/26050/10371/84298/4133/22903/10479/9762/54942/1072/3196/55607/27185/26039/4076/57468/8976/2534/5062/7074/2902/50944/6993/10498/54413/1627/998/2475/7436/7287/7476/23242/23316/2332/5063/56965/10298/1826/3706/23373/23191/4168/653/815/378/8301/1600/1523/23542/8536/577/3688/50488/1742/23543/8826/23380/9820/8578/7225/816/351/26012/23011/10458/4976/5663/23237/54664/1136/5048/4891/5728/6801/1855/23105/10013/387/1398/23613/102/11141/473/23271/10152/80243/55619/1630/4204/23098/23043/4038/57498/10611/5649/10160/6383/5789/9344/23363/5802/26052/9693/22871/3611/7337/5530/8609/6453/4776/22891/64689/115703/6794/29882/1952/9231/1942/5592/23426/66008/26037/80823/4734/65981/3397/4208/22849/1902/8829/64284/585/9201/22906/10769/1501/5764
## GO:0033157 51512/1894/55612/3429/3458/9585/2810/3753/3208/9141/7545/3689/7295/3638/3936/10541/5880/999/1020/23636/5905/8882/5743/57214/5901/580/10055/9221/55741/3059/5594/57602/10134/2932/8934/1432/54471/64328/7332/5058/6721/9818/8851/10456/6845/208/55486/55432/7855/80149/1459/3799/6608/5621/10155/51009/3745/2010/9777/5770/51100/2534/3553/5781/59286/55294/10178/4193/5566/4946/9530/3265/3843/7175/10075/11235/3998/9478/7323/784/9776/81565/975/3684/5784/53371/51465/23379/2316/284/11261/5296/7040/8536/2664/79752/55754/11315/186/22994/2931/7327/23435/79778/27429/26993/2064/1263/7531/6672/8314/5116/4947/8841/63928/23400/5494/5663/93974/2039/89781/3728/10956/29969/8692/79567/9520/10519/288/10425/55823/4924/51715/51366/9270/9912/9531/11142/51763/55781/26229/6830/6934/2040/9695/5569/65018/5580/29072/54741/4641/56947/51024/54828/5562/5071/23409/79628/4763/9648/7157/57506/4088/5295/665/55696/22902/80184/9024/948/6844/23255/9847/79899/10411/5108/6469/3952/6653/6720/2621/3305/2737/161291/347/9370/5174/652/22885
## GO:0009743 81620/1515/4821/4199/64581/6770/4830/4067/2730/114/56943/1535/336/2950/5024/3383/80010/5208/5603/4704/5127/6659/5467/2805/2692/5165/5743/3091/1080/6518/8891/25874/26291/2626/8431/6597/5211/2646/3170/9971/836/10135/5579/5428/2081/56652/6434/5019/3172/65985/5313/7351/3799/6722/677/2185/3745/4221/65220/51085/5798/1361/3553/51052/93/7074/7447/3651/5566/5608/2645/5020/25828/65010/3956/2850/5879/10891/2044/4825/177/55011/6928/9324/1967/2021/6598/23394/5290/8890/10533/4760/22953/7040/846/5908/5581/5894/3156/11143/5906/1285/51714/1946/8892/2852/6529/4087/2901/9230/4976/572/79727/2822/8893/5728/285/387/847/2695/9448/8398/2998/3673/4986/55937/23098/2696/338/6810/7776/2309/26056/2029/6934/7200/5076/1392/7054/6546/1215/2729/51024/7057/5532/5562/2067/51092/5530/6416/8609/4131/408/10497/8660/5563/2752/1027/1958/22841/9024/1490/6844/5799/6717/9854/7048/5176/1581/54795/2281/50507/10203/4023/3952/10628/6720/7494/2621/1471/1292/6678/8938/4035/81035/55638/2697/55107/26137/150/9370/5105
## GO:0006402 55110/5688/5317/5709/1869/5698/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/5686/5695/4116/10213/7534/8761/23198/57819/5699/25804/5714/1994/5393/5702/9775/5708/5692/10492/5704/23404/28960/56915/1981/55149/5683/26986/9704/11157/26135/23019/5694/51690/26019/5578/5718/23589/5682/4686/5716/80153/328/11044/6227/23318/5707/6132/1432/3646/9125/6556/23644/192669/4869/5696/6142/4615/7356/7514/2081/9967/6202/6223/51441/6832/26523/2935/6741/5719/23381/5700/8531/80149/9261/5717/7311/53918/29883/27258/10197/677/6418/1660/55795/9887/339/4849/399664/65109/27257/55181/9349/1656/5706/11187/10767/5710/22916/6181/6156/9567/23658/9238/10921/7529/2668/6217/2475/23367/11224/54855/6206/6194/56006/10236/11340/5689/2332/6235/5720/6230/23016/6175/3183/6158/79072/6201/6233/8125/7316/5701/9491/2107/10605/5518/6187/5976/5711/23112/56829/5715/6170/3192/8021/6143/6134/4848/3184/6176/22794/7314/9861/207/5705/6188/6192/79670/8570/1655/6193/6129/51013/6147/8741/23435/6222/25819/6208/6210/6232/6204/253943/51594/6229/6228/79675/6167/6155/6128/6093/8241/5520/4850/6152/6171/6161/6133/6160/22882/57472/6141/5073/9698/9475/7538/4736/7431/6191/6234/149041/9337/6169/6146/5515/6165/6203/6122/6136/6209/7432/6499/80349/1797/10949/25873/4292/57060/6164/23369/6231/6205/23293/6135/6050/6168/3842/201626/7812/65110/192670/472/6157/6138/79066/5580/55802/90806/9652/9939/9045/5394/6159/3315/10140/56339/23708/26058/79048/9811/678/6041/167227/9924/22849/55629/22894/79899/7832/79068/1153
## GO:0002064 5080/4821/639/7298/10481/6496/57103/7111/2810/56913/3383/54768/4647/3549/1761/60484/6768/9076/7124/7852/5629/8985/3091/688/9414/4478/1365/1041/1775/3175/79977/2932/23513/50848/4643/4914/79955/2195/3172/1026/2876/57826/5660/6009/6608/5915/23094/7477/3274/2194/6647/25932/5962/3553/2303/29842/654/2683/2302/10653/1874/7476/5155/6098/9480/2889/3849/64919/4825/9368/653/79983/2316/1969/9210/5144/5908/7132/4233/26051/23086/9294/5906/10116/8826/2931/1419/2355/286451/1021/6093/572/7430/80173/5048/10818/6382/9475/54345/3642/4868/7431/9575/9750/6781/4301/11078/51742/5170/8419/10152/57111/5916/5420/5872/10427/2260/7827/6662/54507/2022/59/57669/4855/2828/5802/406/5991/7082/546/9693/2150/8626/57835/579/118/51092/5175/1499/26084/5926/5914/182/7474/5624/7716/80781/3202/23022/3397/57493/22862/1003/10411/2317/81029/3295/7494/2099/1471/5138/25803/3551/2697/3913/9863/367/2947/7122/9370/652/3169/5241
## GO:0030324 6664/1978/1717/6943/5499/9496/2253/1116/100/3290/10247/2254/8914/7422/55151/4781/5604/7124/5629/8985/23210/1956/23657/3596/1981/51501/5594/54542/79977/6441/1512/1977/7965/7547/1522/1050/1544/64220/5251/9719/6722/80004/26257/7477/9394/7917/93/55294/7472/4838/6910/6493/26154/2302/2627/3845/10454/9678/10413/3516/284217/2033/3988/657/383/5156/8022/7080/123872/10630/3911/4323/4087/51668/5154/10905/5754/57333/2736/55036/171023/1605/659/2294/1385/2324/429/3976/4846/5864/8854/60485/3488/10427/2260/538/6662/6670/6431/1392/55512/4015/2719/3280/2263/5310/9620/9509/5595/1499/64759/2252/23152/2735/4124/10365/3371/10253/7474/9231/2034/1490/10272/3675/3202/7482/2246/10252/3397/57493/1907/7048/5950/4311/6469/6720/7481/5764/5159/8817/83716/6678/23414/25803/2737/7043/652/3169/5241/10551
## GO:0051701 983/6355/3695/3576/7037/59272/79581/7298/3838/6317/8372/942/8547/3853/867/2597/1234/3383/5806/2219/4360/6510/3434/3965/6404/999/6504/9076/83737/7852/1378/5817/1956/1525/79720/7293/1380/5034/5610/1642/10018/9217/5371/26762/23513/9972/9074/50848/9126/89870/1508/6714/9080/5272/2993/8563/5481/2885/3841/55065/3837/920/3839/3949/941/3694/156/949/80149/5478/27183/3836/10155/7726/3416/325/7706/10898/5818/972/1948/6256/5987/1604/11074/7301/23633/6993/28996/10572/841/293/57187/8724/22954/51193/10332/3956/25978/7879/3840/975/79872/8673/3916/9798/1969/10533/7040/85363/3678/4233/5091/3688/10670/80145/11060/9525/1803/79228/6737/1949/10107/7251/4340/10475/4864/7113/572/8764/8812/9218/950/30835/55770/2838/8692/3690/1605/10318/3673/858/4684/9984/3440/7405/8519/11043/55223/4916/2060/5819/23601/3356/6554/598/2982/11334/5071/27243/23265/6575/1499/10206/4088/8106/3373/3643/558/3685/10410/4179/11059/4734/6584/2934/81603/10581/3693/2621/857/290
## GO:0002685 6278/3627/10563/6355/7941/6364/3576/6352/56833/1230/6347/11240/6351/1236/4067/6354/3162/2841/5641/11314/26228/1991/3383/9466/6375/100/3735/3929/1652/5880/3965/7422/4282/7124/3569/613/8772/1240/3071/4192/2833/4478/1908/5724/728/1588/5054/63940/3674/3570/57118/729230/3592/57402/719/811/6693/23143/708/1432/4354/79647/8291/84830/2358/134/1399/101/6868/623/6793/3579/6363/326/199/5734/8740/2185/23604/6346/972/3676/8976/3146/9943/6366/928/59341/2660/5879/975/6869/177/653/1435/26585/65125/207/7040/10488/27202/683/158747/301/6369/8174/1906/4323/351/387/1398/9750/8995/51561/102/3673/3958/1893/6370/55512/23236/29108/7057/2150/7070/4345/3204/5595/7424/2155/23075/29/375056/3554/27347/7474/1843/54209/5025/80024/1235/6403/83483/5919/9353/1907/727/4681/83700/90865/4254/4856/2621/51157/5764/6387/11117/347/7060/80310/79148/9547/1524
## GO:0002683 4321/3902/3620/6664/2633/29909/3149/1493/56833/80380/3559/6347/11240/3112/4609/10859/4830/1051/54892/3575/4067/864/55365/336/27242/3162/51083/9258/2841/28959/11314/26228/10288/10225/25939/23547/8530/5788/9466/30009/2207/2840/6375/100/27293/3659/3549/7353/64092/409/1652/7128/3965/9111/671/865/3276/6318/929/26191/4282/246/7124/79132/10875/83737/1378/613/5133/8772/5692/63906/9404/2213/54900/5795/23240/79037/3135/6376/4192/7305/1588/51621/55080/10221/5591/55024/4277/5771/54542/4792/11326/57162/3134/2551/3593/8651/3558/5682/79577/6441/729230/3623/7940/3428/6397/3805/23513/10333/11006/6422/6693/259/23143/708/384/836/8832/5272/3662/8379/3398/2896/7356/6223/4332/725/84830/3635/134/64771/695/25793/25807/3111/684/2876/3949/3579/80149/10062/1813/64783/23643/29883/5734/55666/23151/677/5621/7292/51208/325/2185/11221/9306/3586/10385/11126/972/3707/7099/3313/5987/8976/1604/3718/1269/7301/55294/3146/3598/10457/4851/3565/5977/10906/3133/2302/54726/8861/335/5777/8451/6366/4795/7001/3142/10461/11146/2796/171392/3630/722/968/653/1739/8915/26585/284/6988/1845/207/60343/103/7040/51043/79004/634/11277/50943/4780/5495/27202/23228/383/2267/6895/26146/58509/301/6886/961/5585/4889/5196/2852/2064/284021/5169/10475/5074/148022/135/1021/7430/7009/3566/8764/116/56940/9684/10766/4092/79594/7538/1398/933/8780/149041/9750/2624/64844/55366/7105/2294/10519/80349/5170/3958/10077/79671/7376/9984/11027/23098/7098/966/3440/9646/3077/5094/9173/9935/5573/6662/472/6777/6370/1268/3456/23236/3218/5802/54623/3280/7057/9655/5532/2150/7070/4345/3624/2/26060/6385/2874/710/3204/10401/4763/1997/1499/26007/55914/8654/4057/5295/6778/5914/29/100507436/375056/604/4211/558/9231/57045/1843/10272/54941/3202/11005/4212/10464/7042/221395/10039/9353/79679/1831/2241/727/5468/6469/4681/1281/90865/4254/4856/6387/11213/11117/7704/2737/10443/2615/5654/347/7043/2200/9607/9370/79148/652/10234
## GO:0034504 983/4321/5347/51512/1894/55612/22948/3838/6496/705/3458/9258/908/55726/1812/10576/7545/7295/166614/2634/4771/2254/999/1020/142/23212/6850/23636/5905/8882/84268/5743/5901/5469/580/7203/79711/9221/655/10574/10736/3059/51501/5594/10575/4792/10049/5371/2932/811/11006/1432/2646/23534/6714/7514/3837/402/9818/1026/64771/5514/26272/3839/11331/4931/80149/51068/9670/25777/6608/10155/51208/9349/2534/10445/4193/10073/10694/3843/7175/9478/6495/7015/3840/868/26108/23650/23568/3630/602/3192/9451/53371/54971/2316/284/11261/5296/754/7341/64901/207/2147/7040/149628/23399/55705/11143/4000/11315/186/29775/23435/8720/55135/7531/6672/1861/6774/8841/63928/183/5663/1855/23607/51341/3728/9913/5903/29969/8692/23353/56957/10210/55374/51715/51366/3976/7486/10347/5300/9531/6135/11142/3842/6662/7249/5569/5580/406/23515/54623/55035/26092/200576/2516/163590/26060/5530/4763/7157/57506/4088/6500/5295/6794/2752/55696/948/4804/114882/80279/3087/29997/7507/201163/1277/55198/81603/23345/6469/3952/585/10628/9201/7704/4487/2737/347/652
## GO:0032535 6712/5341/29767/3055/7504/1236/3897/3575/7111/11151/5499/119/10507/3783/1019/9087/274/57180/3383/3475/7473/23507/6696/55144/80128/7422/1020/7143/23028/4690/246/10095/5027/10096/7454/348/8440/5216/114908/23566/23616/3071/4478/4504/3059/6356/54825/88/1496/3984/1785/51393/2932/6344/53841/6792/3326/2784/382/10097/5058/8936/10092/2885/7224/8851/10456/5217/393/3792/822/7408/57175/1173/10371/10109/4133/1954/10094/1002/6710/6722/7410/6049/361/54942/1072/7477/8153/2185/55607/27185/4099/7409/9873/10093/5962/5987/8976/10178/11267/1207/51330/9948/2475/57403/11344/9530/1874/4703/7476/9113/1440/55558/8766/5063/6366/59341/10542/7429/1826/5879/6343/9175/81565/2017/50809/4825/9463/10787/5865/23645/9368/23191/55604/1739/4897/9798/55243/859/23394/8301/207/29766/2664/5581/10083/10565/7114/310/6369/1906/9821/1946/57142/23011/5868/1382/23400/7430/5979/10677/5048/9026/5728/23105/1182/2039/8482/387/4868/5458/10439/6259/6708/6900/10000/659/25/2335/11078/1385/2258/10152/5916/8195/9423/1630/57698/2059/6711/23038/55435/538/4916/1808/2909/5580/5802/5756/11034/4641/9706/80131/51332/29108/51334/10435/23499/2150/3611/64798/23108/23189/5921/51520/118/4131/23075/6558/627/29882/5357/22902/8799/7474/23111/2803/7248/1185/6709/9353/8829/2934/57731/2241/4747/358/54551/9037/585/3778/85477/51474/24142/6387/56920/2045/4035/8800/10788/50853/80206/7349/51466/25802/2006/10451/4137
## GO:0019083 6352/6351/9688/5435/9631/5440/6396/23165/55706/23076/5702/23636/51497/5433/4927/79902/10762/6882/8480/11097/9830/8091/6597/5437/9972/904/6227/81929/6132/57122/6142/79023/6202/6223/5439/9818/5431/22879/7311/23511/3065/5436/1660/7023/9349/5987/6181/11074/6156/2959/23279/51176/6217/5978/11224/6206/6194/7175/5438/5432/22954/51193/6235/6230/6175/6158/6201/6233/23225/6187/6170/6827/8021/53371/6143/6134/6598/2963/6176/6829/9150/22938/2033/6188/6192/4928/64710/6895/6193/6129/5434/6147/23435/8086/6222/6737/6208/6210/6232/6204/25920/7392/6229/9883/6228/6167/6155/6128/6152/6171/6161/6133/6160/6141/51773/3725/7538/4736/6191/6234/6169/6146/6165/6203/5903/29969/6122/6136/6209/348995/25873/6164/55746/6231/6205/6135/6168/51763/11043/25833/55223/5430/6157/1025/6667/6138/905/9045/1105/6159/5441/10206/2962/10410/81603/3249
## GO:0070646 991/890/983/993/11274/6502/79931/7345/4609/5688/5709/6472/330/5698/5693/56943/54532/5713/64135/11047/5721/5691/78990/8607/5685/7398/5690/5684/80124/5686/5695/10213/7353/23586/51029/409/23198/7128/51377/9929/9100/86/63967/5699/5714/5702/5708/83737/10713/5692/3091/7415/5704/7186/580/672/10987/1080/5683/3054/57602/5694/3607/4792/7321/7347/10617/5718/5682/83444/5716/55611/8975/5707/29086/10010/64750/5696/5886/8533/9986/8078/9099/8027/55432/2873/5719/4738/5700/80149/57559/5717/7311/10197/389856/29844/64854/9097/5706/8517/5710/10254/60/10445/4193/51035/6885/9825/54726/8900/59343/8724/23358/79913/4287/25862/5689/10980/79184/84669/5720/8287/6233/7316/5701/29761/9491/10454/9733/1540/329/8295/80013/5711/5715/8239/9960/9958/9804/10474/54891/7314/9861/7046/23252/9146/2033/5705/23172/8665/50813/64708/6881/11315/114548/7189/9817/7187/6737/10600/93973/8464/7874/4089/55777/4087/8314/7528/51138/1861/57599/55252/9577/219333/9318/5728/4092/4798/79155/387/10869/51720/56957/171023/63891/10318/23326/5887/8850/10920/55031/2648/8237/23032/5423/8737/55288/10208/8473/7375/6314/27005/9101/92552/84196/5071/9098/154/4086/1643/7157/9738/4088/4303/26054/51616/6478/9736/324/8678/10868/4194/29997/79589/90865/2099/367/2625
## GO:0043523 4605/9928/2019/6347/8326/2020/8200/6770/1051/2730/11151/3162/4436/5641/2253/7336/2539/16/10525/10280/409/8883/5457/1020/142/2558/468/8013/7124/8882/3091/6376/9131/4192/23321/356/7305/4504/728/10018/997/835/10617/5582/1649/3326/4914/1728/836/1522/4841/2896/2895/8851/10763/2914/5309/101/2876/2562/55532/9244/581/5621/9040/6418/2185/5584/3745/116986/2561/4099/6647/2534/4296/2902/7301/55294/28996/2668/1271/4170/3265/5063/6495/3845/7015/3684/10891/27023/55626/58533/23394/23529/284/5290/26281/3717/4544/1386/6620/11315/6733/2898/2901/26012/3981/135/6093/112399/5663/4835/3725/387/23017/8846/5803/5170/55074/842/429/3670/5300/1201/4204/26471/1270/5538/5913/7516/2309/472/598/65018/2065/7020/2729/3672/51024/3611/6622/5071/5921/10314/6416/4763/9759/1499/6453/7157/4776/408/23621/4602/4435/7466/558/596/79625/2149/80823/54463/4929/219699/7042/4208/8829/4747/6812/7832/4671/2045/4035/4915/10752/7786/7043/27324/1524/2625/7021
## GO:1903039 29851/1493/6352/7037/3932/80380/3559/6347/8767/1236/10859/3654/55423/3574/3575/4860/4067/7412/864/3458/959/11151/942/3329/8876/1991/10288/3689/5788/916/3383/6375/100/3600/3549/923/940/939/5588/3965/9308/10808/1445/865/10148/4690/6850/8013/7124/912/3569/5133/8772/8440/10125/3071/3135/8808/100133941/4192/7525/5724/9402/54440/3593/8651/3558/729230/3592/51571/3109/11006/1326/5058/6714/64127/970/2885/920/23308/101/941/5970/3606/2056/6363/199/10892/2113/7292/8740/11221/10385/11126/972/7535/7409/3707/3676/1948/2534/3553/5062/1604/5781/3146/3565/998/3133/5777/9093/9092/5063/6366/3956/9840/3113/8943/1947/5879/975/1540/3142/177/8915/3037/5290/207/7040/51043/960/2319/6188/50943/59067/3115/114548/301/7189/961/1803/11148/1949/572/3566/8764/3594/30835/387/2736/51561/6708/5170/8600/5896/22890/8546/57178/6777/10725/3280/29108/9655/7070/8631/1960/5295/5914/4602/604/5590/4179/7048/79679/6469/3485/3952/7494/857/7704/2737/3572/3479/2625
## GO:0050900 4312/6280/6279/6278/3627/10563/6373/8140/6355/3695/2921/7941/6364/4318/3576/28823/28424/8792/6352/51378/54210/56833/3932/1230/6347/3507/11240/6402/2888/914/3537/6351/3055/1236/3897/55423/28778/4067/6354/7412/9046/11151/3162/9420/2841/5641/11314/26228/1880/2529/2867/3514/119/6283/1991/4072/483/3689/1234/3383/9466/962/9048/30009/2207/6375/9123/100/1088/3735/3929/1652/5880/3965/7422/6404/6357/29802/6566/4282/6850/9056/7124/3569/7852/2886/613/8772/51192/7226/1240/5142/3071/2650/1525/23657/6376/79902/4192/2833/4478/1908/7525/5724/728/1588/5054/6356/6654/63940/3674/3570/57118/30817/140885/6441/729230/3592/6520/57402/719/811/6693/23143/51744/708/50848/1432/4354/79647/6368/8795/8832/6714/796/2993/8291/2885/6372/6223/84830/3635/2358/134/84818/1399/101/6868/623/6793/9057/3579/3683/6363/326/1113/682/199/5478/5734/64083/5291/4973/5294/643/2321/3687/8740/9255/50512/5657/2185/5335/8288/23604/3586/566/6346/5293/4099/972/7535/7409/4627/3676/8976/2534/5781/1269/2683/3146/9943/9948/7441/3680/2302/2734/5155/1084/5777/3577/6366/23539/928/59341/2660/1441/56301/6401/3543/5879/975/10461/3684/6869/177/3605/5669/653/3655/1435/26585/284/5296/5290/65125/5144/207/2147/7040/10488/960/634/3678/27202/3688/683/2994/158747/7369/301/7984/8793/6369/3512/965/961/8174/3269/1906/5196/4323/351/23765/6093/3603/5979/11136/2995/5319/6382/285/387/1398/9750/8995/2838/9672/51561/23759/3815/3690/102/2335/1048/3673/8729/3958/51135/8600/1893/51206/2059/5800/338/7857/6464/1130/6383/6777/6370/55512/23236/1910/3672/29108/7057/2150/7070/4345/6385/3204/5175/5595/7424/2155/23075/6558/5295/7010/23396/29/375056/3554/4920/27347/7474/947/3685/1901/482/1843/54209/5025/1621/3675/9023/80024/1235/6403/83483/7042/5919/2817/9353/1278/1907/57126/481/54795/1277/2241/5627/727/58494/4681/83700/90865/7056/3952/4254/4856/2621/51157/5764/6387/11117/857/23428/347/7060/4680/10451/80310/79148/9547/1524/2625
## GO:0006401 3669/55110/2237/5688/5317/5709/1869/10535/5698/1763/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/4939/5686/5695/4116/10213/7534/8761/23198/57819/5699/25804/5714/1994/5393/5702/9775/8882/5708/5692/10492/6039/5704/23404/6036/28960/56915/1981/55149/5683/7133/26986/9704/11157/26135/23019/5694/51690/26019/5578/10940/5718/23589/5682/4686/5716/80153/328/11044/6227/23318/5707/6132/1432/3646/9125/246243/6556/23644/192669/4869/5696/6142/4615/7356/7514/2081/9967/6202/6223/51441/6832/26523/2935/6741/5719/23381/5700/8531/80149/9261/5511/5717/7311/53918/29883/10128/27258/10197/677/6418/1660/55795/9887/339/4849/399664/65109/27257/55181/9349/27044/1656/5706/11187/10767/5710/22916/6181/6156/9567/23658/9238/10921/7529/2668/6217/2475/23367/11224/8635/54855/6206/6194/56006/10236/11340/5689/2332/6235/5720/6230/23016/6175/3183/6158/79072/6201/6233/8125/7316/5701/9491/2107/10605/5518/6187/5976/5711/23112/56829/5715/6170/3192/29102/8021/6143/6134/4848/3184/6176/22794/7314/9861/207/5705/6188/6192/79670/8570/1655/6193/6129/51013/6147/8741/23435/6222/25819/6208/79621/6210/6232/6204/253943/51594/6229/6228/79675/6167/6155/6128/6093/79727/8241/5520/4850/6152/6171/6161/6133/6160/22882/57472/6141/5073/9698/9475/7538/4736/7431/6191/6234/149041/9337/6169/6146/5515/6165/6203/6122/6136/6209/7432/6499/80349/1797/10949/25873/4292/57060/6164/23369/6231/6205/23293/6135/6050/6168/3842/10595/201626/7812/65110/192670/472/6157/6138/79066/5580/55802/90806/9652/9939/9045/5394/6159/3315/10140/51092/56339/23708/26058/79048/9811/678/6041/167227/9924/22849/6037/55629/22894/79899/7832/79068/1153
## GO:0043161 991/11065/55872/27338/983/4085/9212/6790/891/9232/9928/5347/701/80020/6502/7345/3429/5688/79734/5709/26271/5698/5693/5713/79139/5721/79016/5691/5685/7336/5690/5684/30009/5686/5695/10213/7353/409/23198/51377/5699/899/5714/5702/7480/9978/10952/5708/5692/10393/11124/7415/5704/5683/55741/10755/57805/1642/10221/5694/7321/57162/997/8454/5371/10134/5718/5682/55212/2932/5716/25906/1649/26263/5707/7184/3326/5696/5886/3309/1017/6599/1050/54431/8078/26272/55658/55432/5719/5700/84861/5717/7311/6613/23640/55666/10197/51433/51009/7706/9097/9683/5706/51322/7917/5710/55743/3093/55294/2768/4193/51035/26232/54476/6386/996/4534/4287/8451/5689/5720/23197/79845/7323/7328/6233/7316/5701/9491/57154/7324/5527/329/5516/11146/5711/5715/6477/23190/51465/51343/10524/11011/9184/7314/9861/7341/207/6907/5705/22933/4189/10613/80196/23392/4780/65992/55284/28951/6047/11315/267/369/2931/7327/11060/80028/51283/11253/6048/149603/9817/9709/7874/1263/23376/1161/1453/6872/10475/10299/253980/29978/7993/5663/55070/25898/10616/1855/23607/4092/10277/10869/9575/10956/79718/3300/79654/57003/10210/7126/25937/8881/6449/1452/5601/56893/5887/6135/6880/27252/863/3077/114088/5094/8554/10273/23274/9112/79089/1454/9529/8697/23291/57092/8473/79176/9695/6400/406/23411/2729/9655/8405/4130/5071/11160/54546/26268/1499/2295/8945/10206/1601/7844/408/6500/23429/29882/7320/8452/819/81545/7466/51185/2272/26234/23194/29997/80267/6469/90865/10769/5988/23327/857/25827/1191
## GO:0010498 991/27074/11065/55872/27338/983/4085/9212/6790/891/9232/9928/5347/701/80020/6502/7345/3429/5688/79734/5709/26271/5698/5693/5713/79139/5721/79016/5691/5685/23753/7336/5690/5684/30009/5686/5695/10213/7353/409/23198/51377/5699/899/5714/5702/7480/9978/10952/5708/5692/10393/348/11124/7415/5704/5683/55741/10755/57805/1642/10221/5694/7321/57162/5366/997/8454/5371/5582/9532/10134/5718/5682/55212/2932/5716/25906/8975/1649/26263/5707/7184/3326/5696/5886/3309/1017/6599/1050/54431/8078/26272/55658/55432/2876/5719/5700/84861/5717/7311/6613/23640/55666/10197/51433/51009/9306/7706/9097/9683/5706/80011/51322/7917/5710/55743/3093/55294/2768/4193/51035/5566/26232/54476/27339/6386/996/4534/4287/55270/8451/5689/2332/5720/23197/79845/7323/7328/6233/7316/5701/29761/9491/57154/7324/5527/329/5516/11146/5711/5715/6477/23190/51465/51343/10524/8507/10193/11011/550/9184/7314/9861/7341/207/6907/5705/22933/4189/10613/80196/23392/4780/65992/55284/28951/114881/6047/11315/267/369/2931/7327/11060/80028/51283/11253/6048/149603/9817/9709/7874/1263/23376/1161/1453/6872/11236/10475/1861/11345/10299/253980/29978/54788/7993/5663/55070/25898/10616/1855/23607/8450/51136/4092/10277/57333/10869/9575/10956/79718/3300/79654/57003/64844/10210/7126/25937/8881/6449/1452/5601/56893/5887/6135/6880/27252/863/7110/3077/26471/114088/5094/8554/10273/23274/9112/79089/1454/9529/8697/23291/57092/8473/80700/9992/79176/9695/65018/6400/406/23411/2729/5310/4779/9655/8405/4130/5071/11160/54546/26268/1499/2295/8945/10206/1601/7844/408/6500/23429/29882/7320/8452/819/81545/64285/7466/9024/51185/2272/54209/9810/26234/23194/29997/80267/210/6469/90865/10769/5988/23327/857/25827/1191
## GO:0140014 55143/991/9493/1062/4605/10403/23397/9787/11065/51203/22974/10460/4751/27338/4085/81930/81620/3832/7272/64151/9212/1111/9319/9055/3833/6790/891/24137/9928/11004/990/5347/29127/701/11130/10615/79075/9700/4288/9918/1063/26271/9585/9735/23310/2253/8877/9088/995/10051/1104/79866/5885/11200/940/1761/84722/54908/10592/8260/23212/23636/3619/7517/7039/5901/4733/7273/80218/655/1908/1950/5119/64793/11044/25906/29781/81929/1814/3834/3552/9126/3835/8379/56647/3837/3796/2069/23137/11331/685/84861/49856/27183/10300/7756/55795/55968/79998/56984/79003/23244/9183/3553/55125/51547/6683/10419/51510/79598/54998/5155/7175/996/8766/9555/6795/8243/25978/5518/55844/3630/3192/23383/9184/9587/2316/2801/9150/7040/22933/23172/10201/9820/4041/9525/8086/1906/23332/10600/26993/91782/57132/1613/29082/51451/51143/10735/6152/55719/10270/152185/387/8621/858/55755/79643/5300/26013/2059/55781/137886/8697/10274/472/55023/56155/55512/23363/4762/8658/546/3550/4779/25836/5925/27243/9371/25970/28984/126353/8452/1027/1028/3643/23113/23047/1843/324/8678/10040/10464/9639/23122/4926/23126/146691/79884/5159/3479/652
## GO:0043393 9212/6790/5347/4318/8767/6590/3925/79139/5499/578/119/7262/54496/11040/22943/409/9618/3434/8751/3433/6789/1020/23028/2641/348/1663/5901/7186/2011/2280/22919/6996/3297/9532/2932/3326/382/57761/6368/6714/10856/1522/6788/3309/2043/10763/2035/4931/4133/51068/1965/581/25805/7448/4221/27185/3586/55118/3676/80011/23641/5792/7074/60/10498/5566/51176/28996/5155/59343/1636/5465/1440/5599/54552/7015/4242/50937/1540/5516/22924/56341/567/3080/3955/1400/23394/284/7046/2801/207/2033/8536/3084/4233/2622/23228/11315/267/302/9709/5986/64853/351/6872/64400/148022/6093/7009/5663/6604/9026/1855/1398/9750/3300/650/5195/5515/4140/6708/3200/5092/25/3958/8600/9270/5899/3670/24144/5300/56998/81494/6135/3077/23032/10273/8189/1454/4824/53339/57669/6934/23129/56155/5580/4015/26119/4043/5310/9693/10014/5071/154/146057/118/5595/9759/10211/166/1601/4776/627/408/9236/2962/22873/7474/596/51185/948/64388/5334/65981/3397/4208/8829/51339/6653/10769/857/4035/10418/7049/9370/652
## GO:0046683 366/8061/5026/445/6772/7298/6770/6715/4830/5031/3753/15/5024/5983/10626/23028/7480/5027/50506/5743/10518/7490/10021/1080/5724/610/2230/328/24145/7184/6531/3309/5313/5970/682/5294/677/2185/9472/189/6647/7425/5078/5798/3553/218/343/10498/5020/7299/1645/65010/5207/1791/2889/7222/5028/329/5030/54434/6528/22953/5908/5906/6263/351/1609/6872/9127/5023/7430/5728/6382/2039/374/6781/4327/5972/51763/1261/53905/3488/5179/5322/4724/5187/2354/3709/6546/9693/3784/5139/6532/1373/7010/4435/1843/5025/196/10142/5311/5029/1902/54795/2353/1277/10411/50507/1393/358/7056/6720/5138/6678/2819/1811/1036/9370/5105
## GO:0050921 6278/3627/10563/7941/3576/6352/1230/6351/1236/6354/5641/9048/6375/3735/3929/5880/3965/7422/3569/7852/1240/3071/4192/1908/728/5054/63940/3570/57118/729230/3592/57402/719/811/708/1432/79647/6809/1233/8291/2358/6868/3579/1954/6363/199/8740/2185/23604/566/6346/972/7074/3146/9943/5155/6366/59341/2660/1826/5879/177/1435/5587/65125/7040/10488/846/4233/158747/7114/1906/8823/3603/347733/25865/9750/51561/102/659/3673/2260/4916/6810/7857/9647/7057/2150/3315/5595/7424/2155/23075/4088/3791/27347/7474/1901/54209/5025/5919/9353/1902/1907/8829/2247/1012/9037/2621/51157/5764/6387/4908/5159/8817/2152/7060/80310/9547
## GO:0060249 4751/55765/9212/4069/9156/5888/898/23413/952/8792/8842/7037/1001/9134/2237/22948/5984/4609/5111/7399/9401/641/1763/3574/92211/5427/23649/2296/11151/29887/5982/908/3351/5557/79888/24/3514/10576/5558/5424/54849/2072/3549/5052/491/5983/5880/7128/5588/4683/1445/7422/1020/9456/142/6850/4160/5027/3569/9545/5425/54107/63978/54433/3091/7517/10518/8290/1956/29123/580/6119/7203/79677/1525/6376/1134/79705/2271/11171/3920/10574/55505/675/5591/5594/10575/2651/54440/4585/5578/5371/5889/64858/5985/6441/23746/729230/328/1512/3326/3933/55651/2778/6121/760/6714/64127/796/65057/55226/7018/231/8550/3635/134/5514/3181/26272/6530/101/23137/10714/55183/23381/2547/6117/4361/3320/3848/9657/581/5426/79035/6722/6608/51208/2185/10728/7275/226/5284/6647/7099/5781/51052/7301/60/7014/6118/1756/26154/7287/8861/10694/4534/22954/4583/492/3845/54552/3183/7015/5213/2660/25978/51548/23154/5879/5028/5976/5030/171392/10413/2074/3192/567/1435/3184/859/5422/9842/4760/7040/7520/5881/5892/3988/537/10083/5609/51750/57030/7189/3512/54386/9215/71/545/2623/1436/55135/7874/7013/6672/10312/6010/2103/5023/2323/261734/81501/7011/5073/1258/57333/56667/3300/2624/1200/23498/3690/5741/10000/25937/7515/11272/51542/80351/11284/8600/7486/3178/4846/24144/8195/9531/23293/50485/79991/55277/2548/26277/6662/140609/5981/31/25861/9696/472/8029/1268/4015/54903/64081/25913/8658/1639/546/9455/783/5562/5394/4130/5071/10111/2067/3375/154/3315/56890/5925/118/5595/4763/1499/79738/26058/22891/825/490/4057/6794/9256/12/5745/27347/596/947/1901/2034/1472/4216/57804/2149/1490/1280/5025/80169/79618/2488/4753/167227/84059/221395/3104/10039/6584/5950/4588/5166/50507/54360/582/585/1513/53832/55812/213/58503/9079/57551/4982/9607/563/4117/284266/776/5304
## GO:0009124 7083/5214/7378/55526/7298/8833/9688/3101/26330/3948/54541/2821/57103/5471/7167/2584/30968/353/2597/5230/9631/10606/2023/5223/1633/100/5208/6396/5210/23165/5315/3251/158/142/55706/204/23636/5027/518/3692/3091/9551/506/3099/10165/7415/7372/4927/79902/509/10762/8480/55753/3607/11097/3939/5634/2618/5232/790/9972/81929/221823/2027/516/5211/2646/1716/5236/57122/272/5209/79023/54963/9818/5313/522/229/10476/51727/514/6521/1723/9605/23511/83440/3614/226/132/51085/515/230/471/23279/5631/2645/7175/5465/10632/4967/271/5213/5207/51548/498/11319/23225/10891/3630/8021/55312/53371/1854/6470/7040/5571/11277/4928/2026/3098/6901/159/7114/89/669/521/539/8086/405/513/9883/203/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/64077/51422/5224/5562/56848/9611/5198/9759/270/7157/957/5563/7084/3643/3615/54209/8604/201163/2203/2819/26137/3479/26289
## GO:0010639 991/10403/7153/4751/4085/81620/7272/9212/1111/9319/891/4171/5347/6712/3159/9700/8326/29767/1063/26271/3925/57103/1789/7111/11151/292/119/10288/10449/5885/664/706/2072/1761/3638/10059/409/10105/54908/4683/899/142/8260/23028/1786/8500/2395/9474/7454/7517/551/5216/672/84079/655/22919/1496/5810/1785/5716/55611/25906/26586/25842/3834/10432/2288/4869/6714/3720/6688/8379/65057/55226/26155/5217/822/5927/57175/2876/4133/9554/84861/10300/6710/7756/51025/4281/4342/6418/55795/339/79929/55607/5079/56984/5962/22823/50944/23256/3980/7014/5253/58526/11344/9530/79598/54998/7175/4591/4534/3998/9555/54552/7429/3183/7879/54978/10891/9463/51499/1859/55011/28978/51657/3192/55604/9181/8996/6598/10193/859/10533/207/23133/7520/29766/10382/4233/50943/4000/10565/51750/7114/10201/54386/9320/55818/23332/27429/4089/7013/6497/3020/29082/51451/51143/4976/10163/10677/9026/395/4331/6904/23063/79594/10013/2039/9882/6708/10519/9637/7515/25994/11078/1487/80351/2258/4682/51366/55755/7291/3976/3178/4134/8195/9531/23293/79991/8850/116985/51763/2648/26471/2059/114088/6711/23274/57379/5573/54880/26277/23329/10493/7249/6830/472/10395/598/65018/56155/5580/23081/23411/5756/4070/25913/8658/51332/546/8558/3550/6879/6622/5394/50810/5071/23189/10111/2067/56848/3375/56890/146057/118/27243/23409/9638/7157/4131/9738/23075/28984/7320/25876/3082/1901/1843/80169/324/8678/26036/55693/10040/6419/167227/23122/11075/6709/9353/5252/2934/201163/57731/25999/89795/24139/146691/585/85477/51474/4653/10391/89927/1191/57551/50853/80206/7349/25802/4117/3479/27124/652/4137
## GO:0070555 7850/2633/3576/952/8792/6352/3934/6347/8767/5688/5709/3654/5698/1051/8564/5693/1535/8372/5713/9705/5721/5691/1116/5685/7444/3383/11173/5690/5684/5686/5695/10213/2634/23198/5603/3965/1244/9100/5699/5714/5702/9978/3569/5708/5692/3091/5704/8808/3556/5683/958/5694/4792/57162/5578/8454/7334/1147/5718/140885/5682/5716/55611/6422/5707/3552/10010/54472/1326/6714/64127/8986/5696/4615/5719/5700/5970/80149/2056/2266/5717/7311/8878/2113/10197/5584/5706/8517/5710/3553/6885/4524/54726/5689/5720/6233/7316/5701/9491/10454/6401/5976/5711/171392/5715/3605/3037/7314/9861/5705/2244/5740/5600/58509/7189/961/1906/4790/351/7528/81792/3557/79155/149041/8692/23118/51135/4215/27063/6880/6095/10392/7035/6662/4824/23291/64848/23236/91807/2729/29108/6622/5595/9759/166/8945/3476/6500/10365/3373/3554/4435/1958/9252/3176/11213/57161/3551/9590/5105
## GO:0045787 9493/10403/79733/9787/11065/51203/983/4085/81620/2146/9212/1111/51514/6790/891/9928/1164/8061/990/29127/51512/1978/10615/1894/9700/898/10733/1163/2237/29899/440/994/8326/5111/26271/1869/8317/8941/9585/5641/2810/2253/79915/8877/995/1019/5885/11200/7027/940/1761/84722/3276/5457/6659/4282/7480/8013/23636/5629/1663/7517/6755/7039/1956/26189/5469/672/55835/1981/1908/10755/3297/1820/1950/675/23019/3054/10018/5578/835/5371/5889/79577/8091/5716/328/811/904/8444/1814/3552/2765/3326/9125/1977/7101/4869/6714/8563/3398/5017/5886/1017/7029/2124/3741/2069/1618/8851/1026/5514/9099/6868/23137/11331/685/581/199/1813/29883/26057/896/894/6665/643/51379/55795/4849/7023/3586/55968/81544/51289/9349/5962/58525/51085/3553/5781/6683/4193/10498/5566/998/1874/5155/7564/55124/7175/2627/5526/8451/8766/9555/22954/56979/7015/6795/9510/10514/6198/23476/26073/3630/22924/51499/3192/3955/4848/4040/5229/1845/207/7040/2033/29766/50838/22933/55367/5581/79848/65992/6733/6886/4041/80174/9525/6421/6737/1906/2852/5586/6210/6840/1263/351/1654/8738/51143/7051/2323/4850/6604/57472/8812/55719/7709/5048/4331/1778/8450/9475/3642/387/10869/9337/2301/5934/7161/1647/25/23326/56257/429/5325/57060/9984/23378/4204/79366/4656/2260/137886/4824/79447/64848/472/1025/6777/55023/84440/5890/55512/4762/23236/905/54623/8502/3280/2263/6990/5310/546/8558/81857/8929/5925/6532/5087/9371/7157/25970/9236/2735/28984/4303/7320/5914/3373/8452/1543/1027/85459/3643/7474/1490/8678/595/4194/4212/6419/5311/7042/10795/10370/5753/3306/4926/7832/4488/10769/2191/5159/4487/54361/4582/6926/3479/3169
## GO:0032103 6280/6279/6278/3627/10563/3620/7941/3576/8792/6352/1075/1230/712/5320/5650/8767/6351/1236/1051/136/6354/1535/1594/5641/26228/2867/6283/4064/3689/9048/2207/6375/3600/923/940/3735/3929/5603/1652/5880/3965/7422/4282/7124/79132/3569/4049/7097/7852/5743/23097/1956/1240/3071/6376/4192/1908/728/5054/63940/4792/7052/5578/3570/57118/3593/25818/3558/729230/3592/57402/10333/719/811/5345/27190/4878/708/1432/89870/79647/6809/1233/64127/2161/4615/8291/2896/6223/1050/2358/695/84818/6845/5340/101/5008/6868/3949/3579/1954/3606/6363/199/23643/26057/5734/2113/5294/10133/7292/8740/1660/2185/51704/23604/566/6346/972/7099/4988/1361/3553/7074/23633/654/3146/9943/3133/5155/6366/55601/59341/2660/1826/8723/5879/81565/975/5225/3684/177/8673/3605/353514/1435/5587/65125/22938/3717/2147/7040/10488/846/7132/4233/59067/9450/383/11315/158747/7114/8578/6369/7189/4889/1906/8823/351/8717/23765/29110/148022/183/3603/347733/718/25865/9698/4852/9575/9750/2693/51561/3818/8692/102/659/10318/3673/51284/8600/23369/7098/10392/55540/26471/4258/9173/2260/4916/6810/7857/6777/1268/9647/9180/4317/7057/2150/6622/350/26060/23328/3315/5595/7424/2155/23075/4088/10497/3791/27347/7474/1901/8840/54209/5025/5919/9353/1902/1907/8829/2247/2281/1012/4023/90865/7056/9037/5733/2621/51157/5764/6387/4908/5159/8817/5138/4035/2152/185/6863/3572/7060/80310/2167/9547
## GO:1901654 8061/1978/4821/952/6663/445/768/7298/10481/5111/1236/6770/6715/54541/4830/11184/114/1535/1364/1789/5723/5031/15/867/3208/1019/3383/706/6696/4507/4678/8751/1244/142/9076/7097/11335/551/1956/1536/28960/9131/4478/1080/5724/3297/1460/988/2230/790/811/6422/1977/27158/5732/6714/2770/2002/3239/231/1026/65985/5970/2056/6363/10062/109/8837/7292/2720/7023/552/23367/5020/6366/1646/2660/2782/5030/2796/6869/10413/3184/207/7040/5581/9314/383/11315/186/1829/1906/1946/23095/6155/4976/572/64754/23558/79820/10270/9475/1828/2693/2560/842/112/51389/6915/4916/4824/57828/31/2309/7200/598/1392/9101/23411/2354/7054/7057/5562/687/10499/56848/107/7337/2155/5729/1373/2908/5563/490/108/8648/10365/3371/11057/3490/8644/1843/5737/6586/196/595/5021/7042/9353/2308/5176/2353/4747/5468/358/5244/10628/6720/5764/857/5350/7043/367/7049/10266/4129
## GO:0003018 952/59272/133/2643/136/2730/2296/3162/3351/1812/3383/239/5467/9474/613/5743/8985/348/551/1956/5795/1908/7525/5724/5910/4880/151/5345/4878/6714/40/152/11156/3741/134/3792/5997/2243/2876/3579/10911/1113/2266/4842/3274/59342/566/6647/80005/2303/1816/1636/6865/59341/1131/80852/5028/3352/6869/3630/148/284/207/7040/846/634/4544/2244/1401/3156/186/3269/1906/2852/3779/135/6093/183/5023/116/9475/387/624/27345/8398/659/9270/4846/8195/56998/112/4879/59/3356/23576/2909/3827/2982/1910/6546/91807/3363/10242/2729/3672/5286/2150/1889/9732/5139/2702/6532/1373/490/7010/29/3043/3350/5592/2149/1621/4881/5797/5029/9353/1907/54795/3952/8864/477/857/1909/5138/4922/2697/9590/185/3357/7349/150/2053/10266/1311
## GO:0009127 5214/55526/8833/9688/3101/26330/3948/54541/2821/57103/5471/7167/2584/30968/353/2597/5230/9631/10606/2023/5223/100/5208/6396/5210/23165/5315/3251/158/142/55706/204/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/2618/5232/9972/81929/2027/516/5211/2646/5236/57122/272/5209/79023/9818/5313/522/229/10476/514/6521/9605/23511/83440/3614/226/132/51085/515/230/471/23279/2645/7175/5465/10632/4967/271/5213/5207/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/159/7114/89/669/521/539/8086/405/513/9883/203/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/64077/51422/5224/5562/56848/9611/5198/9759/270/7157/957/5563/3643/3615/54209/8604/201163/2203/2819/26137/3479/26289
## GO:0009168 5214/55526/8833/9688/3101/26330/3948/54541/2821/57103/5471/7167/2584/30968/353/2597/5230/9631/10606/2023/5223/100/5208/6396/5210/23165/5315/3251/158/142/55706/204/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/2618/5232/9972/81929/2027/516/5211/2646/5236/57122/272/5209/79023/9818/5313/522/229/10476/514/6521/9605/23511/83440/3614/226/132/51085/515/230/471/23279/2645/7175/5465/10632/4967/271/5213/5207/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/159/7114/89/669/521/539/8086/405/513/9883/203/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/64077/51422/5224/5562/56848/9611/5198/9759/270/7157/957/5563/3643/3615/54209/8604/201163/2203/2819/26137/3479/26289
## GO:0034599 9833/890/983/5163/2146/4318/1894/3934/2643/5111/51765/1719/1535/7296/2950/3162/4688/3066/54205/30001/51022/8877/8876/7444/664/2539/7295/8807/5831/10280/5052/5603/4689/7128/10105/215/142/468/2395/8013/7124/3569/221/3091/7226/1956/5536/7186/1536/23657/9131/1421/655/4248/3297/4504/5034/5594/10131/9588/1612/5371/2626/1147/140885/55290/1785/328/10333/54929/6780/1728/6714/4841/1017/9283/57707/695/79400/25793/2876/5970/80149/5660/1965/27035/79109/199/2861/2176/2113/9361/8837/3586/337/6647/7099/2534/55294/5829/5625/2168/2877/4193/2119/5978/4170/1545/51384/5151/11235/2882/5599/488/2936/3747/10276/4353/7001/10891/5796/3630/26287/2021/7471/8996/4217/5587/8428/3184/10533/207/3717/22933/6188/4233/11277/9314/4780/22850/8575/5893/383/5156/11315/10494/6421/7225/27429/4358/405/5074/23400/10587/5598/318/10645/3725/10013/59338/10935/1398/847/23334/4255/23064/25/11179/55074/22925/4846/5601/2983/51389/1800/29957/8737/538/9529/23135/9973/5179/2309/79912/5076/65018/7703/55512/5580/55139/4548/406/23411/9104/4779/5562/6622/5071/10314/3315/8321/5595/10550/1499/7157/2880/5563/6649/6778/5164/10365/3082/2878/4602/55364/558/596/2034/8644/7168/948/4314/8678/7248/4929/5311/2308/2353/2241/79899/10516/50507/358/51314/2530/7350/4313/51157/1471/388/57332/10202/80310/4137
## GO:0007050 2305/79733/983/6790/891/1033/51512/3576/339479/8326/4609/5111/28227/1869/1029/8872/10669/3458/9585/4436/2810/5496/1031/995/1019/274/11200/7027/3659/58528/4683/3467/3276/5457/1020/6659/4282/5604/7480/1030/580/90480/672/54766/1820/23019/835/5371/3593/3623/8091/3592/6300/79648/1032/811/1649/2765/3326/9125/3398/56475/2081/1017/7029/2124/8851/1026/208/581/29883/6009/51379/5621/4849/7023/4291/9349/51085/27352/4193/10498/5566/9238/4851/5608/2475/64223/1874/3265/2627/5526/10634/6657/10542/10514/28956/64121/51499/23645/1982/4848/7046/4760/7040/2033/5571/55367/11186/10670/2852/7251/1263/8738/5565/1021/5494/4850/51147/57472/8812/7709/4853/3642/9337/2301/5934/7161/51776/1647/25/6498/5325/57060/23378/79366/8850/1877/92335/1022/4656/10595/1620/4824/463/6934/472/1025/51422/57795/5310/7057/5562/3611/81857/26959/10668/3624/8929/8649/5925/3664/1718/7157/51719/4088/5563/22846/6794/5564/28984/4303/10325/1027/1028/322/2619/1843/324/595/4194/6419/5311/11180/7042/10795/323/81617/2620/8522/7832/10769/2621/2191/9863/4582
## GO:0042113 9156/1503/3149/952/1493/7037/56833/8326/51237/1054/3574/3575/22806/7412/959/27242/5336/5449/4436/11314/79915/1880/578/3329/7468/2956/5788/9466/30009/100/7374/940/64092/939/7128/4683/930/4282/6850/3569/51293/2213/54900/5795/3071/3596/7293/1380/7305/958/5591/55024/5771/9734/57162/3175/3558/3623/3589/931/6422/1137/4914/836/973/1141/64127/3398/5579/1316/4332/3635/1026/695/23308/64421/6868/684/55183/581/10892/643/677/7292/55795/2185/3586/5293/972/7535/9025/3676/7099/3718/5897/22976/1015/3565/7163/2302/841/222487/5777/3956/4242/975/5452/1540/602/6929/3955/3516/23529/8935/7040/2033/4189/50943/59067/3688/23228/8741/5585/4323/10312/5074/148022/3981/200081/572/4853/51341/54537/79155/7462/933/149041/3815/25/4292/9984/55619/8227/10538/5896/57379/6670/22890/6830/472/6777/5580/29760/3456/9730/10014/7158/3624/2067/2874/9759/7157/23075/3476/8660/5295/55846/6778/3567/54856/4066/604/2322/596/678/196/1235/9452/3087/4208/10039/27434/7494/10451
## GO:0051251 29851/952/1493/6352/7037/3932/80380/3559/6347/8767/1236/10859/55423/3574/3575/4860/4067/7412/864/3458/959/11151/4436/942/79915/1880/3329/8876/10288/7468/5788/916/30009/6375/100/3600/3549/923/940/939/5588/3965/9308/10808/1445/865/10148/4282/4690/6850/912/3569/5133/8772/51293/8440/10125/3071/3135/164/8808/100133941/3596/4192/7293/7305/7525/958/9402/57162/3134/54440/3593/8651/3558/9760/729230/3592/51571/3109/11006/1326/1141/5058/6714/64127/970/2885/920/3635/1026/695/23308/101/55183/941/3606/2056/6363/199/10892/7292/8740/55795/11221/10385/11126/972/4352/7535/7409/3707/7099/1948/2534/3553/5062/1604/5781/3146/22976/3565/998/3133/5777/9093/9092/5063/6366/3956/63925/9840/3113/8943/1947/5879/975/1540/3142/6869/177/3916/8915/23529/5290/207/7040/51043/2319/6188/50943/59067/3115/114548/301/7189/961/8741/1803/11148/1949/4323/148022/572/2323/3566/8764/3594/30835/54537/79155/387/2736/51561/6708/5170/8600/4292/5896/22890/8546/57178/6777/3280/29108/9655/7158/7070/1960/8660/5295/6778/3567/5914/4602/604/558/596/5590/4179/4208/7048/79679/6469/3485/3952/7494/2621/857/7704/2737/6863/3572/3479/10451/2625
## GO:0071347 7850/2633/3576/6352/3934/6347/8767/5688/5709/3654/5698/1051/8564/5693/8372/5713/9705/5721/5691/1116/5685/7444/3383/11173/5690/5684/5686/5695/10213/2634/23198/5603/1244/9100/5699/5714/5702/9978/3569/5708/5692/3091/5704/8808/3556/5683/958/5694/4792/57162/8454/7334/1147/5718/140885/5682/5716/55611/6422/5707/3552/10010/54472/1326/64127/8986/5696/4615/5719/5700/5970/80149/2266/5717/7311/8878/10197/5706/8517/5710/3553/6885/54726/5689/5720/6233/7316/5701/9491/10454/5976/5711/171392/5715/3605/3037/7314/9861/5705/2244/5740/5600/58509/7189/961/1906/4790/7528/81792/3557/79155/149041/8692/23118/51135/4215/27063/6095/10392/7035/6662/4824/23291/23236/91807/29108/5595/8945/6500/10365/3373/3554/1958/9252/11213/57161/3551/9590/5105
## GO:0008217 10874/59272/133/2643/1535/2642/3162/5973/4159/6870/3291/79924/4624/5743/551/1908/5724/6518/6446/153/55328/151/5345/1814/4878/50848/2784/10135/40/1522/3398/4883/774/9283/134/522/623/10911/27035/1113/1813/680/7137/59342/6647/552/80763/5443/1816/1585/5331/5020/128/5155/1636/5465/80852/6869/476/148/65125/81285/22953/5144/186/2931/4041/83988/4923/1906/2028/183/5023/10159/4852/387/1584/4987/8620/659/2981/51752/5972/27131/4846/8195/4204/1579/64167/5800/4879/59/23576/1392/1268/554/2982/1910/6296/7026/1215/89797/5742/2150/57835/1889/2702/7424/2013/4088/490/4882/94/27347/3043/947/7168/2149/5025/4881/5021/1278/1907/1511/4311/5468/3952/585/477/2621/10391/1909/5125/11188/10631/4886/2697/185/6863/1359/367/7349/66002/9607/2053/18/10266/9370/10699
## GO:0048015 55165/23413/6352/23007/4067/867/10507/1411/940/5467/7124/1956/10125/5724/3059/56005/5594/3756/10617/708/4914/5747/6714/2688/4883/10456/4586/5008/3606/2056/23533/5291/5294/677/2321/8394/10385/11126/2492/5293/5305/8395/2534/7301/79837/51384/5155/5777/5526/1440/6198/5527/3630/4150/4058/55615/9368/284/5296/5290/207/3717/2147/22933/634/26051/9314/5156/5270/1906/2852/1436/2064/5154/183/7430/767/8396/55763/5728/8870/387/59338/847/3815/80243/7291/4935/2549/2260/4916/6662/4824/7249/5649/3356/22876/8473/2268/23411/2065/2150/9846/113791/7337/5595/4763/957/8660/5295/7010/23396/3082/3791/2322/2149/8678/6403/4734/4803/219699/7042/29997/2934/2057/79899/5863/3952/3480/4653/4908/5159/25827/5364/5783/4915/3357/3667/1634/3479/2066/2625
## GO:1902749 22974/4751/983/9212/1111/51514/6790/891/9928/3161/5347/51512/10733/54801/29980/1063/5688/5709/26271/641/5698/5693/8317/7277/5713/5721/5691/79915/5685/1019/5690/5684/5885/5686/5695/203068/10213/7283/23198/8883/4683/10383/63967/5699/5714/5702/7480/9978/5708/5692/5704/672/55835/5683/22919/9793/5694/55722/8454/5889/5718/5682/8091/5716/79959/8444/5707/60561/29086/55559/4957/4869/5696/22809/9702/5719/5700/3320/5717/27183/60672/10197/23354/5706/5710/55125/5566/22976/1069/5689/8766/9555/79184/5720/10121/5701/9491/8636/5518/23476/5711/5715/9662/8655/11258/11190/51343/11116/9861/5705/10382/22994/22897/80174/9525/23332/79621/7531/351/5116/1453/9577/6604/5048/8555/79441/1778/80321/51347/10540/22995/51720/55755/4204/11064/55031/22981/1454/472/5569/5890/1112/9344/7846/8481/1639/8929/5087/80254/7157/95681/9738/6500/55142/4303/80184/7840/80169/595/1781/10142/9814/54820/80279/23194/29997/25949/5108/3306/5577/2273/5988/57551/51149
## GO:0060537 983/891/6664/65009/5307/1482/1063/7504/6943/2296/23764/8557/2253/58/467/2539/3475/22943/3549/409/29895/2138/6285/57817/2254/7422/3344/9328/5457/1020/4624/9456/7480/9474/5629/6262/688/3776/7273/5469/7490/1959/1525/1134/655/27101/2280/1144/5594/6261/9734/88/2047/8819/9421/55636/2626/10038/811/9148/26263/4878/1432/7135/8928/79647/54583/5058/3720/3398/26576/59269/4205/3792/64220/5081/5292/5997/2876/8531/10791/58529/2139/4654/6722/6608/5915/6665/8837/8324/2010/7137/5079/4617/9472/1948/6256/2303/7472/6910/8048/4851/51176/2475/140465/2627/5465/4534/4634/6495/2660/79784/51548/50937/22989/3142/10269/10891/27302/10362/10413/3192/4625/6899/26287/3236/653/1739/26585/3516/4209/25776/148/56999/859/26281/7046/4729/57158/9150/22953/5318/7040/2033/668/22933/3084/3156/4000/657/5600/3688/6901/5999/5156/186/89/56983/4633/1829/1655/2931/79810/1906/3235/6840/4089/7134/11214/7528/6497/4607/25976/26508/183/8131/2248/8736/9318/9242/10818/5728/90410/4092/10277/387/4868/10869/9750/650/10052/4618/7161/1310/1938/858/1385/51778/7291/4637/27063/3670/5300/9794/6909/4656/2648/26471/8854/1832/5573/60485/3488/2260/8737/23135/10611/6662/55692/2022/70/64321/6474/10529/56603/23363/4638/4015/7093/10848/406/905/2065/8516/7026/6546/91807/2263/90/5562/8289/7139/8929/7881/6443/9975/5925/9172/55909/5530/4086/2702/6416/4763/9759/10211/1499/607/10521/23493/4088/2735/6548/5914/1301/4211/1958/7474/596/26011/1901/7168/4628/844/7248/5311/7042/57493/4208/2817/7048/201163/2353/5950/2247/50507/6469/1281/8470/2317/10324/7832/6444/5159/857/57496/10512/23414/5350/4223/10472/2697/3131/80206/1634/7049/6926/3479/2006/4629/652/4036/2066
## GO:0008016 10874/23630/1824/59272/133/2643/3768/1482/3775/3757/4159/6870/779/3753/483/9631/274/100/491/147/55151/4624/6262/5142/26251/1525/1573/10539/10021/786/1908/4880/6261/3777/2626/3558/153/55328/4878/1839/30820/9446/10368/774/3741/134/4205/53826/6786/5997/522/10371/3710/3761/156/80149/1113/1813/4842/6327/5294/6331/6336/7067/7137/552/80763/6271/4193/4635/3762/8048/5566/1756/2740/5020/1674/781/492/53822/4634/2775/784/488/10269/27302/4625/785/1739/7068/478/476/148/859/2316/7341/1193/5318/5144/3717/5349/3759/778/5999/486/186/140/4633/1829/487/10369/2931/6263/1906/3770/7531/6324/493/6640/183/30819/10659/8913/10060/4092/782/10345/3728/489/10052/6781/8620/8912/64091/2258/4846/6909/287/1832/3781/2548/10768/9722/9992/3760/6543/3750/3709/7054/6546/783/30845/7139/27091/3784/1760/2702/9759/10265/8654/23493/490/4882/845/6548/29119/1129/29098/2034/482/7168/27129/1490/5025/4881/10142/844/444/7042/3270/6717/3752/1907/57731/481/54795/2281/55799/7220/3751/2946/477/27092/6720/857/775/23171/5350/55800/2697/6863/7349/9254/6505/5348/776/3708/10699/60598
## GO:0002703 3902/7037/91543/10859/136/3575/4067/3162/4436/11314/79915/3329/10225/7468/3689/5788/259197/9466/4068/9188/30009/2207/6375/8807/940/23586/409/5880/3965/6318/6850/7124/5027/3569/4049/56253/1378/613/2208/8772/7454/5817/7186/2213/10125/3135/164/3596/7133/958/5724/1773/9437/3134/54440/57102/3593/30817/3558/729230/3592/51571/3805/4878/8832/64127/5272/6372/725/695/6845/684/55183/7855/3606/10666/10892/7292/3586/11126/7409/7099/3553/3718/3146/3598/6885/22976/3565/8809/3133/2302/5777/1653/8723/975/3684/177/8673/722/567/3916/23529/7040/634/50943/59067/383/114548/7189/1178/8741/8417/148022/3566/56940/718/1776/4092/3594/54537/1398/2624/51561/2294/23705/5170/4292/9984/7098/3440/3077/6813/6810/22890/5819/6830/6777/2242/3456/2268/5532/7158/2150/56848/9846/57506/6778/29/100507436/604/3554/81545/5590/10039/57126/54795/6812/3952/3263/2625
## GO:0050730 6352/51378/7804/8767/11009/3574/54892/4067/3458/11314/3066/26228/2253/10507/3689/5788/916/3383/1795/3600/64092/409/1464/4771/7422/4282/6850/5912/7124/3569/7039/1956/8440/5795/100133941/79705/9021/3596/7525/958/3297/1950/3059/55024/5771/3570/3593/8651/3558/3592/885/3589/9148/6422/1839/7006/6714/6690/10006/2688/57091/920/2069/134/10456/55620/2043/5008/6868/941/57826/3606/2056/9244/29883/5621/3562/2185/51704/7448/5770/972/2534/5062/55294/3565/2475/5155/5777/1636/5526/1440/3273/5518/975/23568/2074/199731/58533/9181/353514/26585/11116/148/23394/23529/284/30844/3717/7040/960/3084/3678/7132/5581/59067/1741/683/1742/10019/8826/6886/1437/1946/2623/1436/7251/351/1609/84619/6774/5154/183/5663/56940/2039/8995/5515/51561/8692/374/3815/3690/25/3976/23624/79643/3670/3440/1270/4038/25998/6464/5649/3356/10188/22876/5168/5580/79893/2065/1856/3280/9655/7070/5175/7157/2209/627/2252/3567/4739/3082/2915/2322/5590/9094/1942/948/54209/2261/10464/8829/5753/50507/1272/9961/3952/56034/4254/2621/9052/4908/3263/857/2045/2690/4915/3572/150/7060/1489/3479/80310/9370/2066
## GO:0048017 55165/23413/6352/23007/4067/867/10507/1411/940/5467/7124/1956/10125/5724/3059/56005/5594/3756/10617/708/4914/5747/6714/2688/4883/10456/4586/5008/3606/2056/23533/5291/5294/677/2321/8394/10385/11126/2492/5293/5305/8395/2534/7301/79837/51384/5155/5777/5526/1440/5337/6198/5527/3630/4150/4058/55615/9368/284/5296/5290/207/3717/2147/22933/634/26051/9314/5156/5270/1906/2852/1436/2064/5154/183/7430/767/8396/55763/5728/8870/387/59338/847/3815/5338/80243/7291/4935/2549/2260/4916/6662/4824/7249/5649/3356/22876/8473/2268/23411/2065/2150/9846/113791/7337/5595/4763/957/8660/5295/7010/23396/3082/3791/2322/2149/8678/6403/4734/4803/219699/7042/29997/2934/2057/79899/5863/3952/3480/4653/4908/5159/25827/5364/5783/4915/3357/3667/1634/3479/2066/2625
## GO:0050852 50852/2633/3932/3126/8767/2533/5688/917/5709/28639/1236/5698/919/915/5693/5713/27242/5336/9473/3702/11314/5721/28755/5691/30968/3783/5685/5788/916/5690/5684/3937/5686/5695/100/10213/23198/5588/1445/5699/5714/26191/4690/5702/5708/7454/5692/3119/5704/5142/5795/79037/5683/9402/5594/5694/5771/54542/8891/8454/7334/1147/5718/5682/5716/8934/11006/7294/5707/3122/5058/5696/920/3635/1399/27040/5719/5700/5970/80149/5717/10666/10892/5291/10197/5621/5335/10385/11126/5293/7535/5706/8517/2534/5710/5062/6885/3265/5777/5689/5063/5720/11119/9840/3113/784/5701/9491/975/1540/5711/5715/1967/8915/5296/5290/9861/65125/8890/5144/1845/5705/6188/634/50943/778/3115/7189/8892/4790/5074/7430/5663/23180/56940/10616/8893/25865/3120/149041/23118/25/5170/3958/5819/23291/7070/1997/8945/8631/163486/6500/5295/6794/3551/3117/2625
## GO:0045930 991/10403/79733/983/4085/81620/2146/7272/9212/1111/9319/6790/891/5347/701/51512/11130/339479/54962/6347/29980/699/1063/5111/5688/5709/26271/55055/641/1869/1029/5698/55159/5693/5713/2296/9735/5721/10950/2810/5691/1031/995/5685/1019/5690/5684/5885/5686/5695/11200/10263/7027/10213/23198/8883/54908/4683/3276/63967/5699/6659/5714/8260/5702/7124/1030/9978/5708/5692/7517/5704/1956/90480/672/655/8328/5683/1820/23019/5591/5694/835/8454/5371/64858/5718/5682/79577/8091/79648/5716/23513/1032/25906/5707/60561/3834/2765/9125/23026/29117/8379/5017/5696/1017/7029/5546/1026/5514/25793/7077/11170/5719/5700/581/79035/84861/5717/27183/29883/60672/7756/10197/7465/677/55795/4849/3586/10385/56984/5706/131601/9183/5710/55743/4193/10498/6118/10457/1874/9656/3265/54998/6194/7175/5689/5720/5701/9491/5711/5715/51499/9368/1739/4848/9587/9861/51696/7040/2033/5705/1386/55367/9314/10201/54475/65123/1263/8738/51451/51143/1021/5774/4850/6152/57472/57165/5728/51347/9337/5934/51776/1647/25/7976/989/55755/5325/57060/1877/64859/55031/138151/8737/4824/64848/472/598/56155/1112/9344/90806/8658/546/3550/5884/10106/5925/1499/25959/7157/79960/26058/4088/6500/51065/28984/4303/7508/3275/604/1027/2619/596/79858/10217/1843/324/678/595/58190/4194/10040/6419/5311/80279/23194/29997/51339/25949/146691/7832/10769/2191/2273/5988/57551/9863/51149/4582/652
## GO:0050806 6347/8564/114/5641/1812/10288/10059/409/6285/1020/7143/7124/2048/5743/348/1956/3814/7305/5594/729230/2932/6780/4914/6809/1141/7101/760/91683/134/6507/2043/3710/11170/4900/1813/8878/3799/22997/5621/2185/55607/2902/50944/9001/54413/5020/7476/23316/6865/2332/9699/784/6804/6616/6869/177/3630/23373/5865/54434/148/22941/5581/5999/5270/1742/4923/2898/2852/23385/351/4355/2903/10458/22999/135/253980/23237/116/27020/5728/1855/2695/25/1385/1815/9211/4204/22930/9378/10636/6810/5913/56729/5649/65018/1392/6543/1268/10858/766/783/22871/23025/6622/154/107/27065/4763/10211/4776/10497/2752/4920/5590/5021/6844/26045/4311/6812/10769/5764/3908/8938/4915/6857/6863/18/776/1524
## GO:0009156 5214/7378/55526/8833/9688/3101/26330/3948/54541/2821/57103/5471/7167/2584/30968/353/2597/5230/9631/10606/2023/5223/100/5208/6396/5210/23165/5315/3251/158/142/55706/204/23636/5027/518/3692/3091/9551/506/3099/10165/7415/7372/4927/79902/509/10762/8480/55753/3607/11097/3939/5634/2618/5232/790/9972/81929/221823/2027/516/5211/2646/5236/57122/272/5209/79023/54963/9818/5313/522/229/10476/51727/514/6521/1723/9605/23511/83440/3614/226/132/51085/515/230/471/23279/5631/2645/7175/5465/10632/4967/271/5213/5207/51548/498/11319/23225/10891/3630/8021/55312/53371/7040/5571/11277/4928/2026/3098/6901/159/7114/89/669/521/539/8086/405/513/9883/203/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/64077/51422/5224/5562/56848/9611/5198/9759/270/7157/957/5563/3643/3615/54209/8604/201163/2203/2819/26137/3479/26289
## GO:0006733 23475/952/5214/4199/55526/23590/9688/3101/26330/54541/4860/8564/2821/5226/7086/57103/4200/8942/3418/7167/27235/2584/2597/5230/9631/2023/2539/5223/8514/57017/5208/6888/6396/4190/5210/23165/5315/55706/5160/51805/23636/5027/3692/5743/22934/3091/3099/7415/4927/79902/10762/8480/55753/3607/25874/11097/3939/8050/3417/5232/55328/9972/2820/9390/81929/2027/5211/2646/51071/5236/57122/10135/5209/79023/9818/4191/5313/229/2326/27035/6521/23511/83440/1738/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/25796/10891/3630/29914/8021/53371/5571/11277/4928/2026/3156/5740/683/3098/89/669/8086/56997/405/9883/6774/2103/57107/51341/51004/5903/4907/51660/23498/2327/348995/54956/54981/55746/863/4656/9540/27231/26471/23729/51181/3356/79934/8473/55739/51422/5224/5562/9611/9759/9563/10229/4837/5162/7157/957/55191/5563/3643/8604/64080/51117/2203/2819/23171/26137/3479
## GO:0002367 55765/91543/10859/336/3162/2867/3329/10225/9188/30009/2207/6375/8807/23586/3735/4282/9474/8013/7124/3569/7097/7186/3135/7133/3134/54440/3593/729230/3592/3805/1432/6556/64127/695/684/7855/3606/1113/10892/7292/51704/3586/11126/972/7099/3553/1604/3718/6885/3565/8809/3133/335/1653/975/10945/567/1739/8915/284/7040/79004/50943/3098/383/114548/7189/1178/148022/4092/8482/3815/7098/3440/3077/9865/3456/23411/2150/56848/5595/3140/57506/163486/604/3554/7474/5590/948/7042/54795/2621/11213/7043/2625
## GO:0036294 890/5163/891/1978/51378/768/4609/10397/5688/5709/1869/3654/5698/5693/57103/5713/3162/5721/5691/30001/867/5685/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/10213/10059/23198/2792/6285/7422/5699/5714/6921/1788/6839/5467/27087/468/5702/9978/5165/5708/5743/5692/3091/5704/3776/1536/9131/655/5683/4504/5034/5694/3777/5366/5718/5682/5716/6422/360/5707/1179/54583/10135/6714/5696/101/11331/5719/5700/2056/5717/7311/26608/10197/8837/8453/677/4352/5706/5710/79723/2168/4193/4851/28996/2475/2627/5689/5720/7015/784/6233/7316/5701/9491/2782/50809/10891/6923/5711/9463/5715/2021/8996/3516/7314/9861/207/2033/5705/846/22933/5581/4780/4000/5740/55662/7225/8994/1906/1263/405/3779/64506/4976/572/7009/112399/5728/9475/10869/6781/9520/26355/64344/25994/7291/27063/571/6095/25950/10273/538/4824/6517/2309/23576/65018/23411/6546/5562/4985/23409/6326/7157/1387/665/28984/6548/1958/596/947/2034/79625/4194/7248/29997/10370/358/3751/5764/5105/8614
## GO:0051648 9493/23413/1001/1075/5871/136/1138/321/3351/1812/10652/4647/10059/80128/6396/1020/10675/8224/5027/1000/4644/7039/10125/2153/10755/28964/10113/1142/5582/10959/55212/1785/2932/51693/23513/1137/6809/54732/1141/9381/1522/91683/5579/6855/8447/27095/5265/10342/5217/6845/10802/83696/10948/8573/4133/9554/1813/8541/3799/5294/2348/1780/64149/8615/3676/5873/8517/8976/5861/9515/23256/54413/5537/90411/4905/594855/59349/8618/547/7476/9342/3998/8766/2332/9699/10175/6853/8943/488/434/6804/5028/6616/5030/51128/10749/81876/6854/3798/55291/26276/10972/22870/6811/815/148/2801/4640/5908/65082/553115/5906/26059/1176/9871/9570/9783/22920/8867/7109/23332/81/320/2901/27253/1453/23095/5868/1861/9230/8775/22999/135/5023/54874/2647/5663/11196/22872/5048/10282/5728/1855/8120/29058/3064/10540/10053/374/357/9632/8729/1488/4033/11127/4935/9751/23285/8195/55062/1201/22930/966/8973/114088/5864/55435/10427/79090/8546/6399/6517/3356/2157/65018/1268/4641/9919/2890/783/22871/6622/55717/5071/107/10947/10484/9581/1499/9371/10497/64689/27445/23396/23243/23621/63971/8452/1129/9024/5590/9162/6843/6844/9900/55686/10016/23122/8825/8448/64284/8773/6812/80208/585/93664/1294/79443/79953/6857/55638/9863/776/79083
## GO:0043270 3627/6373/4283/23630/8792/6352/5026/59272/1230/6347/1482/6351/1051/8564/3458/1520/5336/51083/5031/3757/1812/578/3753/5024/483/2539/706/6375/409/3359/930/9456/4282/468/5027/2641/2048/6262/348/57214/551/23566/6376/3596/1080/1908/5724/88/2257/8811/117/6769/1785/51393/729230/10991/885/4878/23204/375346/9002/1141/9446/10368/920/2745/134/6845/6786/10063/623/8573/581/1813/4842/3799/6331/5335/9472/552/3553/2902/6271/6754/6569/9001/54413/1756/5608/3746/2668/5020/335/5155/2847/781/6865/784/7222/8723/3747/2170/5028/9914/8673/5865/51499/9368/2631/1739/353514/815/2316/11261/57158/7341/22953/5318/207/2147/846/3759/2916/11315/7114/10369/3060/4923/7225/1906/81/2852/6529/6324/3779/135/183/30819/5023/5663/5319/57165/8787/3064/10345/799/6781/8398/25/288/5170/3958/22925/8600/4986/1815/10347/11027/1579/22930/287/10768/5649/9722/10396/9992/65018/1392/5580/4638/9104/51761/783/6622/30845/7070/3784/56848/154/6532/825/490/10268/6548/3736/27347/54997/7466/482/2149/54209/5025/4887/10142/844/187/5311/2259/6717/481/5243/1272/3306/6812/7220/3952/2946/5244/27092/2273/6387/5159/857/23171/55800/7349/150/5348/18/776/5174
## GO:0051052 2305/79733/4751/10635/890/983/81620/9212/1111/990/79075/5888/7037/23560/54962/55010/22948/5984/29980/3838/4609/3001/5111/26271/51053/641/1763/1054/3575/8317/57103/4436/5982/908/79915/30968/10576/7468/2956/7398/5788/7336/2140/9466/30009/11200/7027/2072/79000/940/409/5983/2138/5588/8914/4683/54069/7913/6282/142/23028/1786/3014/5531/22880/3569/7454/63978/1663/11124/3776/1956/7490/10721/7203/9131/672/27101/958/3297/10574/675/4880/5591/5594/10575/27000/2264/79977/5371/5582/7334/3558/5985/8091/55611/151987/54929/9126/29086/3326/10097/4869/6714/6688/65057/1017/55226/8550/2069/1026/5514/3181/26272/55183/23381/4931/4361/3320/400410/581/25849/79035/26057/51025/3836/4142/10155/7292/1660/339/2185/10728/4221/3586/9025/58525/23244/55704/55294/10419/29947/3980/3146/81931/7014/6118/22976/3565/54726/10694/3265/9400/5155/59343/1676/8451/79184/5063/54552/56979/3183/23514/8243/51548/5879/5518/2521/5976/10269/10891/64110/2074/3192/8239/23347/2021/3364/26585/3184/23529/5290/9869/10533/207/7040/7520/6188/8932/50943/9314/64710/5609/5893/51750/10919/3060/54386/80174/9320/8741/4968/545/2658/7270/2852/55135/143/7874/7013/64210/317/55729/10735/253980/9577/53615/56154/55719/5073/3725/23063/25865/54537/5515/2736/6018/4255/51720/55196/659/7126/7515/80351/51366/11284/7291/7486/4292/3178/27063/9984/24144/56893/23293/4204/79991/4862/57379/5429/2260/26277/140609/6830/472/1025/5580/4297/23411/29072/25913/8658/546/9104/5930/7158/5394/10111/4437/2067/5884/466/57343/23201/5595/6416/1499/54737/7157/25970/22891/3399/56897/6778/2735/28984/7320/94/3082/306/604/23272/322/4216/1843/80169/55693/79618/6419/167227/253461/10039/55086/201163/2247/5468/50507/27136/7644/1149/5159/1471/57332/64061/2697/51149/7349/9370/1602/2625
## GO:0002698 56833/3559/10859/3575/336/3162/11314/10225/5788/30009/6375/7353/409/3965/6318/7124/79132/10875/83737/1378/613/63906/2213/3135/5591/4277/54542/11326/3134/3558/729230/6397/3805/708/8832/5272/2896/6223/725/64771/684/80149/55666/7292/11221/3586/1604/3718/3598/3133/2302/335/5777/3142/3630/722/284/7040/51043/79004/634/50943/5495/383/6895/26146/301/961/5169/10475/7009/3566/56940/4092/79594/1398/933/8780/149041/7105/2294/3958/79671/9984/966/3440/3077/5094/3456/9655/5532/2/26060/710/26007/29/100507436/604/54941/11005/7042/10039/2241/90865/11213/5654/7043
## GO:0019318 5163/5214/3101/26330/4938/6576/2821/57103/2642/7167/2584/2171/5499/2529/2597/5230/2023/467/7262/2539/5223/5208/1737/5106/4190/5210/5315/2542/5467/10993/5160/468/2805/7124/5165/2641/3099/10165/57001/7915/80183/1642/5771/3607/3175/5366/5161/1468/1374/2932/2820/7355/1432/2027/5211/2784/2646/3170/2528/5236/6714/3795/2582/5209/231/8445/8789/2592/10690/208/10327/4191/5313/229/3636/5500/8402/83440/2720/680/4351/51094/226/3486/2806/230/57223/10447/2683/3651/2526/5443/2475/2645/2523/5465/2538/5213/5207/1390/10269/10891/23178/3630/5290/8277/207/60343/2033/2026/5091/3098/89/2527/2931/4041/23509/669/114897/5509/10776/1609/10296/140710/51451/2103/572/8534/27230/2822/2524/23275/5372/5903/5741/6652/8850/6095/51763/2648/23038/283871/3488/2548/57818/51181/8473/5239/23417/23411/5224/9104/4779/8790/5562/5071/10499/1353/1407/1196/9563/5162/7157/26007/5261/92579/8660/5164/4123/80201/283450/3643/2517/8604/2308/3953/5950/10580/5166/216/2530/3952/8864/6097/2203/2819/7033/51363/32/5167/11188/4485/4886/347/3487/3667/3479/114899/9370/5105/7021
## GO:0002474 6890/10437/5688/5709/5698/5693/1535/5713/4688/5721/5691/5685/5690/5684/5686/5695/2210/10213/23198/4689/6891/6396/5699/5714/5702/5708/5692/5704/1536/3135/5683/55080/50489/5694/3134/10134/1147/5718/5682/5716/811/2923/5707/3106/5696/3107/10802/5719/5700/9554/3105/5717/50856/10197/3416/5706/8517/5710/6892/3133/1636/5689/5720/5701/9491/5711/5715/8673/51128/567/9861/5705/821/9871/4012/22872/9632/51752/64167/3077/10427/9341/10484/3140/2209/3685/948/8773/3693/3551
## GO:0033273 3627/7298/1789/8942/2950/1594/83990/706/100/3600/6696/57817/1788/5467/6427/5743/1956/5469/655/958/3157/2626/1032/8805/6422/360/249/920/5292/5009/5970/2056/5251/2348/1591/7706/7421/4193/6569/3651/4524/3141/7299/7252/9869/22938/7040/846/23530/383/4968/8074/9227/10400/847/4255/2350/6781/5741/1938/3673/429/8854/5179/56603/2242/54332/2155/25959/4131/490/3371/5914/1543/8678/595/590/2934/1277/6591/210/2281/5468/1592/3952/2621/5764/6678/10631/8614
## GO:0017157 23413/136/5898/55503/4067/1138/8941/3458/8372/3162/321/11314/3351/1812/3689/2207/10059/5880/3965/1020/6850/10675/9545/613/29091/2213/164/3596/1080/10755/5724/10814/28964/3134/9367/57102/1142/5582/30817/729230/2932/4878/255057/1137/1141/8832/5579/6855/8447/5217/6845/8027/2243/8573/2266/1813/27183/3745/192683/5873/64780/9515/11267/7447/3598/9001/5978/4905/594855/7476/6386/2332/9699/6853/488/7879/8723/6804/5028/3684/5030/8673/3916/815/148/9146/5908/376267/634/2244/23086/537/5906/301/9783/79363/9525/23332/7251/320/2901/23011/10015/5868/135/23400/5023/3566/1855/6382/2624/8398/11141/2294/5170/5899/2771/22930/8973/114088/5864/6814/6813/6810/3356/83452/1268/55512/2242/2268/783/22871/2150/6622/5071/6385/56848/9846/107/27243/9581/10497/27445/23621/29/1129/9501/25837/9162/6843/6844/23122/57126/8448/6812/5874/93664/8938/11069/6857/150/776
## GO:0045137 259266/81930/4521/1515/2175/10549/3973/6770/6715/1051/6943/9289/8894/8372/2296/3148/4436/2253/84733/867/3383/83990/5806/1761/409/2189/4678/2254/8751/7422/8433/7490/6240/3157/675/1588/10018/835/7022/9468/117/2626/3623/3417/6422/9757/4914/5568/836/56159/57122/6714/11144/3309/2069/1399/5927/10184/10371/8531/581/6736/6665/4142/23626/2661/10409/269/2492/6647/7425/5798/190/10046/5245/2627/9510/7258/3622/9985/2796/4201/3955/2316/9210/7314/7046/8890/668/8879/22836/5156/7080/8892/2623/4323/4089/91/3972/25976/57599/3020/116/92/8893/6382/3207/3206/59338/3815/4327/642636/51742/8031/5972/599/4846/8195/7098/7110/152006/26471/5872/23598/7812/9667/6662/4824/56729/1495/2309/192670/472/6777/598/23411/546/2516/3624/2067/6716/7337/408/10265/8322/5926/268/8648/7536/5914/6299/3643/54997/7474/8743/596/8644/6586/10272/8204/595/23639/84159/2488/7482/7042/9353/22862/283/10370/2620/57728/3952/3295/3625/4254/2099/5159/1471/174/658/23414/54361/2697/367/1602/4036/2625/5241
## GO:0097529 6280/6279/6278/3627/2921/7941/3576/8792/6352/56833/1230/6347/1236/4067/6354/5641/11314/26228/6283/3689/6375/3735/3929/1652/5880/6357/4282/6850/3569/51192/1240/5142/3071/1525/6376/79902/4192/1908/728/1588/5054/6356/3570/57118/30817/140885/6441/729230/57402/719/708/1432/4354/79647/6368/796/8291/6372/6223/2358/84818/101/3579/6363/1113/199/5734/5294/2321/5657/2185/8288/23604/566/6346/5293/972/7409/3146/9948/3680/5155/6366/928/59341/2660/1441/5879/975/177/3605/1435/26585/5144/10488/27202/683/158747/7369/301/7984/6369/961/3269/1906/4323/23765/5319/9750/51561/3815/8729/3958/51135/8600/5800/7857/6777/23236/1910/3672/7057/4345/5175/5595/7424/23075/23396/3554/4920/1843/54209/5025/7042/5919/9353/1907/57126/727/4681/83700/4856/6387/11117/7060/10451/80310/79148/1524
## GO:0034404 4521/1503/7083/5214/7378/55526/8833/262/9688/3101/26330/54541/4830/4860/2821/57103/1841/7167/2584/353/11332/25939/2597/5230/9631/2023/10591/5223/1633/100/7374/4507/5208/6396/215/5210/23165/5315/3251/22978/55706/1890/23636/5027/3692/3091/3099/7415/5142/7372/4927/79902/6996/10762/8480/55753/3607/11097/3939/7498/5232/790/9972/81929/2027/5211/2646/5236/57122/56474/272/5209/79023/1267/54963/9818/5313/229/27115/2876/4913/51727/6521/1723/23511/79077/83440/3614/226/132/51085/23583/230/23279/2645/5151/7175/5465/55270/8930/5152/2987/4967/5213/5207/4833/51548/11319/23225/10891/5143/53343/3630/8021/53371/3704/978/954/5144/5571/3094/11277/4928/2026/3098/10201/89/669/8086/4968/405/8226/5169/9883/6774/2103/283927/51341/10924/5903/4907/348995/55746/863/4656/26471/10846/38/3356/8473/23417/51422/5224/5141/5562/56953/9611/29922/9759/7157/957/9583/8654/5563/79873/7084/3643/3615/8604/8622/5136/956/4832/2203/5138/2819/5167/26137/8382/3479
## GO:0015711 8140/366/26279/8792/6536/59272/768/79581/5320/7504/6508/4948/6535/8564/336/341/55117/28231/10257/6541/24/292/11254/3783/10650/117247/2058/23250/9123/6513/55144/6510/9600/215/81034/1244/6522/6573/2542/57282/6566/5467/4282/6850/9056/9356/8500/4794/10237/5027/345/2180/348/4363/551/10165/51700/23657/28234/353189/1080/54020/10755/55867/11309/79751/6555/2182/51167/1468/2352/1374/23760/5360/10991/6520/885/5321/8647/9390/1814/7355/23204/3933/9971/6556/760/1109/10864/55065/55238/759/10786/134/6507/208/9197/64849/5997/522/3949/9057/6579/949/10577/30814/6539/5660/94081/1813/6521/8541/8402/26207/1071/10599/2348/337/8497/189/51228/552/10478/28232/57084/6256/9058/2806/80763/3553/2744/2168/6754/51054/58488/9885/58526/5608/26154/5020/293/335/1636/5465/6534/763/1645/65010/2538/28965/8671/6519/23539/2917/10861/765/54896/56301/4843/50487/6198/6533/6804/2170/6005/6512/6616/23200/5306/56606/6568/206358/51499/6511/9368/81579/3766/10057/19/55089/207/284439/846/2912/634/11238/26266/55754/5999/383/80772/54716/186/57030/6540/4923/4889/10079/1906/10630/9962/6529/320/6538/5565/54407/26503/23169/22999/1376/135/183/123/5663/6514/11136/1497/53919/5319/6545/1836/6506/7223/23443/950/291/624/4547/2350/79085/11230/55032/9194/8398/23632/57194/22925/8600/10227/8499/1815/10347/1201/9619/1579/22930/11000/23120/9152/9016/89874/762/5864/29957/788/11046/31/10396/6554/81539/80765/5580/6509/8501/51422/114884/83447/65012/6567/766/80131/10998/4779/7057/51761/8714/6622/57835/10499/5825/374868/9611/9497/4763/10550/57205/92579/10497/8660/5563/8648/6561/9256/6578/27347/3043/2181/10087/51706/948/5025/11001/6844/9900/114882/27165/8604/64600/9854/10559/159963/5243/5468/358/6812/10560/5172/3952/8864/761/477/5244/6542/5205/23428/4915/32/6857/161291/9498/2697/1811/54677/6505/18/771/2167/80736/4036
## GO:0006914 6280/6279/27074/7345/8767/3458/57103/3162/51001/2597/664/3394/11040/706/56993/2072/58528/10059/4210/9100/10287/1020/533/26191/9474/10452/29100/29982/3091/3099/7415/525/2011/9373/79720/1981/60673/80183/3920/411/4504/55332/1460/3587/57602/79156/3607/10018/1612/5476/2626/83460/92140/55737/2932/3428/9868/9114/1611/55669/8975/1649/1814/3834/57761/836/5747/54472/10135/8832/6714/6721/11178/2081/8851/10456/25793/8027/55432/7855/9554/3320/80149/5660/528/1459/23545/29919/1813/84861/27183/8878/6009/7416/5291/10133/2773/23604/3586/5305/79065/51606/8517/51100/51322/55201/56270/10254/5861/55014/23256/55294/11267/57192/79837/3146/9001/6885/5566/529/3565/26100/4218/9711/64422/2475/64223/523/23367/526/4170/64419/9342/4534/3691/9559/5599/10542/51160/25978/81631/7879/9776/57154/1213/28956/26073/2017/10269/10891/527/64121/8655/8673/81876/8897/55626/58533/1982/9804/10524/10193/11011/10548/5587/10346/148/5296/5290/6829/55255/2801/9842/10533/83734/207/9146/10558/2033/85363/5571/22933/65082/27/155066/4233/11067/80317/823/114881/10670/11315/9682/80772/310/51382/826/2931/7957/6048/9525/9517/6737/9821/9550/27429/7251/738/23130/1263/10312/29110/5049/1613/5565/5868/148022/4864/6774/140710/29082/5289/11345/23400/6093/1915/572/29978/7009/54874/5663/8396/93974/10645/55763/23192/90410/79594/10013/3064/8992/23673/27072/23118/25/11152/9637/9927/55823/51715/30849/8925/79643/5899/27131/64601/55062/55048/1201/56893/79735/9531/22930/10392/26471/2670/7405/23032/10273/23274/55054/11043/54832/23241/54922/23710/8408/7249/9140/10241/2309/80700/83452/472/11337/65018/535/534/5287/51422/23411/9528/9706/9779/7942/51024/29108/5562/200576/6622/5071/8649/51520/154/3315/55578/23230/11140/51127/27243/23265/23001/5595/23339/5768/9638/10206/7157/84148/5563/55187/6794/5564/665/440738/3082/3791/440026/10325/1917/596/54209/3964/8678/54463/7248/9895/26249/22863/4734/11180/23255/66036/7507/2308/4077/8100/201163/3953/53373/8406/81603/6625/3952/1513/23677/10769/6720/7494/25827/79443/26353/1191/3357/1634/57535/3708/4137
## GO:0061919 6280/6279/27074/7345/8767/3458/57103/3162/51001/2597/664/3394/11040/706/56993/2072/58528/10059/4210/9100/10287/1020/533/26191/9474/10452/29100/29982/3091/3099/7415/525/2011/9373/79720/1981/60673/80183/3920/411/4504/55332/1460/3587/57602/79156/3607/10018/1612/5476/2626/83460/92140/55737/2932/3428/9868/9114/1611/55669/8975/1649/1814/3834/57761/836/5747/54472/10135/8832/6714/6721/11178/2081/8851/10456/25793/8027/55432/7855/9554/3320/80149/5660/528/1459/23545/29919/1813/84861/27183/8878/6009/7416/5291/10133/2773/23604/3586/5305/79065/51606/8517/51100/51322/55201/56270/10254/5861/55014/23256/55294/11267/57192/79837/3146/9001/6885/5566/529/3565/26100/4218/9711/64422/2475/64223/523/23367/526/4170/64419/9342/4534/3691/9559/5599/10542/51160/25978/81631/7879/9776/57154/1213/28956/26073/2017/10269/10891/527/64121/8655/8673/81876/8897/55626/58533/1982/9804/10524/10193/11011/10548/5587/10346/148/5296/5290/6829/55255/2801/9842/10533/83734/207/9146/10558/2033/85363/5571/22933/65082/27/155066/4233/11067/80317/823/114881/10670/11315/9682/80772/310/51382/826/2931/7957/6048/9525/9517/6737/9821/9550/27429/7251/738/23130/1263/10312/29110/5049/1613/5565/5868/148022/4864/6774/140710/29082/5289/11345/23400/6093/1915/572/29978/7009/54874/5663/8396/93974/10645/55763/23192/90410/79594/10013/3064/8992/23673/27072/23118/25/11152/9637/9927/55823/51715/30849/8925/79643/5899/27131/64601/55062/55048/1201/56893/79735/9531/22930/10392/26471/2670/7405/23032/10273/23274/55054/11043/54832/23241/54922/23710/8408/7249/9140/10241/2309/80700/83452/472/11337/65018/535/534/5287/51422/23411/9528/9706/9779/7942/51024/29108/5562/200576/6622/5071/8649/51520/154/3315/55578/23230/11140/51127/27243/23265/23001/5595/23339/5768/9638/10206/7157/84148/5563/55187/6794/5564/665/440738/3082/3791/440026/10325/1917/596/54209/3964/8678/54463/7248/9895/26249/22863/4734/11180/23255/66036/7507/2308/4077/8100/201163/3953/53373/8406/81603/6625/3952/1513/23677/10769/6720/7494/25827/79443/26353/1191/3357/1634/57535/3708/4137
## GO:0050770 7504/3897/10507/55079/3475/7473/6696/80128/7422/1020/7143/5604/2048/348/23566/2011/1123/4504/3984/1785/51393/2932/6792/2049/5747/5058/6091/7224/8851/2043/393/3792/10371/4133/1954/1002/6722/6049/8153/27185/4099/7074/2902/51330/11344/7476/55558/8766/396/1826/10090/9175/81565/2017/4825/23191/4168/4897/9798/23394/1600/10716/2664/10494/1949/1946/51199/57142/23011/1382/5979/5454/5663/347733/5048/5728/23105/8482/387/5458/10439/6259/6900/659/25/6498/2335/9839/2258/4974/9423/1630/57698/4038/5800/4916/1808/6474/2909/5802/9706/23077/23499/79006/3611/7070/4131/627/6794/29882/22902/7474/9024/23111/1942/4804/2803/66008/26037/4803/9353/8829/4747/9037/22906/6387/56920/2045/4035/4915/23303/4137
## GO:1990778 5347/2633/29899/116372/81693/3458/483/2207/1445/999/1020/8500/7124/2048/1000/4644/1956/245812/4118/286/79156/88/10640/5911/6769/10959/10139/55737/8934/50848/382/6809/23114/2770/391/6845/208/1173/2035/10434/682/6521/27183/8878/64083/3799/10133/8394/5584/3745/26003/5602/5727/5962/26088/11187/9179/2902/60/8048/4218/26154/9530/3265/22979/1740/9312/23167/8766/7429/23062/784/80852/81619/57154/1213/975/5028/9914/6616/23163/3630/8673/9368/1739/10490/8548/4040/859/2316/1969/8301/64114/5318/207/7040/2319/7132/5581/23433/51125/3688/9495/5906/5780/6281/22883/10369/8417/55690/5593/3911/10098/2852/4323/2903/23095/64398/5525/1804/23096/6093/7430/2580/9053/10267/90410/55022/9475/3728/2693/23759/4301/1605/102/6249/10519/288/5583/5170/3958/2258/4682/9270/9912/27237/2037/8650/9211/23043/51763/11079/5872/2905/6711/287/6810/23241/5913/598/26119/9528/403/9693/9919/783/23499/55667/30845/23555/26060/9341/27065/10484/23136/10211/1601/2013/8631/64689/5295/10268/5357/126353/63971/9482/54997/25945/22841/2181/29098/5590/54209/2803/23426/3875/3675/25837/6844/23122/9847/2042/57731/481/54843/8642/10580/25999/5064/11031/6812/4926/582/57728/2621/857/4035/9135/2239/55800/3551/30846/54585/367/131578/10266/9370/10551
## GO:2001235 6280/6279/3002/4318/1075/3932/1869/9705/2810/5499/578/9141/637/5788/467/664/7027/81618/10059/7534/80758/10105/3965/7164/6789/4690/7159/29949/5329/8772/4055/11124/7186/8440/4118/8739/9500/79156/5771/10018/5366/835/5371/10134/2932/1512/6422/2923/1649/10971/10962/7533/5534/6788/7029/9521/5326/27035/581/7023/6647/27141/5062/55294/51330/5883/7529/841/4170/5599/6201/355/5518/1540/51657/9368/6477/8915/27113/7314/7046/3717/5519/6188/8575/51741/11315/186/2931/6421/2852/27429/7531/1613/9774/317/135/183/572/5979/93974/9026/10616/5728/51588/8682/5414/8692/7161/26355/8398/6498/10955/5601/23368/6135/5533/26471/1687/138151/8737/4836/4824/1495/598/65018/5580/3456/23411/56947/51024/29108/7057/8626/3624/4763/7157/4776/4088/7755/8743/596/50486/8678/64112/2934/201163/7078/8406/638/3625/857/53832/4487/658
## GO:0030217 3902/26279/1493/2175/3932/3559/639/914/8767/91543/1236/3574/3575/4860/915/864/3458/2841/942/1880/2529/8876/10288/1794/5788/916/30009/100/3600/3659/3549/940/80758/939/4063/3965/9308/865/6659/26191/6850/9474/912/3569/1378/8772/23210/5971/10125/23240/8456/3071/3135/8808/4192/5591/6654/5771/54542/54440/55636/3593/8651/3558/729230/3592/11006/29781/6693/3662/920/101/3111/6868/941/7855/80149/3606/6363/5734/10892/6722/677/7292/8324/11221/10385/5293/972/7535/7409/1209/3707/6647/3718/5897/3146/3565/51176/8809/2475/2302/6194/9093/9092/9840/8943/64919/1540/7001/3142/602/10945/29102/567/7471/3955/7040/51043/50943/6932/114548/301/64218/5075/2064/10312/26253/6774/3981/1021/572/10803/3566/5316/4092/3594/387/149041/6146/2736/51561/3815/814/25/9580/6304/6095/3440/10538/2648/5896/23598/9935/538/6670/22890/8546/3714/56603/57178/6777/3456/8325/399/9655/5532/56339/1499/7157/1960/6794/860/6778/5914/4602/604/1958/596/5590/4179/678/7248/11005/1235/7048/3953/6469/3952/7494/6097/7704/54361/2737/6935/652/2625
## GO:0002758 6280/6279/8685/55765/51311/79931/94025/64581/8767/91543/5688/3055/5709/330/3654/5698/727897/4067/5693/1535/1520/5713/5336/9258/5641/11314/64135/5721/5691/2867/3329/5685/23547/3689/7096/5690/5684/5686/2207/5695/1514/27293/3659/10213/7353/23586/2219/3929/409/23198/7128/81622/5699/5714/929/26191/6850/5702/79132/7097/5708/83737/8772/5692/63906/64170/5704/5971/5683/5694/4792/5567/7321/57162/4585/4893/8454/9641/7334/1147/5718/5682/6441/6397/5716/57402/10333/5707/708/89870/7184/2672/10010/9971/5568/1508/5058/6714/64127/3662/5696/4615/6197/695/4586/3385/2243/5719/5700/5970/9261/10062/2266/5717/7311/23643/26057/50856/10892/55666/57115/10197/23151/3665/5706/8517/7099/2534/5710/5062/4584/7301/6271/3146/6885/5566/5608/10462/54726/3384/841/3265/5689/4583/5063/5720/55601/3845/7323/8993/6233/4795/7316/5701/9491/10454/1540/329/3684/5711/5715/331/8915/7314/9861/2033/5705/85363/3661/64922/5581/5894/2244/58509/7189/26065/7187/7867/4790/10695/29110/57142/26253/148022/5289/7322/23180/9684/9698/30835/79155/56667/8780/1755/23118/55366/7105/10318/5170/51284/30849/51135/79671/23369/11027/7100/23098/7098/10392/8737/338/23291/9865/5580/5802/2150/26060/2874/10211/8945/57876/26007/55914/6500/4057/1387/22841/9252/948/54941/29997/4589/4588/9867/55198/4214/1513/80216/2099/11213/857/81035/3551/4582
## GO:0030260 983/3695/3576/7037/59272/79581/6317/8372/942/8547/3853/867/1234/3383/5806/2219/4360/6510/3965/6404/999/6504/9076/83737/7852/1378/5817/1956/1525/7293/1380/5034/26762/9972/9074/50848/1508/6714/9080/2993/2885/55065/920/3839/3949/941/3694/156/949/5478/7726/3416/325/7706/5818/972/1948/1604/11074/7301/6993/10572/8724/51193/10332/3956/975/79872/8673/3916/1969/85363/3678/4233/3688/11060/1803/6737/1949/10107/4340/10475/4864/7113/8764/950/30835/55770/2838/8692/3690/1605/3673/858/4684/3440/7405/8519/11043/55223/2060/5819/23601/3356/6554/23265/6575/1499/3373/558/3685/10410/4179/11059/2934/81603/10581/3693/2621/857/290
## GO:0044409 983/3695/3576/7037/59272/79581/6317/8372/942/8547/3853/867/1234/3383/5806/2219/4360/6510/3965/6404/999/6504/9076/83737/7852/1378/5817/1956/1525/7293/1380/5034/26762/9972/9074/50848/1508/6714/9080/2993/2885/55065/920/3839/3949/941/3694/156/949/5478/7726/3416/325/7706/5818/972/1948/1604/11074/7301/6993/10572/8724/51193/10332/3956/975/79872/8673/3916/1969/85363/3678/4233/3688/11060/1803/6737/1949/10107/4340/10475/4864/7113/8764/950/30835/55770/2838/8692/3690/1605/3673/858/4684/3440/7405/8519/11043/55223/2060/5819/23601/3356/6554/23265/6575/1499/3373/558/3685/10410/4179/11059/2934/81603/10581/3693/2621/857/290
## GO:0051806 983/3695/3576/7037/59272/79581/6317/8372/942/8547/3853/867/1234/3383/5806/2219/4360/6510/3965/6404/999/6504/9076/83737/7852/1378/5817/1956/1525/7293/1380/5034/26762/9972/9074/50848/1508/6714/9080/2993/2885/55065/920/3839/3949/941/3694/156/949/5478/7726/3416/325/7706/5818/972/1948/1604/11074/7301/6993/10572/8724/51193/10332/3956/975/79872/8673/3916/1969/85363/3678/4233/3688/11060/1803/6737/1949/10107/4340/10475/4864/7113/8764/950/30835/55770/2838/8692/3690/1605/3673/858/4684/3440/7405/8519/11043/55223/2060/5819/23601/3356/6554/23265/6575/1499/3373/558/3685/10410/4179/11059/2934/81603/10581/3693/2621/857/290
## GO:0051828 983/3695/3576/7037/59272/79581/6317/8372/942/8547/3853/867/1234/3383/5806/2219/4360/6510/3965/6404/999/6504/9076/83737/7852/1378/5817/1956/1525/7293/1380/5034/26762/9972/9074/50848/1508/6714/9080/2993/2885/55065/920/3839/3949/941/3694/156/949/5478/7726/3416/325/7706/5818/972/1948/1604/11074/7301/6993/10572/8724/51193/10332/3956/975/79872/8673/3916/1969/85363/3678/4233/3688/11060/1803/6737/1949/10107/4340/10475/4864/7113/8764/950/30835/55770/2838/8692/3690/1605/3673/858/4684/3440/7405/8519/11043/55223/2060/5819/23601/3356/6554/23265/6575/1499/3373/558/3685/10410/4179/11059/2934/81603/10581/3693/2621/857/290
## GO:0003007 6664/65009/1482/6491/2296/8557/2253/7468/22943/3549/2138/8751/7422/5457/4624/6659/5629/6262/3091/7273/5469/6862/655/2280/6654/6261/9421/55636/79977/2626/10959/55212/7135/8928/5747/54583/7547/6091/3398/8828/1399/5292/1954/64783/6722/6608/5915/2348/7137/5727/6256/2303/7472/4838/4193/6910/4091/4851/2050/2475/51384/2627/6615/4634/6495/51098/9510/51548/10454/10269/27302/10413/4625/6899/653/3037/3516/859/7046/5318/7040/3084/1386/11277/10660/657/4633/79933/2931/9249/79810/4889/123872/10637/4089/7134/57142/26005/4607/26508/5663/6604/3725/3491/4853/4092/10277/55081/54345/10439/650/5308/55036/171023/659/2294/9464/7291/27063/4846/3670/8195/6909/9645/7403/8854/1832/60485/2548/10427/6662/2022/70/64321/6474/57178/10395/23129/10848/54903/1856/7054/3280/2263/90/3611/25836/7139/8321/2702/54806/1499/7157/2535/23493/4088/7010/94/5914/1301/182/3643/7474/1901/10087/1942/7168/1280/4887/6586/4194/5311/4734/23462/10252/7042/57493/4208/9353/8829/7048/8642/10370/5950/6591/6469/55742/58495/585/55273/4488/79633/7481/1289/10512/1363/4487/23414/4886/2697/3357/7049/7122/6926/2006/652/4036/2625
## GO:0002699 3902/7037/5650/8767/51237/91543/10859/136/4067/2821/3458/3162/4436/11314/942/79915/2867/3329/7468/3689/5788/259197/4068/9188/30009/2207/6375/8807/940/23586/3735/3929/5880/3965/4282/8013/7124/5027/79132/3569/4049/56253/2208/8772/5817/7186/5795/10125/3135/164/3596/7293/958/5724/3134/54440/57102/3593/30817/25818/3558/729230/3592/51571/3805/3109/4878/51744/1432/89870/8832/64127/6223/695/6845/55183/941/7855/3606/6363/26057/10666/10892/7292/51704/11126/972/7409/7099/3553/3598/6885/22976/3565/8809/3133/5245/55601/1653/2889/8723/975/5225/3142/3684/8673/567/3916/8915/23529/7040/50943/59067/3098/383/5906/114548/301/7189/8741/8417/5169/148022/3566/718/9698/3594/54537/8482/2624/51561/2294/23705/5170/4292/23369/6813/6810/22890/5819/6777/2242/2268/9655/7158/2150/56848/9846/5595/729/57506/6778/3567/5914/4602/3554/7474/81545/5590/4179/948/57126/2241/5950/55198/6812/90865/7494/3263/2625
## GO:0006109 5163/5341/3973/9688/26330/54541/57103/2642/5449/5031/5499/9631/7262/5223/5208/6396/5210/23165/55706/22877/23636/5027/5165/2641/3692/3091/57001/4927/79902/80183/5724/1950/10762/1642/5771/8480/3607/11097/5366/117/2932/9972/81929/51744/2784/2646/3170/57122/6714/5209/79023/8445/9818/208/5500/23511/4142/51094/2185/3486/51085/57223/10447/23279/5443/2475/2645/5155/7175/5465/5207/51548/11319/1213/23225/5028/10269/10891/23178/3630/8021/53371/3037/207/60343/7040/2033/5571/11277/5581/4928/89/2931/114897/4923/5509/3269/8086/2852/4790/10776/1609/405/10296/9883/6774/140710/51451/2103/572/2822/950/51341/5903/5741/348995/55746/8850/6095/863/51763/4656/2648/26471/283871/3488/3356/8473/23417/55512/51422/23411/9104/4779/5562/6622/5071/10499/1353/1407/9611/1196/9759/7157/957/5261/8660/5563/5164/5745/3643/8604/2308/3953/10580/5166/3952/6097/2203/2819/7033/32/5167/4485/26137/3487/3667/3479/114899/9370
## GO:0050870 29851/1493/6352/7037/3932/80380/3559/6347/8767/1236/10859/55423/3574/3575/4860/4067/7412/864/3458/959/11151/942/3329/8876/10288/5788/916/6375/100/3600/3549/923/940/939/5588/3965/9308/10808/1445/865/10148/4690/6850/912/3569/5133/8772/8440/10125/3071/3135/8808/100133941/4192/7525/9402/54440/3593/8651/3558/729230/3592/51571/3109/11006/1326/5058/6714/64127/970/2885/920/23308/101/941/3606/2056/6363/199/10892/7292/8740/11221/10385/11126/972/7535/7409/3707/1948/2534/3553/5062/1604/5781/3146/3565/998/3133/5777/9093/9092/5063/6366/3956/9840/3113/8943/1947/5879/975/1540/3142/177/8915/5290/207/7040/51043/2319/6188/50943/59067/3115/114548/301/7189/961/1803/11148/1949/572/3566/8764/3594/30835/387/2736/51561/6708/5170/8600/5896/22890/8546/57178/6777/3280/29108/9655/7070/1960/5295/5914/4602/604/5590/4179/7048/79679/6469/3485/3952/7494/857/7704/2737/3572/3479/2625
## GO:0071456 890/5163/891/1978/51378/768/4609/10397/5688/5709/1869/3654/5698/5693/57103/5713/3162/5721/5691/30001/5685/10449/5230/2023/3383/5690/5684/83990/664/5686/5695/29923/51142/10525/7428/10213/23198/2792/6285/7422/5699/5714/6921/1788/6839/5467/27087/5702/9978/5165/5708/5743/5692/3091/5704/3776/1536/655/5683/4504/5034/5694/3777/5366/5718/5682/5716/6422/360/5707/1179/54583/6714/5696/101/11331/5719/5700/2056/5717/7311/26608/10197/8837/8453/677/4352/5706/5710/79723/2168/4193/4851/28996/2475/2627/5689/5720/7015/6233/7316/5701/9491/2782/50809/10891/6923/5711/5715/2021/8996/3516/7314/9861/207/2033/5705/846/22933/5581/4780/4000/5740/55662/7225/8994/1906/1263/405/3779/64506/4976/572/7009/112399/5728/9475/10869/6781/9520/26355/64344/25994/7291/27063/571/6095/25950/10273/538/4824/6517/2309/23576/65018/23411/6546/5562/4985/23409/6326/7157/1387/665/28984/6548/1958/596/947/2034/79625/4194/29997/10370/358/3751/5764/5105/8614
## GO:0016579 991/890/983/993/11274/6502/79931/7345/4609/5688/5709/6472/330/5698/5693/56943/54532/5713/64135/11047/5721/5691/78990/8607/5685/7398/5690/5684/80124/5686/5695/10213/7353/23586/51029/409/23198/7128/51377/9929/9100/86/63967/5699/5714/5702/5708/83737/10713/5692/3091/7415/5704/7186/580/672/10987/1080/5683/3054/57602/5694/3607/4792/7321/7347/10617/5718/5682/83444/5716/55611/8975/5707/29086/10010/64750/5696/5886/9986/8078/9099/8027/55432/5719/4738/5700/80149/57559/5717/7311/10197/389856/29844/64854/9097/5706/8517/5710/10254/60/10445/4193/51035/6885/9825/54726/8900/8724/23358/79913/4287/25862/5689/79184/84669/5720/8287/6233/7316/5701/29761/9491/10454/9733/1540/329/8295/80013/5711/5715/8239/9960/9958/9804/10474/54891/7314/9861/7046/23252/9146/2033/5705/23172/8665/6881/11315/114548/7189/9817/7187/6737/10600/93973/8464/7874/4089/55777/4087/8314/7528/57599/55252/9577/219333/5728/4092/4798/79155/387/10869/51720/56957/171023/63891/10318/23326/5887/8850/55031/2648/8237/23032/5423/8737/55288/8473/7375/6314/27005/9101/92552/84196/5071/9098/154/4086/1643/7157/9738/4088/4303/51616/6478/9736/324/8678/10868/4194/29997/79589/90865/2099/367/2625
## GO:0002218 6280/6279/8685/55765/51311/79931/94025/64581/8767/91543/5688/3055/5709/330/3654/9447/5698/727897/4067/5693/1535/1520/5713/5336/9258/5641/11314/64135/5721/5691/2867/3329/5685/23547/3689/7096/5690/5684/5686/2207/5695/1514/27293/3659/10213/7353/23586/2219/3929/409/23198/7128/81622/5699/5714/929/26191/6850/5702/79132/7097/5708/83737/8772/5692/63906/64170/5704/5971/5683/5591/5694/4792/5567/7321/57162/4585/4893/8454/9641/7334/1147/5718/5682/6441/3428/6397/5716/57402/10333/5707/708/89870/7184/10432/2672/10010/9971/5568/1508/5058/6714/64127/3662/5696/4841/4615/6197/4332/695/4586/3385/2243/5719/2547/5700/5970/9261/10062/2266/5717/7311/23643/26057/50856/10892/55666/57115/10197/23151/3665/5706/8517/7099/2534/5710/5062/4584/7301/6271/3146/6885/5566/5608/10462/54726/3384/841/3265/10084/5689/4583/5063/5720/55601/3845/7323/8993/6233/4795/7316/5701/9491/10454/1540/329/3684/5711/5715/331/8915/7314/9861/2033/7520/5705/85363/3661/149628/64922/5581/5894/2244/58509/7189/26065/6421/7187/7867/4790/10695/55269/29110/57142/26253/148022/5289/7322/23180/9684/9698/30835/79155/56667/8780/1755/23118/55366/7105/10318/5170/51284/30849/51135/79671/23369/11027/7100/23098/7098/10392/8737/338/23291/9865/5580/5802/29108/2150/26060/2874/10211/8945/57876/26007/57506/55914/6500/4057/1387/22841/9252/948/54941/29997/4589/4588/9867/55198/10614/4214/1513/80216/2099/11213/857/81035/3551/4582
## GO:0014706 983/891/6664/65009/5307/1482/1063/7504/6943/2296/23764/8557/2253/58/467/2539/3475/22943/409/29895/2138/6285/57817/2254/7422/3344/9328/5457/1020/4624/9456/7480/9474/5629/6262/688/3776/7273/5469/7490/1959/1525/1134/655/27101/2280/1144/5594/6261/9734/88/2047/8819/9421/55636/2626/10038/811/9148/26263/4878/1432/7135/8928/79647/54583/5058/3720/3398/26576/59269/4205/3792/5081/5292/5997/2876/8531/10791/58529/2139/4654/6722/6608/5915/6665/8837/8324/2010/7137/5079/4617/9472/1948/6256/2303/7472/6910/8048/4851/51176/2475/140465/2627/5465/4534/4634/6495/2660/79784/51548/50937/22989/3142/10269/27302/10362/10413/3192/4625/6899/26287/3236/653/26585/3516/4209/25776/148/56999/859/26281/7046/4729/57158/9150/22953/5318/7040/2033/668/22933/3084/3156/4000/657/5600/3688/6901/5999/5156/186/89/4633/1829/1655/2931/79810/1906/3235/6840/4089/7134/11214/7528/6497/4607/26508/183/8131/2248/8736/9318/9242/10818/5728/90410/4092/10277/387/4868/10869/9750/650/10052/4618/7161/1310/1938/858/1385/51778/7291/4637/27063/3670/5300/9794/6909/4656/2648/26471/8854/1832/5573/60485/2260/8737/23135/10611/55692/2022/70/64321/6474/10529/56603/23363/4015/7093/10848/406/905/2065/7026/6546/91807/2263/90/5562/8289/7139/8929/7881/6443/9975/5925/9172/55909/5530/4086/2702/6416/4763/9759/10211/1499/607/10521/23493/4088/2735/6548/5914/1301/4211/1958/7474/596/26011/1901/7168/4628/844/7248/7042/57493/4208/2817/7048/2353/5950/2247/50507/6469/8470/2317/10324/7832/6444/5159/857/57496/10512/23414/5350/4223/10472/2697/3131/80206/1634/7049/6926/3479/2006/4629/652/4036/2066
## GO:0010770 7804/3897/10562/10507/7473/10059/7422/8997/5604/10675/23566/84079/4192/3984/1785/51393/811/708/6792/10097/5058/6091/57091/7224/3987/1399/2043/6845/2243/10109/1954/2266/1002/6722/8153/27185/4352/4076/80005/7074/51330/1627/998/11344/335/23316/8766/5063/56965/396/1826/5879/9175/81565/3706/23191/55604/9798/3037/23394/2316/1523/2664/5881/2244/6281/9820/6239/10494/816/1946/51199/23011/10458/1382/4976/347733/8874/5048/2039/8482/387/5458/1398/659/11141/25/10519/6498/2335/11078/9839/9423/57698/4916/5649/6474/5789/23363/23499/79006/3611/4131/627/6794/29882/4739/22902/4804/2803/80823/4803/65981/1793/9353/8829/4747/9037/22906/4653/6387/4035/4915/4137
## GO:0032956 6712/1894/54959/5341/29767/3055/1236/3925/7111/11151/26228/119/9087/274/57180/3383/22843/6624/4771/8477/1020/2824/4690/246/10095/8500/10096/5629/7454/7226/8440/5216/23616/3071/6376/4192/3059/6356/88/1496/3984/9535/5345/6422/50848/382/10097/5058/8936/10092/2885/8851/10456/5217/822/7408/57175/684/11170/10109/10094/55160/6710/5734/54942/1072/2185/55607/9873/10093/5962/5987/8976/55704/50944/5829/10178/2041/998/9948/2475/64223/11344/9530/4703/3265/9113/335/1440/7016/5063/6366/396/7429/3273/5879/2017/27302/2044/6869/9463/10787/23191/55604/1739/55243/859/2316/7046/7040/29766/27/4233/5581/23433/683/10565/5999/5156/7114/7984/79933/6281/6369/961/1906/1946/23332/1436/29109/4089/11214/1613/10458/5154/6093/10163/10677/9026/395/23607/4853/9475/2039/387/4868/1398/6708/25/11078/10152/9270/5066/8195/116985/51763/397/2059/29984/6711/55435/4916/22899/2909/10395/9647/9344/5580/2242/5756/4070/11034/91807/4641/9620/51332/8558/29108/54828/10435/10174/2150/3611/5071/23189/5921/6385/118/23075/55616/4088/5295/7010/28984/6548/22998/1901/7168/1490/7840/11211/7248/9639/23122/3397/4208/6709/9353/1902/8829/2934/2042/57731/2241/10411/50507/54551/83700/9037/585/85458/85477/51474/24142/7481/4653/6387/4908/5159/10391/4035/54361/10788/7043/6863/57551/50853/80206/51466/25802/9723/2006/284266
## GO:0046661 259266/81930/4521/1515/2175/10549/3973/6770/6715/6943/9289/8894/3148/4436/2253/867/3383/83990/1761/4678/2254/8751/8433/7490/6240/3157/10018/7022/2626/3623/6422/4914/5568/56159/2288/3239/1399/5927/10184/10371/8531/581/6736/6665/4142/269/2492/190/654/10046/2627/3622/9985/4201/653/2316/7314/7046/3293/8879/22836/657/5156/7080/2623/4323/4089/3972/57599/3020/92/51665/6382/3207/3206/59338/55366/3815/642636/51742/8031/5972/599/7098/7110/152006/26471/5872/23598/7812/4090/9667/6662/4824/1495/192670/6777/598/546/2516/3624/10388/2067/6716/1499/1718/80000/5926/268/8648/7536/5914/4920/3643/54997/7474/8743/596/8644/10272/595/23639/84159/2488/7482/7042/22862/10370/6469/3295/4254/2099/5159/1471/23414/54361/2697/367/6926/4036/2625
## GO:0051099 5080/81620/4318/8767/51053/1054/4830/3925/3458/2296/3148/79139/119/7295/9618/6789/5457/1020/142/23028/5329/2641/348/1663/5901/7186/1981/2280/22919/3297/1950/4686/8091/2932/5444/3646/3326/382/57761/3662/65057/6788/2043/8664/2035/4931/51068/1965/10155/1660/25805/7448/4221/7074/2959/3651/3146/28996/1636/1440/2332/54552/7015/4242/5516/22924/567/23383/3955/4760/1193/3717/7040/2033/22933/8932/8721/149628/4233/9314/65992/23228/11315/267/302/6281/7189/9709/5986/351/6872/6497/55323/64400/148022/5663/9026/23063/5458/9750/64641/650/5515/4140/6708/3200/25/3673/1488/3958/9464/7291/5899/3670/5300/6135/3077/23032/57669/6934/1025/23129/3280/5310/9693/4317/25836/81857/5071/5925/2068/118/10211/1499/3005/627/408/1203/5914/7474/51185/55693/79618/5334/4803/65981/4208/8829/51339/5468/10769/857/4035/10418/3479/652/2625
## GO:0008406 259266/81930/4521/1515/2175/10549/3973/6770/6715/1051/6943/9289/8894/8372/2296/3148/4436/2253/867/3383/83990/5806/1761/409/2189/4678/2254/8751/7422/8433/7490/6240/3157/675/1588/10018/835/7022/9468/2626/3623/3417/6422/9757/4914/5568/836/56159/57122/6714/11144/3309/2069/1399/5927/10371/8531/581/6736/6665/4142/23626/2661/10409/269/2492/6647/7425/5798/190/10046/5245/2627/9510/7258/3622/9985/2796/4201/3955/2316/9210/7314/7046/8890/668/8879/22836/5156/7080/8892/2623/4323/4089/3972/25976/57599/3020/116/92/8893/6382/3207/3206/59338/3815/4327/642636/51742/8031/5972/599/4846/8195/7098/7110/152006/26471/5872/23598/7812/9667/6662/4824/56729/1495/2309/192670/472/6777/598/23411/546/2516/3624/2067/6716/7337/408/10265/8322/5926/268/8648/7536/5914/6299/3643/54997/7474/8743/596/8644/6586/10272/8204/595/23639/84159/2488/7482/7042/9353/22862/283/10370/2620/57728/3952/3295/3625/4254/2099/5159/1471/174/658/23414/54361/2697/367/4036/2625/5241
## GO:0050880 952/59272/133/2643/136/2730/2296/3162/3351/1812/3383/239/5467/9474/5743/8985/348/551/1956/1908/5724/5910/4880/151/5345/4878/40/152/3741/134/3792/5997/2243/2876/10911/1113/2266/4842/3274/59342/6647/80005/2303/1816/1636/1131/80852/5028/3352/6869/3630/148/207/846/4544/2244/1401/3156/186/3269/1906/2852/3779/135/6093/183/5023/116/9475/387/624/27345/8398/659/9270/4846/8195/112/4879/59/3356/3827/2982/1910/6546/3363/10242/2729/3672/5286/2150/1889/9732/2702/6532/1373/490/3043/3350/5592/2149/1621/4881/5797/5029/1907/54795/3952/8864/477/857/1909/4922/2697/185/3357/7349/150/2053/1311
## GO:0000075 8318/991/10403/79733/983/4085/81620/7272/9212/1111/9319/51514/6790/891/6664/990/5347/701/51512/11130/54962/29980/699/1063/5111/55055/641/1869/1763/55159/9735/2810/995/83990/11200/7027/8883/54908/4683/3276/63967/6659/3014/1030/5629/7517/672/1820/57805/988/23019/5591/835/5371/25896/5810/64858/8091/25906/60561/1432/2765/29086/9125/8563/8379/1017/7029/5546/1026/5514/26272/581/79035/84861/27183/29883/7756/55795/4849/56984/9183/51322/261726/5781/55743/4193/10498/6118/5883/1874/9656/3265/29935/6194/27339/7175/8451/79184/25988/51499/3364/1739/51343/4848/9587/7040/2033/1386/55367/11277/10116/65123/545/79621/1263/8738/51451/51143/9577/4850/6152/57472/8555/51347/8682/9575/9337/5934/51720/51776/1647/55755/5325/57060/9984/64859/472/598/56155/1112/9344/3550/5884/1407/5925/80254/7157/26058/51065/28984/4303/7508/1027/79858/1843/324/595/4194/54465/6419/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0033044 991/1062/10403/7153/9787/10460/4751/4085/81620/7272/9212/1111/9319/891/4171/990/5347/701/3159/9700/4288/2237/22948/11240/699/4609/1063/26271/1789/908/10576/3009/5885/2072/5588/54908/4683/7422/142/8260/23028/1786/9474/22880/2641/1663/7517/7203/672/10574/5594/10575/5371/7334/79648/55611/25906/25842/9757/2672/29117/6714/10856/3720/8986/6688/8379/65057/55226/8550/5514/26155/3181/26272/5081/5927/23137/55183/23381/4361/79035/84861/4842/7756/4342/10155/6418/55795/339/5079/56984/59335/55201/3553/22823/7014/5253/22976/4524/81626/10694/10664/55124/7175/996/9555/2332/64324/5599/54552/3183/63925/26097/51548/9733/3622/23476/5976/10269/10891/55011/3192/6598/10474/11011/5587/3184/94104/9869/8726/22938/7040/23133/51043/7520/50943/11143/4000/5609/6047/51750/6886/54386/9320/6421/55818/545/26993/7874/4089/7013/55209/6497/3020/3981/55729/51451/51143/23558/55719/5073/4331/10270/23063/25865/23168/2624/54904/9739/55196/7515/80349/1487/80351/51366/55755/11284/7291/3976/3178/3670/23293/4204/79991/9646/2648/55781/57379/54880/26277/8697/140609/6830/10782/8473/472/1025/65018/56155/4297/23081/23411/54623/25913/8658/9874/546/3550/6879/25836/6622/5394/26053/10111/2067/56848/5925/57343/5595/1499/54737/7157/51112/408/23741/7320/26054/4602/8452/604/23272/9252/4216/1843/80169/324/8678/26036/55693/9810/79618/6419/167227/5252/201163/6591/4926/6720/4674/7349/4582/4137/2625
## GO:0051591 366/8061/445/6772/6770/6715/4830/3753/15/23028/7480/50506/7490/10021/1080/5724/610/2230/328/6531/3309/5313/5970/682/5294/677/2185/9472/189/7425/5078/5798/218/343/10498/5020/7299/65010/5207/2889/329/6528/5908/5906/351/1609/7430/6382/2039/374/6781/4327/5972/51763/1261/53905/3488/5179/5322/4724/5187/2354/3709/6546/9693/3784/1373/7010/4435/1843/196/10142/5311/2353/1277/10411/50507/1393/358/7056/6720/5138/6678/2819/1811/1036/9370/5105
## GO:0031960 8061/1978/1515/445/133/7298/5111/6770/6715/54541/1535/336/1789/2950/3351/15/3383/3291/6285/1244/11063/142/9076/2805/2692/7124/3569/11335/5743/5901/1956/1536/9131/4192/5724/6753/10018/790/7332/1977/249/836/6714/7356/1026/11170/2056/199/4654/8837/23205/677/7477/2720/7023/3586/189/552/218/654/3651/5978/5020/50616/3845/5207/2660/10076/8754/2796/3192/7352/5069/7040/1369/383/186/301/1906/2852/11214/6155/572/64754/116/6382/3557/7538/387/799/2693/374/6781/842/3670/5066/1261/4916/2022/2309/7200/1392/9101/2354/7054/687/178/1373/2908/490/21/2322/3490/596/8644/1843/1490/6586/678/595/590/9353/2308/5176/2353/1277/4747/210/358/3485/3176/6678/1036/7349/6898/4129/9370
## GO:0009416 10874/55872/9212/1111/51514/993/58473/9768/65009/2237/54962/440/4609/5111/2515/8372/6247/5146/4436/92815/5499/24/1812/578/15/1991/2956/7398/5424/2072/5603/2792/9600/2780/1020/57282/7439/142/23028/468/5743/3091/23596/1956/23657/7319/23173/3157/675/57805/1642/5371/3593/1785/23746/3592/885/1032/1814/54929/1259/836/1141/6121/4869/10856/40/2002/3398/5428/5481/8533/9397/1026/6507/5145/26155/9099/2986/208/2779/79823/5275/2063/2876/4867/5970/1965/400410/581/5500/1813/9293/5501/3274/4221/5602/9683/3713/6011/4308/3150/8704/2902/4193/54413/3746/2475/7287/7299/79913/22954/10692/2332/5153/5599/3845/83658/5936/5148/7222/2782/3747/3198/5796/23373/2074/51499/602/27023/3364/51109/207/2033/2071/3727/5957/11277/4157/3156/10002/778/5609/3688/2916/3269/4968/545/351/1161/2979/7528/10988/6872/2903/2767/2235/6010/611/261734/2339/1497/5995/1040/6506/27020/1258/2978/8450/90410/10277/6738/9575/5132/847/8692/3815/1385/842/2073/7486/54112/4204/83759/55031/51455/5896/8554/9112/51150/5429/10636/6295/4836/22890/5475/3000/60626/5187/23411/7054/8491/51761/5562/2067/1407/2068/2776/5158/56339/4763/1643/7157/4776/408/23259/10522/5295/6794/1387/7320/3373/7508/55364/596/9187/181/9094/4216/1843/1621/595/51435/4212/4734/6785/7507/2353/4311/358/2868/11346/8553/477/5764/1396/1153/138162/1408/4239
## GO:0048638 983/891/53335/1482/8437/8200/3897/3574/2296/51083/5449/51316/5641/2253/10507/1019/5479/7262/2539/3475/7473/6696/5447/80128/57817/2254/7422/6789/1020/4624/7143/5467/2692/2395/7852/5629/348/3776/7490/23566/9373/3297/4504/4880/5967/5591/5594/10018/9362/54440/55636/3984/1785/51393/2932/10038/153/6422/1814/1432/6792/5747/5058/3720/2688/6531/6788/7224/8851/1026/393/5292/5997/10371/4133/8531/1954/58529/1002/1813/4654/6722/6608/6049/6665/10939/8153/11221/27185/10409/4593/4099/5727/9472/6647/5617/51052/2303/7472/6910/10498/5897/51330/4851/2475/11344/2627/5465/4534/55558/8766/9699/6495/7429/2660/1826/57154/9175/81565/2017/3142/10269/27302/4825/10413/6928/23191/9518/1435/4897/9798/3516/859/23394/5290/26281/7046/9150/207/8879/2664/657/5600/5999/89/83481/2931/1906/1946/2844/27429/55777/351/7528/57142/8455/23011/22999/6774/1382/7430/5454/27230/5048/5728/23105/375790/79594/8482/5458/10439/2693/6259/7161/659/25/127833/2335/1385/10743/80351/2258/8195/5300/9423/50618/1630/6909/57698/60485/2260/8737/4916/1808/6777/23236/7093/5802/9706/2263/51761/23499/23025/3611/25836/5071/154/6532/4131/627/23493/825/23286/2735/29882/5357/22902/1027/55841/4211/3643/7474/6776/596/23111/2803/2261/4208/8829/7048/57731/1735/5950/2247/8835/2691/9037/3952/585/79068/6387/23327/56920/2045/2690/8292/4035/32/23414/6857/4886/2697/367/7049/3479/9254/51760/2593/652/4137/2066/8614/10551
## GO:0010506 27074/7345/8767/3458/57103/3162/2597/664/11040/706/2072/58528/10059/4210/9100/1020/533/26191/3091/3099/525/1981/60673/4504/55332/3587/57602/79156/3607/10018/1612/5476/2626/92140/55737/2932/3428/9114/1611/8975/1649/3834/57761/836/5747/10135/6721/11178/2081/8851/10456/25793/7855/9554/80149/5660/528/1459/23545/29919/84861/6009/7416/5291/10133/2773/23604/3586/5305/51606/8517/51100/51322/23256/55294/79837/3146/6885/5566/529/3565/4218/9711/2475/64223/523/23367/526/4170/4534/9559/5599/10542/9776/57154/28956/26073/2017/10269/527/64121/81876/8897/55626/58533/1982/10524/10193/11011/5587/10346/148/5296/5290/6829/55255/2801/10533/207/10558/2033/5571/22933/27/155066/4233/11067/80317/823/114881/10670/11315/9682/80772/51382/826/2931/7957/6048/9517/6737/9821/9550/27429/1263/29110/5049/1613/5565/5868/148022/4864/6774/140710/29082/23400/6093/1915/572/29978/8396/93974/10645/55763/90410/79594/10013/3064/8992/23118/25/9637/9927/8925/5899/27131/56893/9531/22930/10392/26471/2670/7405/23032/23274/11043/54832/54922/8408/7249/10241/2309/472/65018/535/534/51422/23411/9528/7942/29108/5562/200576/6622/5071/8649/51520/154/3315/11140/23265/5595/5768/9638/10206/7157/84148/5563/55187/6794/5564/665/3082/3791/10325/1917/596/54209/8678/7248/4734/11180/23255/66036/7507/2308/8100/201163/3953/53373/81603/6625/3952/23677/10769/6720/7494/25827/79443/26353/3357/1634/57535/3708/4137
## GO:0046434 4521/3613/5214/7378/55526/9688/3101/26330/54541/9388/4860/2821/336/57103/341/5336/7167/2584/11332/25939/2597/5230/9631/2023/10591/5223/100/27293/7374/5208/6396/215/5210/23165/5315/3251/22978/55706/23636/5027/3692/3091/3099/7415/5142/4927/79902/6996/10762/8480/55753/3607/9588/11097/3939/8898/7498/3417/5232/5444/9972/81929/2027/5211/2646/51071/5236/57122/272/5209/79023/1267/9818/5313/229/27115/2876/3949/4913/949/6521/23511/79077/83440/5335/27329/226/51085/23583/230/23279/2645/5151/7175/6610/5465/55270/8930/5152/23659/9108/4967/5213/5207/51548/11319/23225/10891/5143/53343/3630/8021/53371/3704/954/5144/10908/5571/3094/3612/11277/4928/2026/3098/89/8867/669/4923/8086/4968/5408/405/5169/9883/6774/2103/283927/5728/51341/10924/5903/56623/4907/348995/55746/863/51763/4656/26471/57406/3990/10846/38/3356/22876/8473/23417/5168/55512/5580/51573/51422/5224/6609/5141/5562/56953/9611/9759/7157/957/9583/8654/5563/79873/79153/3643/8605/8604/8622/5136/956/2203/5138/2819/23171/5167/26137/3479
## GO:0031669 1515/53335/1824/3934/7378/440/55630/6715/51765/1535/26/3162/1594/867/5024/467/3383/83990/3600/6513/58528/10059/468/1312/1030/5027/4141/5743/10518/9681/5469/1536/9131/1981/3920/3297/5610/5594/5366/10991/3428/8805/1611/6422/360/81929/26263/7184/3170/9971/10135/6721/3309/1026/5292/11170/80149/5251/1965/7351/4654/6722/26608/2348/3745/1591/6647/51100/10985/56270/2534/7421/4193/26100/2475/8493/25828/10634/79726/5599/784/355/81631/10514/5028/5030/8735/9463/64121/54434/9451/968/8897/55626/4217/5587/8428/29103/10533/22938/846/4780/10670/10919/6263/8074/6872/54407/7392/54474/4149/10458/5289/11133/4976/8131/3725/23334/79567/2350/54468/659/11152/25994/30849/7486/3178/5899/55062/23378/3077/23032/23274/7071/8408/5179/2242/54332/5287/23411/8658/5562/51520/5595/25959/7157/5563/490/55846/2752/8648/440738/5164/3371/10325/55364/596/8644/5025/8678/7248/7482/22863/5029/2308/10641/54795/1277/6591/5468/5166/4023/3952/93664/3625/6720/7494/2621/5764/27244/54361/213/10631/9607/57535/5105
## GO:0010001 6279/983/5080/6664/26227/4821/6663/57211/712/10397/4067/28999/27242/2950/3066/1031/1812/274/664/2840/79152/6285/1445/1020/6659/4781/5604/10675/7124/745/3569/7097/9334/7852/1000/1956/1959/4192/7133/4504/728/25825/5594/8891/1814/56288/7101/3398/2896/9283/1267/2358/2043/208/10215/3949/5970/6009/6608/3065/5453/7448/11221/4099/6647/7099/3553/5781/10419/54413/4851/9948/58158/2475/2250/4665/27339/80045/928/6657/3845/4825/9463/177/1967/23529/3766/8890/1600/207/2147/7040/22933/3084/10810/4664/5270/6886/2016/10893/9968/6692/7080/8892/2064/23385/351/6497/9331/64398/4919/6774/135/1021/79727/10100/5454/5663/79885/8893/5728/7223/387/10319/7431/650/6900/7161/1605/25/5803/429/3976/2596/4916/6662/5649/8521/23500/5076/5354/2065/3280/4779/53616/79006/3611/8506/8929/2068/79628/5595/56339/4763/23405/1499/22891/4920/26011/54209/9639/2817/3400/1902/2934/5468/6469/4653/5764/443/3908/4035/4915/1191/2737/1746/54587/3913/3572/4137
## GO:0009167 983/891/5214/55526/8833/9688/6472/3101/26330/3948/54541/2821/57103/1537/5471/7167/9377/4436/2584/30968/353/4626/2597/637/5230/9631/10606/2023/5223/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/3251/158/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/525/1349/4708/9414/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/2618/1329/5232/4719/9972/4697/81929/4702/4354/2027/516/5211/2646/4694/1340/5236/10845/57122/272/5209/79023/4712/9818/4722/5313/4711/522/229/1337/7381/4710/8573/7384/10476/514/6521/9605/1327/23511/9167/83440/1738/65220/3614/226/4706/132/51085/515/230/471/23279/8505/523/2645/526/7175/1740/5465/2987/4717/51079/10632/4967/4720/271/5213/5207/29789/4709/51548/498/1352/4713/11319/23225/10891/53343/3630/4625/8021/1345/4701/2631/53371/1739/79736/29103/4729/7040/5571/11277/4928/2026/4714/3098/6901/4696/11315/159/7114/89/669/521/539/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/4907/79085/4707/348995/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/64077/51422/5224/5562/6622/56848/9611/5198/9759/270/51292/7157/957/5563/3643/3615/54209/8604/201163/481/477/2203/2819/5167/26137/3479/26289
## GO:0030308 53335/1029/51083/1594/55840/1031/2023/2539/3475/7473/6696/84722/29948/80128/8751/1020/7143/5467/1410/7490/5795/4504/57805/54825/5371/2786/6597/1032/6422/4878/5058/5931/3172/8851/1026/393/4722/5997/684/623/27296/4133/400410/9538/6049/51379/56981/11007/51094/2661/4099/131566/5245/5465/55558/51079/3273/5518/58189/27302/9792/26585/2100/978/859/9150/7040/3621/23251/694/5999/5270/10201/79602/186/4633/2931/2658/4089/1654/7528/91/57142/57446/183/81501/23105/79594/3300/5515/6259/8692/659/6494/2258/9423/1630/55602/5538/4879/8711/64321/29946/5802/6595/23411/9706/3624/56848/7157/79960/4088/6794/94/51447/54879/3373/604/1027/322/7474/596/23111/6586/4881/7042/65981/9353/8829/323/201163/55384/5468/9037/23677/4856/2273/7481/56920/2203/2045/4487/5167/64061/2487/2697
## GO:0009161 983/891/5214/7378/55526/8833/9688/6472/3101/26330/3948/54541/2821/57103/1537/5471/7167/9377/4436/2584/30968/353/4626/2597/637/5230/9631/10606/2023/5223/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/3251/158/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/525/1349/4708/7372/9414/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/5634/2618/1329/5232/790/4719/9972/4697/81929/221823/4702/4354/2027/516/5211/2646/4694/1340/5236/10845/57122/272/5209/79023/4712/54963/9818/4722/5313/4711/522/229/1337/7381/4710/8573/7384/10476/51727/514/6521/1723/9605/1327/23511/9167/83440/1738/65220/3614/226/4706/132/51085/515/230/471/23279/5631/8505/523/2645/526/7175/1740/5465/2987/4717/51079/10632/4967/4720/271/5213/5207/29789/4709/51548/498/1352/4713/11319/23225/10891/53343/3630/4625/8021/1345/4701/55312/2631/53371/1739/79736/29103/4729/7040/5571/11277/4928/2026/4714/3098/6901/4696/11315/159/7114/89/669/521/539/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/4907/79085/4707/348995/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/64077/51422/5224/5562/6622/56848/9611/5198/9759/270/51292/7157/957/5563/3643/3615/54209/8604/201163/481/477/2203/2819/5167/26137/3479/26289
## GO:0050821 1448/51512/23560/22948/336/80155/908/56926/3329/10576/2597/483/3009/5479/11200/11040/7428/6789/6659/7480/1410/5216/7203/9770/7305/3920/10574/4504/57733/3054/10575/57602/9532/811/8975/3326/2896/8774/6788/1857/1026/5217/9099/2043/5292/11331/3320/7756/6608/389856/10728/9349/58525/7917/55294/5245/10694/335/11235/63943/6201/10891/8239/3916/1409/2316/11261/1370/7341/23252/6907/2033/2319/149628/11277/51125/8575/11315/54765/7874/29974/57142/6872/173/55729/9026/5728/1855/51701/4092/79594/89781/79155/10869/1828/23673/64175/64844/1385/22848/5300/9531/6135/6880/1022/9894/23032/287/60485/9529/64321/5190/65018/6400/5580/8613/23515/902/9919/5071/5824/2776/3092/79612/10211/7157/56912/4088/5295/7320/819/54997/7466/51616/1942/482/8863/4194/7248/1389/66036/91949/29997/481/10103/6812/4487/1191/3479
## GO:1901292 4521/5214/7378/55526/9688/3101/26330/54541/4860/2821/57103/7167/2584/11332/25939/2597/5230/9631/2023/10591/5223/100/7374/5208/6396/215/5210/23165/5315/3251/22978/55706/23636/5027/3692/3091/3099/7415/5142/4927/79902/6996/10762/8480/55753/3607/11097/3939/7498/5232/9972/81929/2027/5211/2646/5236/57122/272/5209/79023/1267/9818/5313/229/27115/2876/4913/6521/23511/79077/83440/226/51085/23583/230/23279/2645/5151/7175/5465/55270/8930/5152/4967/5213/5207/51548/11319/23225/10891/5143/53343/3630/8021/53371/3704/954/5144/5571/3094/11277/4928/2026/3098/89/669/8086/4968/405/5169/9883/6774/2103/283927/51341/10924/5903/4907/348995/55746/863/4656/26471/10846/38/3356/8473/23417/51422/5224/5141/5562/56953/9611/9759/7157/957/9583/8654/5563/79873/3643/8604/8622/5136/956/2203/5138/2819/5167/26137/3479
## GO:0050808 991/6712/7804/713/5100/712/8326/10397/78999/3897/9758/5641/1812/119/10288/10507/7336/575/203068/22943/10059/7534/9806/8997/5457/1020/7143/9456/7124/7097/2048/63827/348/1000/4644/7415/5216/2213/23657/3556/11202/6376/1134/1981/91752/728/3587/2047/2554/23769/1496/8898/55737/4898/8934/9148/1432/9118/6792/2049/6780/382/4914/10097/5747/54583/56132/1141/8936/23114/40/55906/2895/8851/5217/8828/1399/2043/58504/26050/2562/7855/266977/1813/10479/9762/22997/4761/1072/5621/7477/10939/55607/2561/9419/27185/3586/4593/43/5818/4076/1948/8976/2534/5792/26280/7074/2902/50944/60/1282/2119/54413/1627/998/2668/5978/1108/5020/7476/869/2904/1740/53942/9093/23316/5063/6495/10882/6853/1826/25978/1607/2566/2017/1006/3706/3684/23654/9463/3630/54434/23191/56125/1739/9746/57408/4897/23394/378/22941/22953/8536/3084/5098/10810/577/6620/1741/1007/1742/26059/22865/10243/22883/10369/64218/79012/71/816/1946/2064/8927/22866/351/27253/87/8443/10458/27286/4976/6623/5663/23237/2339/10163/718/5048/54549/27020/5728/1855/375790/10013/22854/387/23613/2693/6259/6900/4983/1821/1605/102/11141/25/51104/288/1488/10152/56130/5300/55619/9423/4204/11079/4038/2596/5800/9378/4916/10611/5913/81926/5649/9722/10160/22899/2555/23129/5789/9379/7846/5802/26052/6405/79414/1639/22871/22859/55752/6622/1760/8321/56123/7337/1499/6453/4131/23544/4776/627/22891/27445/23767/115703/29882/3371/2915/831/3643/7402/7474/9231/2823/1942/22829/2149/4628/3675/5021/26037/23284/80823/7248/65981/4208/26045/8829/64284/1140/4747/4744/5064/11346/7058/1501/3480/5764/7162/2045/5364/6678/79953/8292/4915/2239/55638/54674/3913/9863/8404/576/347902/1287/9723/9254/2743/57502/4137/2066/1524
## GO:0009408 3627/81570/9688/3654/22797/4067/6489/3162/3066/5024/9631/11168/6396/10808/1244/23165/929/55706/23636/1410/5743/3301/7415/6119/26973/4927/79902/3310/3297/10762/57805/10294/51501/5594/4277/8480/8891/27000/10049/11097/9532/6769/51278/51393/2932/9972/81929/3552/3326/2288/57122/5931/79023/9818/3281/1026/5313/6117/3320/1965/9261/4842/23511/10728/3337/6647/1361/23279/6118/5566/55466/2475/64223/9530/7175/4287/9093/59341/2660/488/23225/1616/6869/1967/8021/53371/815/7341/8890/207/2033/818/4928/5609/8086/49860/816/8892/545/27429/1068/7531/9883/7266/8893/5903/348995/10777/4846/55746/9531/10273/9529/472/11080/23411/2729/7057/5595/4763/1387/100507436/6750/3490/947/844/573/2246/10016/3306/26509/6387/3305/56892/26353/7041/55107/3479/4137
## GO:0090276 10874/952/6352/114/56943/3458/2867/292/6513/5208/8997/5127/6659/6566/5467/2692/7124/2641/3091/1956/26251/3814/1080/25874/55636/5578/1374/7036/8431/6422/5211/3170/9971/152/8447/5019/3741/3172/402/65985/2243/3710/51768/7351/2266/3033/1813/3799/773/353500/9255/3745/65220/3553/5781/7074/9515/7447/3651/2740/3358/5978/2645/293/2850/4843/5879/3747/6804/6616/23568/2044/23178/4825/5715/3630/9324/4760/3717/846/4544/5581/2244/3156/5906/51762/23435/1803/51714/1946/640/2852/7849/10312/572/27230/6514/2822/116/9575/2693/291/2695/9448/8398/8620/8600/3670/3077/2696/57818/6810/2029/6934/1392/1268/406/5991/3709/5532/5071/777/51092/5530/23409/8609/6453/408/8660/11132/2752/3382/9024/2746/80024/9501/3790/6717/9854/54795/23410/5950/2281/10411/1393/2691/3952/8864/3625/4856/6720/6833/775/8938/4035/11069/55638/2697/55107/3667/7349/9607/150/9254/18/776/25924/3708/2922/7021
## GO:0051650 9493/23413/1001/1075/5871/136/1138/321/3351/1812/10652/4647/10059/80128/6396/1020/10675/5027/4644/7039/10125/2153/10755/28964/10113/1142/5582/10959/55212/1785/2932/51693/23513/1137/6809/54732/1141/9381/1522/91683/5579/6855/8447/27095/5265/10342/5217/6845/10802/83696/10948/8573/4133/9554/1813/8541/3799/2348/1780/64149/8615/3676/5873/8517/8976/5861/9515/23256/5537/90411/4905/594855/59349/8618/547/7476/9342/3998/8766/2332/9699/10175/6853/8943/488/434/6804/5028/6616/5030/51128/10749/81876/3798/55291/10972/22870/6811/815/148/2801/5908/553115/5906/26059/1176/9871/9570/9783/22920/8867/7109/23332/81/320/2901/1453/23095/5868/1861/9230/8775/22999/135/5023/54874/2647/5663/11196/22872/5048/10282/1855/8120/29058/3064/10540/10053/374/357/9632/8729/1488/4033/11127/4935/9751/23285/8195/55062/1201/22930/966/8973/114088/5864/55435/10427/79090/8546/6399/6517/3356/2157/65018/1268/4641/9919/2890/783/22871/6622/55717/5071/107/10947/10484/9581/1499/9371/10497/64689/27445/23396/23243/23621/63971/8452/1129/5590/9162/6843/6844/9900/10016/23122/8825/8448/64284/8773/6812/80208/585/93664/1294/79443/6857/55638/776/79083
## GO:0042770 2305/79733/983/1111/51514/6790/891/5347/51512/5111/10397/1869/2810/79915/995/637/11200/7027/4683/9100/3276/6659/23028/4282/672/1820/675/988/23019/5591/5366/835/5371/5716/8444/60561/1432/2765/29086/9125/2885/1017/7029/387893/1026/9521/581/29883/4849/7023/972/4193/56950/10498/3090/22976/28996/8493/1874/27339/6615/79184/10269/51499/1859/602/7471/51343/10524/4848/754/2033/960/149628/55367/11277/1655/545/1263/6672/8738/9577/4850/51147/57472/8555/9337/5934/27330/51720/64844/1647/25/842/22925/7291/5325/57060/27063/10538/2309/55702/472/23411/546/200734/80254/7157/51065/28984/1027/4194/6591/7832/10769/4487/4646/4582
## GO:0048813 7804/10507/10059/3251/8997/1020/2048/84079/50674/2047/1496/5911/2932/6792/7533/2049/10097/1141/7101/11178/10006/7224/8851/2043/6845/4205/26050/10371/4133/22903/9762/54942/1072/3196/55607/4076/8976/2534/7074/2902/50944/54413/1627/998/7436/7476/23316/5063/56965/1826/3706/815/8301/1523/23542/577/3688/50488/1742/23543/9820/7225/816/26012/23011/10458/4976/23237/54664/1136/5048/4891/5728/1855/10013/102/11141/473/10152/80243/55619/23098/23043/4038/57498/10611/5649/10160/6383/5789/9344/23363/26052/9693/22871/3611/7337/5530/8609/4776/22891/64689/115703/6794/29882/1952/1942/66008/26037/80823/4734/65981/3397/8829/9201/22906/1501/5764
## GO:0010948 991/10403/79733/6241/4751/983/4085/81620/2146/7272/9212/1111/9319/51514/6790/891/5347/51512/9700/5888/6347/29980/8326/1063/5111/5688/5709/26271/641/1869/1029/5698/55159/5693/8317/5713/5721/2810/5691/1031/995/5685/1019/5690/5684/5885/5686/5695/11200/10263/7027/10213/1761/23198/8883/54908/4683/3276/63967/5699/899/6659/5714/8260/4282/5702/1030/9978/5708/11335/5692/7517/5704/3135/672/655/8328/5683/1820/23019/5591/5694/835/8454/5371/5810/5718/5682/79577/8091/5716/1032/811/25906/5707/60561/3834/9126/2765/29086/10432/3326/9125/23026/29117/4869/5931/8379/5017/5696/1017/7029/2124/1026/22809/5928/5514/25793/11170/5719/5700/4361/581/84861/5717/27183/29883/60672/7756/10197/4342/7465/23468/677/1876/55795/4849/7023/4221/10385/56984/10138/9349/5706/131601/51085/5710/55294/4193/10498/7014/6118/10457/1874/54998/7175/4591/5526/5689/9555/79184/5720/8243/80012/5701/9491/23512/8409/5711/5715/51499/51343/4848/9861/8726/2033/5705/55367/9314/10201/10919/2852/7013/1263/8738/4149/317/51451/51143/1021/10735/9577/4850/57472/8812/57165/8555/5728/23063/51347/9337/2301/5934/51720/23269/1647/989/4682/55755/3976/5325/57060/6045/79366/8850/79813/55031/2648/5573/138151/8737/1911/472/1025/56155/6015/7703/1112/9344/5932/8658/546/3550/8929/56890/10106/5925/27243/25959/7157/79960/26058/6500/51065/23429/28984/4303/3275/604/1027/596/10217/1843/324/678/595/58190/4194/10040/6419/5311/80279/23194/29997/10795/51339/25949/146691/7832/10769/2273/5988/57551/51149/4582/652
## GO:0010959 3627/6373/4283/23630/6352/5026/81831/3755/1230/6347/1482/6351/10859/4067/1535/5336/11151/51083/5031/3757/1812/578/3753/10288/3208/5024/483/274/3383/2539/8514/706/6375/409/6406/55151/930/9456/7439/945/468/9474/5027/2641/7852/5743/6262/4644/57214/5142/23566/6376/3596/786/1908/2280/1950/88/55636/2257/8811/5371/117/6769/1785/51393/1394/1814/4878/255057/7533/375346/9002/8832/30820/6690/9446/8291/774/7018/3741/920/2745/134/1729/3792/6786/2035/55532/623/8573/2056/581/1813/4842/3799/6327/5294/6331/5621/2185/5335/29763/9472/5987/2534/2902/6271/3787/9943/9001/5566/1756/3746/2645/5155/5777/2847/781/2332/2775/784/7222/3747/9914/785/567/9368/54800/2631/1739/353514/476/815/859/2316/11261/2859/57158/65125/7341/1193/22953/5318/5144/207/2147/7040/846/4544/3759/5957/5581/818/6236/2916/51297/5999/5270/28954/3060/11060/4923/967/7225/816/81/2852/7531/6324/57338/493/3779/1804/135/6640/183/30819/5023/5774/7009/3603/5319/116/57165/5728/8787/3064/782/10345/387/799/6781/4987/3200/8398/25/63892/288/5664/5170/3958/4986/1815/4846/2771/11027/51763/3077/287/23479/3781/538/10768/9722/3356/9992/2040/1392/4638/27075/5187/6546/9104/783/6622/30845/7070/4985/6588/3784/10681/56848/7881/154/1760/1499/51719/825/490/10268/845/6548/2669/3736/27347/54997/7402/51669/7466/29098/7779/596/482/2149/54209/5025/10142/80024/844/6844/187/79026/5311/4734/2259/3270/6717/57731/481/2281/1272/3306/7220/2946/477/2273/6387/23327/5159/857/775/23171/5350/55800/2697/7349/150/5348/776/8614
## GO:0051054 2305/79733/4751/983/81620/9212/79075/5888/7037/22948/5984/4609/5111/1763/1054/8317/57103/4436/5982/908/79915/30968/10576/7468/5788/7336/2140/30009/940/409/5983/2138/5588/8914/4683/142/1786/3014/22880/3569/7454/1663/11124/1956/7490/7203/672/27101/958/3297/10574/5591/5594/10575/2264/79977/5371/5582/7334/3558/5985/54929/29086/3326/10097/6714/65057/1017/8550/2069/5514/3181/26272/55183/4931/4361/3320/400410/581/25849/79035/4142/10155/7292/1660/2185/10728/9025/58525/29947/3146/22976/3565/54726/10694/3265/5155/79184/5063/56979/23514/51548/5879/2521/10891/2074/8239/23347/2021/26585/3184/23529/9869/207/7040/7520/6188/9314/5609/51750/80174/8741/545/55135/7874/64210/55729/253980/9577/55719/5073/3725/25865/54537/2736/4255/51720/55196/7126/7515/80351/11284/7486/4292/3178/4204/79991/4862/2260/140609/472/5580/23411/25913/8658/546/7158/10111/2067/466/57343/23201/5595/6416/1499/54737/6778/2735/28984/7320/3082/306/23272/322/4216/80169/55693/79618/6419/10039/2247/50507/5159/1471/57332/51149/7349
## GO:0007187 8685/3627/6373/4283/333/133/1230/6347/3973/6751/136/114/2642/4159/3351/1812/8698/79924/8477/2692/4543/4160/5996/2641/2827/6755/23432/23566/4161/6753/5567/5578/8811/2829/1232/1394/153/113/1395/4158/1814/155/2778/5732/796/8484/5731/2770/4883/9283/2781/2358/134/2357/2914/5997/346562/266977/1113/1813/2861/4842/5734/109/2773/4988/1269/10419/6754/2740/1816/5739/2847/2917/11245/2782/5028/3352/9340/9368/2918/6014/2316/19/5144/846/2912/4544/4157/9495/11251/186/301/2931/2899/1906/5196/2852/1325/11214/493/135/183/7253/10672/10163/10267/116/4852/799/2587/4987/5741/7432/4986/1815/2771/112/3354/3355/60626/2913/1268/554/115/9693/4985/3375/107/2869/2774/108/10268/6752/5745/1129/3350/1901/4887/1902/5064/2691/10203/1909/5138/2550/7433/5350/5744/4886/9590/150/10266/776
## GO:0051216 5307/7298/50515/8200/8372/8092/1302/1116/11173/3696/3549/5447/2251/2254/4781/7480/3091/4192/655/10736/4880/176/2101/265/9421/8091/51320/1432/54928/2778/651/5081/202018/5970/9350/6722/5915/353500/7067/7477/871/4617/11061/656/654/10498/2734/7476/6615/6660/7045/59341/64764/10269/27302/9451/653/26585/4209/56914/7046/7040/960/22856/65992/657/23213/1906/2658/2249/649/2822/81792/3491/3207/4094/650/2736/8692/6781/3200/5741/659/7076/9464/5916/8195/1893/4090/2260/538/55790/6662/6474/9321/55512/5310/51222/579/399979/4086/5595/1499/3232/23314/7059/4088/4017/860/3221/94/5914/3373/5745/1301/4920/7474/6468/8840/1490/1280/3213/3202/2261/4256/7482/4208/4322/5396/7048/4060/1277/2247/6591/54360/7227/81029/3952/1513/4488/2202/85477/4856/7481/116039/8817/7704/4487/658/2737/5744/2121/2487/1746/6935/1311/652
## GO:0044262 5163/3613/5341/3973/3101/313/54541/10331/5226/57103/2642/3418/5449/5031/27235/2584/5499/7262/5223/6513/4759/5208/5210/5834/51805/2805/5165/2641/9334/3906/3099/57001/80183/5724/5255/57733/11181/1642/5771/3607/10020/5366/8898/117/7360/3417/2932/79369/2820/51744/55577/54928/2784/2646/3170/5236/10678/2992/6714/3795/8291/5209/231/8445/9942/208/2710/2997/5500/2131/2132/4142/2720/5501/51094/2185/27329/3486/57223/10447/64768/673/2683/5443/2475/2645/5465/2538/9348/9108/5207/51548/2585/5028/3706/10269/10891/23178/3630/80168/3037/207/60343/2033/3612/5581/5260/5504/3098/89/2931/8867/114897/4923/5509/3269/2852/10776/1609/51477/10296/6774/140710/51451/2103/572/2822/5257/3036/5506/5728/79158/950/5903/56623/5741/55454/8908/55347/2998/6652/4204/8850/6095/863/55277/51763/4656/2648/26471/283871/3488/2548/55790/8473/23417/5256/3425/51422/23411/2632/9104/4779/6622/178/5071/10499/1353/1407/1196/9759/7157/26007/5261/8660/5164/2712/23262/80201/5745/3643/5836/3340/27232/5837/8604/55556/2308/3953/10580/51294/5166/26509/3952/8864/5502/6097/2203/7033/9677/32/5167/4485/3487/3667/3572/3479/114899/8972/9370/5105/5507
## GO:0007626 3620/2019/7345/5194/114/57152/7111/321/4159/1812/55079/7545/409/1476/3251/8997/7143/57282/2395/2906/348/4644/551/1143/238/55636/2257/55737/123803/1814/1137/3170/1141/3398/6531/774/1267/9099/2043/5309/4669/55236/2636/2911/5660/54982/1813/2861/9293/6647/372/6323/4988/8704/2902/2119/793/3358/28996/2668/2475/51286/5153/10882/2775/1826/6616/10269/3236/55283/3766/1600/51168/3084/5581/2916/11315/1742/2764/6886/1803/4923/7080/2741/1949/3235/27429/320/351/5090/4864/135/6623/1497/1136/5048/3074/5728/6801/9698/2693/6900/2695/4987/57144/55074/80243/54112/4986/1815/4204/2059/9896/9112/2548/538/5538/220/463/5179/22876/7200/1392/60314/3218/7054/9620/89797/83464/5532/53616/6622/5071/4985/10499/9611/23230/23544/26058/23259/8322/2571/2915/4211/1958/460/27306/4887/1621/23284/7248/4929/55084/57731/56172/6414/80208/3751/477/6387/6571/10752/4886/2743/18/4857
## GO:0046718 983/3695/7037/59272/79581/6317/8372/942/8547/1234/3383/5806/2219/4360/6510/3965/6404/6504/9076/83737/7852/1378/5817/1956/1525/7293/1380/5034/26762/9972/9074/50848/1508/9080/2993/55065/920/3839/3949/941/3694/156/949/5478/7726/3416/325/7706/5818/972/1948/1604/11074/7301/6993/10572/8724/51193/10332/3956/975/8673/3916/1969/85363/3678/3688/11060/1803/6737/1949/10107/4340/10475/4864/7113/8764/950/30835/2838/8692/3690/1605/3673/858/4684/3440/7405/8519/11043/55223/2060/5819/23601/3356/6554/6575/3373/558/3685/10410/4179/11059/2934/81603/10581/3693/2621/857/290
## GO:0009126 983/891/5214/55526/8833/9688/6472/3101/26330/3948/54541/2821/57103/1537/5471/7167/9377/4436/2584/30968/353/4626/2597/637/5230/9631/10606/2023/5223/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/3251/158/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/525/1349/4708/9414/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/2618/1329/5232/4719/9972/4697/81929/4702/4354/2027/516/5211/2646/4694/1340/5236/10845/57122/272/5209/79023/4712/9818/4722/5313/4711/522/229/1337/7381/4710/8573/7384/10476/514/6521/9605/1327/23511/9167/83440/1738/65220/3614/226/4706/132/51085/515/230/471/23279/8505/523/2645/526/7175/1740/5465/2987/4717/51079/10632/4967/4720/271/5213/5207/29789/4709/51548/498/1352/4713/11319/23225/10891/53343/3630/4625/8021/1345/4701/2631/53371/1739/79736/29103/4729/7040/5571/11277/4928/2026/4714/3098/6901/4696/11315/159/7114/89/669/521/539/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/4907/79085/4707/348995/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/64077/51422/5224/5562/6622/56848/9611/5198/9759/270/51292/7157/957/5563/3643/3615/54209/8604/201163/481/477/2203/2819/5167/26137/3479/26289
## GO:0022612 5080/10481/5268/1051/9420/2253/7128/4781/7124/5629/1956/5469/4192/4478/655/6356/25928/7052/5371/23513/6422/6714/3239/11331/10371/5361/581/80004/8837/6195/5727/10913/6256/1361/7421/55294/2119/1999/9368/1435/284217/5626/859/1969/10765/7040/634/823/383/2267/10116/1896/23213/3911/1436/5154/10818/5324/2736/374/1605/5916/9423/6909/5423/3488/2260/6662/4824/23129/2263/8626/55679/8945/2252/6778/2735/3371/3082/8452/7474/57045/596/55727/7042/3400/8829/7048/6591/6469/4488/7494/2099/5764/857/1396/10512/3249/54361/2737/7043/367/6926/652/3169/5241
## GO:0009166 4521/5214/7378/55526/9688/3101/26330/54541/4860/2821/57103/7167/2584/11332/25939/2597/5230/9631/2023/10591/5223/100/7374/5208/6396/215/5210/23165/5315/3251/22978/55706/23636/5027/3692/3091/3099/7415/5142/4927/79902/6996/10762/8480/55753/3607/11097/3939/7498/5232/9972/81929/2027/5211/2646/5236/57122/272/5209/79023/1267/9818/5313/229/27115/2876/4913/6521/23511/79077/83440/226/51085/23583/230/23279/2645/5151/7175/5465/55270/8930/5152/4967/5213/5207/51548/11319/23225/10891/5143/53343/3630/8021/53371/3704/5144/5571/3094/11277/4928/2026/3098/89/669/8086/4968/405/9883/6774/2103/283927/51341/5903/4907/348995/55746/863/4656/26471/10846/38/3356/8473/23417/51422/5224/5141/5562/56953/9611/9759/7157/957/9583/8654/5563/79873/3643/8604/8622/5136/2203/5138/2819/26137/3479
## GO:0009144 983/4521/891/5214/55526/9688/6472/3101/26330/3948/54541/4830/2821/57103/1537/7167/9377/4436/2584/30968/4626/55034/25939/2597/637/5230/9631/2023/5223/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/5901/525/1349/4708/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/1329/5232/4719/9972/55669/4697/81929/4702/2027/516/5211/2646/4694/1716/1340/5236/10845/57122/272/5209/79023/4712/9818/4722/5313/4711/522/229/1337/7381/4710/7384/10476/514/6521/9605/1327/23511/9167/83440/2773/1738/65220/226/4706/132/51085/515/230/23279/9567/8505/523/2645/526/27304/7175/5465/55270/2987/4717/51079/10632/4967/4720/5213/5207/4833/29789/4709/51548/498/1352/4713/11319/23225/10891/3630/4625/8021/1345/79631/4701/2631/53371/79736/3704/29103/4729/9054/7040/5571/11277/4928/2026/23433/4714/3098/6901/4696/11315/7114/10201/89/10243/669/521/539/4338/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/4976/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/79085/4707/348995/51715/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/51422/5224/5562/6622/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/481/477/4337/4832/2203/2819/5167/26137/8382/3479/26289
## GO:1902107 3559/1230/8767/3574/3575/4860/864/3458/942/8876/10288/5788/100/3600/3549/939/3965/9308/865/5457/6850/7124/8772/10125/3071/3135/8808/4192/7305/3059/10221/54440/5578/3593/8651/3558/9760/3592/11006/2778/760/3398/2124/920/3635/10456/695/101/941/3606/6363/10892/677/7292/55795/11221/10385/972/7535/3707/3146/3565/51176/841/9092/9840/8943/1540/3142/177/3605/9398/1435/7040/51043/50943/537/114548/301/7189/5196/4323/572/2323/81501/3566/3725/3594/387/5458/2736/51561/1385/8600/3976/56998/22985/5896/8737/22890/8546/7071/57178/6777/2242/9655/5925/1960/3567/5914/4602/604/4920/54997/558/5590/4179/54209/7048/2353/6469/4254/7494/2621/7704/2737/2625
## GO:0010389 22974/4751/983/9212/51514/6790/891/9928/3161/5347/10733/54801/29980/1063/5688/5709/26271/641/5698/5693/8317/7277/5713/5721/5691/5685/1019/5690/5684/5885/5686/5695/203068/10213/7283/23198/8883/4683/10383/63967/5699/5714/5702/7480/9978/5708/5692/5704/672/55835/5683/22919/9793/5694/55722/8454/5889/5718/5682/8091/5716/79959/5707/60561/55559/4957/5696/9702/5719/5700/3320/5717/27183/60672/10197/23354/5706/5710/55125/5566/1069/5689/8766/5720/10121/5701/9491/8636/5518/23476/5711/5715/9662/8655/11258/11190/11116/9861/5705/10382/22994/22897/80174/9525/23332/79621/7531/351/5116/1453/6604/5048/79441/1778/80321/51347/10540/22995/55755/4204/11064/55031/22981/1454/472/5569/5890/1112/9344/7846/8481/1639/8929/5087/80254/95681/9738/6500/55142/4303/80184/7840/80169/595/1781/10142/9814/54820/80279/23194/29997/25949/5108/3306/5577/2273/5988/57551/51149
## GO:0010721 259266/5080/9355/6664/2633/4821/53335/952/6663/10859/6496/9289/23603/430/3418/51083/3066/26228/30012/55079/2539/706/3475/7473/22943/6696/81618/80128/10220/1020/7143/5047/7124/3569/2048/348/5469/11202/6376/10683/655/4504/4880/2932/9856/152559/811/8934/1814/7533/2672/382/1716/1977/2288/5747/7101/5058/50807/1522/3398/7224/9283/7274/8851/2043/393/5309/10215/5997/10371/3949/4133/6049/51208/3196/11221/4241/4099/27257/1656/1948/3553/55294/6993/4838/4193/10498/54413/4851/5978/7476/5465/55558/396/6657/59341/3956/7015/9745/2796/4825/9860/567/4168/9181/7068/4854/6014/1400/859/9150/1600/2147/7040/22933/3084/2664/23251/10660/657/5999/5780/23380/2931/56478/7225/1949/1946/81/4089/351/7528/57142/6497/6774/79727/2580/5663/22882/116/5048/5728/23105/2039/10363/387/5458/7431/6658/6259/6900/9448/7161/10519/2258/429/55755/9270/4974/3670/9921/9423/112/1630/54328/1270/4038/5800/55435/9139/1620/9529/4916/6662/1495/2309/22876/6911/23500/5802/7025/26052/1910/4070/3280/9706/9693/22871/3199/7070/23108/23189/8929/7337/5530/6532/4763/29116/23405/5087/1499/29956/7157/4776/22891/64689/4057/4882/22902/23258/182/4211/7474/596/23111/1942/4804/66008/58190/7248/1809/3397/11075/3400/9353/1902/8829/1735/6695/5108/55198/6469/5793/2192/1281/9037/6653/85458/10769/5764/56920/2045/5376/89927/4035/2737/5744/10631/2487/1746/63923/2200/3479/27124/2066
## GO:0009123 983/891/7083/5214/7378/55526/7298/8833/9688/6472/3101/26330/3948/54541/2821/57103/1841/1537/5471/7167/9377/4436/2584/30968/353/4626/2597/637/5230/9631/10606/2023/10591/5223/1633/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/3251/158/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/525/1349/4708/7372/9414/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/5634/2618/1329/5232/790/4719/9972/4697/81929/221823/4702/4354/2027/516/5211/2646/4694/1716/1340/5236/10845/57122/272/5209/79023/4712/54963/9818/4722/5313/4711/522/229/1337/7381/4710/8573/7384/10476/51727/514/6521/1723/9605/1327/23511/9167/83440/1738/65220/3614/226/4706/132/51085/515/230/471/23279/5631/8505/523/2645/526/7175/1740/5465/2987/4717/51079/10632/4967/4720/271/5213/5207/29789/4709/51548/498/1352/4713/11319/23225/10891/53343/3630/4625/8021/1345/4701/55312/2631/53371/1739/79736/1854/29103/6470/4729/7040/5571/11277/4928/2026/4714/3098/6901/4696/11315/159/7114/89/669/521/539/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/4907/79085/4707/348995/11284/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/64077/51422/5224/5562/6622/56953/10111/56848/9611/5198/9759/270/51292/7157/957/5563/7084/3643/3615/54209/8604/201163/481/477/2203/2819/5167/26137/3479/26289
## GO:0035150 952/59272/133/2643/136/2730/2296/3162/3351/1812/3383/239/5467/9474/5743/8985/348/551/1956/1908/5724/5910/4880/151/5345/4878/40/152/3741/134/3792/5997/2243/2876/10911/1113/2266/4842/3274/59342/6647/80005/2303/1816/1636/1131/80852/5028/3352/6869/3630/148/207/846/4544/2244/1401/3156/186/3269/1906/2852/3779/135/6093/183/5023/116/9475/387/624/27345/8398/659/9270/4846/8195/112/4879/59/3356/3827/2982/1910/6546/3363/10242/2729/3672/5286/2150/1889/9732/2702/6532/1373/490/3043/3350/5592/2149/1621/4881/5797/5029/1907/54795/3952/8864/477/857/1909/4922/2697/185/3357/7349/150/2053/1311
## GO:0021700 991/9319/6790/891/9928/53335/6663/1001/55612/994/712/7298/10481/26271/6496/8941/51083/10507/2539/3600/3549/7534/10220/7422/865/5047/23028/9991/2692/7480/9334/63827/3091/4644/26047/5216/164/6376/84079/1080/30813/1672/675/4880/6261/9148/23318/1649/23114/6690/11144/3398/2688/6855/631/51441/1050/2069/1618/8851/1026/695/7855/2056/54738/6363/2266/26057/4761/26133/1738/2185/23787/27185/23294/372/5798/55908/2902/50944/29842/5566/2475/26256/65010/6366/10882/3050/8943/5518/9175/5452/9985/4825/9463/9897/7471/26585/4897/3516/6954/8301/22933/10981/5881/79670/2038/59067/10116/1742/57030/8578/22883/6886/967/816/351/10296/9331/4976/30819/5979/27289/718/5728/375790/54345/51341/387/650/2624/51360/5414/6900/26468/5741/1605/473/5972/8419/429/4204/5864/8854/9378/2260/5649/2309/22899/6911/5076/64131/5991/1910/3280/11334/23682/22859/399979/5925/2068/4763/1499/4131/23544/4776/7059/10265/4057/860/29882/4882/1203/94/10365/5745/4066/1028/7474/11057/558/596/1901/2034/3202/2261/11005/4929/1235/7042/1003/283/57731/8642/9855/4747/5468/5064/6812/3952/4488/79633/4313/7494/4653/5364/8938/55638/2697/1811/3479/3169/1524/25893/2625/5241
## GO:0034612 2633/3576/8792/6352/3934/445/6772/6347/2643/5688/5709/330/9447/5698/4050/8970/7412/5693/608/1535/8372/959/5713/27242/2950/9705/5721/5691/8877/1116/5685/3383/11173/5690/5684/5686/5695/10213/3735/2634/23198/939/57817/7128/1244/5699/5714/929/8115/9076/6850/5702/7124/4049/5708/5743/4055/5692/8904/5704/7186/672/834/7293/5683/7133/958/5594/5694/5771/4792/7185/1147/5718/5682/5716/6422/5707/1432/10293/10010/9971/836/5696/970/1050/3987/6868/5719/5700/8531/5970/80149/4654/5717/8744/10197/677/57824/7292/8740/1660/51208/2185/2937/10913/5706/8517/943/5710/51330/29965/9825/9530/841/335/5689/22954/9966/5720/5701/9491/6401/837/1540/329/8754/10891/5711/171392/5715/2021/9181/60401/3604/8996/4217/56928/3037/9020/9861/207/3717/5705/6188/7132/259230/4780/5609/11093/7114/58509/1896/10594/944/965/8741/3856/7187/1906/81/2852/4790/8717/22900/81858/81501/8764/81792/204851/10616/8718/55022/7538/51588/8887/8995/8692/102/10519/8600/27063/6095/51763/4656/2648/1687/8737/338/4824/64848/6517/2309/55512/23411/23495/8491/29108/8567/7057/2150/54469/3611/5071/2874/10401/5595/9759/55914/3476/10365/3373/427/79092/100506658/678/3875/83483/1277/25999/1393/3899/2621/2819/10631/3551/9590/4982/9370/5105/2167/2625
## GO:1902903 6712/5341/29767/3055/1236/3925/7111/11151/119/9087/274/57180/3383/22843/84722/4771/8477/4690/246/79709/10095/8500/10096/1410/5629/7454/348/4733/8440/5216/23616/3071/6376/22919/3059/6356/88/1496/3984/5345/6422/26586/382/10097/2288/5058/8936/10092/2885/402/8851/10456/5217/822/7408/57175/2876/3949/10109/4133/10094/55160/10300/6710/5734/4281/54942/1072/2185/79929/55607/79998/9873/10093/5962/5987/8976/6683/50944/5829/157922/10178/2041/998/9948/58526/2475/11344/9530/9113/335/1440/7016/5063/6366/59341/7429/5879/2017/27302/6869/9463/10787/1859/23191/55604/9181/1739/55243/859/2316/7046/29766/10382/6188/4233/5581/10565/5999/11315/7114/7984/79933/6281/6369/961/1906/23332/29109/51199/4089/11214/351/6093/5663/58497/10163/10677/9026/395/6904/9475/10013/2039/387/4868/6708/25/6249/10519/11078/2258/23271/10152/55755/9270/8195/4204/116985/51763/2059/6711/55435/22899/2909/10395/9647/5580/2242/5756/4070/11034/91807/4641/1639/51332/29108/10435/10174/2150/6622/50810/5071/23189/5921/6385/3375/5925/146057/118/4131/23075/55616/4088/5295/28984/25876/6548/22998/1027/29098/1901/7168/1490/7840/324/10142/7248/9639/23122/3397/4208/11075/6709/9353/1902/8829/2934/57731/2241/10411/25999/50507/89795/54551/4926/24139/9037/585/85477/51474/24142/7481/23116/4653/6387/11117/10391/89927/1191/54361/165/10788/7043/6863/57551/50853/80206/51466/25802/2006/27124/4137
## GO:0050851 50852/2633/952/1493/3932/3126/8767/2533/5688/917/5709/28639/1236/5698/919/915/4067/5693/5713/27242/5336/9473/3702/11314/5721/28755/5691/26228/30968/3783/5685/5788/916/5690/5684/3937/5686/5695/100/10213/23198/5588/1445/865/5699/930/5714/26191/4690/6850/5702/5708/7454/5692/9404/3119/5704/5142/2213/54900/5795/3071/79037/5683/9402/5594/5694/5771/54542/8891/8454/7334/1147/5718/5682/5716/931/8934/11006/7294/5707/7006/3122/973/5058/5696/5579/4332/920/3635/695/1399/27040/5719/5700/5970/80149/581/5717/10666/10892/5291/10197/5621/5335/10385/5079/11126/5293/7535/5706/8517/2534/5710/5062/6885/3265/5777/5689/5063/5720/11119/9840/3113/784/5701/9491/975/1540/5711/5715/1967/8915/5296/5290/9861/65125/8890/5144/1845/5705/6188/634/50943/51324/778/23228/3115/7189/640/8892/4790/5074/7430/5663/23180/56940/10616/8893/25865/3120/59338/7462/933/149041/23118/25/5583/5170/3958/5819/23291/7070/2874/1998/1997/8945/8631/163486/6500/5295/6794/596/4208/3551/10451/3117/2625
## GO:0014065 55165/6352/4067/867/10507/1411/940/5467/7124/1956/10125/3059/56005/5594/10617/708/5747/6714/2688/10456/5008/3606/2056/23533/5291/5294/677/2321/8394/10385/11126/2492/5293/5305/8395/2534/7301/79837/51384/5155/5777/5526/1440/5527/3630/4150/4058/55615/9368/284/5296/5290/207/3717/2147/22933/634/26051/9314/5156/5270/1906/2852/2064/5154/183/8396/5728/8870/59338/847/3815/80243/7291/2549/2260/4916/6662/4824/7249/5649/3356/2268/23411/2065/2150/113791/7337/5595/4763/957/8660/5295/7010/23396/3082/3791/2322/2149/8678/6403/4734/219699/7042/29997/2057/79899/5863/3952/3480/4653/4908/5159/25827/5364/5783/4915/3357/3667/1634/3479/2066/2625
## GO:0043620 1111/768/5688/5709/5698/1051/5693/5713/3162/5721/5691/5685/467/5690/5684/5686/5695/7428/10213/23198/7422/5699/5714/6921/4690/468/5702/9978/5708/5692/3091/5704/8440/5683/3297/4504/5694/5718/5682/5716/1649/5707/54583/5696/3309/6197/5719/5700/5970/2056/5717/7311/10197/8453/3337/6195/5706/10985/5710/22926/4851/1388/5689/5720/6233/7316/5701/9491/6923/5711/5715/26287/3516/7314/9861/2033/5705/22933/4780/55662/8994/405/6872/9774/5598/7009/112399/3725/51360/64344/25994/571/9531/10636/7157/1387/10365/90993/55364/1958/2034/4734/10370/56892/4582
## GO:0001890 79733/8061/1515/3294/10733/133/639/2707/79805/2709/1051/430/1594/7262/100/3696/6696/50814/6789/899/6768/5467/4188/5604/5743/3091/1956/5469/9021/655/3297/5594/10049/9421/79977/10959/4158/1432/3326/1508/5747/54583/26528/2885/6788/1050/7274/7855/8728/682/64783/677/10155/7477/9394/4221/3586/6647/6256/23641/7421/7472/4838/10653/841/1046/6194/5155/59343/51493/6615/329/653/3516/207/3726/1045/5740/8022/9820/1437/3856/55870/6692/405/3491/10935/2693/2624/6781/8846/659/2116/3976/55224/6670/8521/79893/5333/7026/29072/3280/2263/5310/7942/3880/8289/10761/5595/2186/23493/22846/8648/1027/1028/4435/2034/4216/5311/23462/283/2057/4311/51294/5468/58495/3952/5764/5654/2697/1634/4693/8614
## GO:0034976 4102/3576/79094/80020/440/6347/1051/79139/3068/30001/578/10130/10897/23753/467/10525/10954/7353/7873/2673/4690/468/246/10952/29982/1663/58477/7415/7186/8440/2213/9131/116138/10987/1080/55741/2907/5034/5610/56005/5771/10018/5366/10113/5923/9217/5371/10134/26291/2932/9114/811/8975/1649/7184/57761/6745/11015/8795/3309/2081/54431/55432/1965/581/9797/55666/26608/6734/51009/7706/26003/5770/9097/192683/3484/7917/2134/5611/3093/3651/51035/22926/1388/26232/5526/4287/23197/488/29761/64764/23071/837/5516/439/81542/51506/55738/9451/23645/23190/10961/51465/4217/550/5296/83734/2033/10488/4189/10613/23392/4780/4000/65992/11315/9570/267/55161/487/9820/1491/2931/7327/51283/11253/6048/23435/9709/55033/8720/23376/11236/1861/317/4976/11153/10299/29978/7009/54788/7993/27230/22872/7094/7709/3725/8893/51136/79876/54499/57333/10869/2135/10956/51360/57003/1200/8398/30827/1938/2137/54956/10955/6449/55062/26471/10595/10273/79089/6464/80700/9695/598/6400/23411/1639/9919/4779/7057/5071/51569/11160/10106/54546/118/10211/10206/7157/7844/5295/37/90993/7466/9024/596/10087/595/80279/80267/8406/116496/7494/857/1191/64061/7060/3708/8614/10551
## GO:0031331 6790/5347/1075/8767/26330/3458/3162/7336/664/11040/5208/7128/215/4210/5210/5702/7124/5027/9978/3569/83737/348/11124/3091/3099/7415/5704/4478/7133/55741/26986/3297/1950/23019/10221/79156/10018/1612/1374/9532/10134/26291/92140/55212/55737/2932/5716/4898/8975/26263/5747/5886/5209/51441/1050/6832/8078/25793/208/101/3949/5700/3320/80149/400410/581/6613/23640/29883/5291/677/10133/2773/2185/399664/29763/27185/5770/337/5305/5706/8517/5962/51100/51322/7917/51085/3553/55743/55294/2168/4193/9567/79837/6885/3565/23367/5045/5465/4287/10236/2332/5207/5701/57154/975/5976/8754/64110/23112/56829/3630/2021/55626/10524/5587/10346/3184/859/51099/754/6829/7341/10533/207/10558/5705/22933/149628/4780/8312/65992/23530/8570/28951/114881/11315/89/2931/7957/9517/9817/9709/6737/1263/405/29110/253943/5049/1453/6872/11236/148022/2103/6093/572/7430/29978/5663/2822/8396/55070/13/93974/10645/25898/5728/1855/51136/9698/4092/9475/79594/10013/28952/3064/7538/149041/9337/3300/9927/1797/55823/7291/6449/5899/1452/5601/9531/22930/863/10392/26471/7405/8554/10273/23274/11043/1454/54832/8408/7249/3356/10241/2309/472/9992/9695/65018/79066/5580/23411/9528/2729/7942/9104/9655/5562/57104/6622/5071/154/11140/10140/5595/56339/10206/1601/26058/957/5261/8660/5563/55187/6794/665/3791/3643/225/54209/678/8678/9810/7248/26234/22849/29997/79589/2308/201163/51339/53373/79899/81603/90865/7832/79068/23677/10769/5988/857/79443/2819/26353/4035/1191/26137/3667/1634/150/3479/57535/4036
## GO:0006096 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/6521/23511/83440/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/2026/3098/89/669/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/5563/3643/2203/2819/26137/3479
## GO:0007254 8792/8767/5871/1236/6317/3654/136/11184/959/2950/9258/22943/1852/9618/939/7164/26191/6504/6850/7124/83737/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/10221/2047/5911/7334/140885/10044/10333/5345/6422/259/5058/64127/23239/6788/2081/1857/1399/2043/10371/2873/7855/6363/27035/7311/5734/7477/8324/2185/11221/4221/5770/5602/4294/8517/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/6366/5599/59341/6233/7316/2889/10454/10114/9175/1540/1616/171392/177/2074/4616/60401/4217/7314/10746/1845/207/846/6188/23542/8312/5609/50488/23162/7984/7189/2898/5585/1906/9821/64853/351/8841/221472/51495/4293/5048/5470/10045/79594/51347/11183/4868/29969/9448/23118/51776/2122/1647/9839/2324/51135/8600/5601/54986/7098/10392/23043/10595/10912/8737/10771/9064/2218/65018/9344/23236/5187/1856/9459/8491/8325/4317/29108/2150/5071/2874/9611/23328/6416/8322/4920/7474/4216/1490/11211/51339/9867/3480/7786/57551
## GO:0072524 23475/29968/952/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/5226/7086/57103/4200/8942/3418/7167/2584/2597/5230/9631/2023/2539/5223/8514/8566/5208/6888/6396/4190/5210/23165/5315/55706/5160/23636/5027/3692/5743/22934/3091/3099/7415/4927/79902/10762/8480/55753/3607/25874/11097/3939/8050/3417/5232/55328/9972/2820/9390/81929/2027/5211/2646/51071/5236/57122/10135/5209/79023/9818/4191/5313/229/2326/27035/6521/23511/83440/1738/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/25796/10891/3630/8021/53371/5571/11277/4928/2026/5740/683/3098/89/669/8086/405/9883/6774/2103/55163/51341/5903/4907/51660/23498/2327/348995/54956/54981/55746/863/4656/9540/27231/26471/23729/51181/3356/8473/55739/51422/5224/5562/9611/9759/9563/4837/5162/7157/957/55191/5563/3643/8604/316/64080/2203/2819/23171/26137/3479
## GO:0007612 8061/65009/2019/2515/5641/1812/22943/8997/1020/7143/2558/1312/9775/7097/2048/5743/3091/26047/23657/885/1814/10097/1141/64220/55236/4900/1813/7416/109/6722/7419/4761/3274/57468/2534/8704/2902/50944/41/54413/1816/2475/6865/5153/3845/10882/6616/6869/27023/378/22941/10716/23542/577/3156/3688/1742/2764/9610/8867/4923/3269/8086/6529/351/2903/57338/183/23237/1497/27020/3725/90410/3064/6900/4987/3815/57144/1385/2258/54112/4986/1201/4204/5896/8554/9378/5538/10636/5649/10396/60626/1392/6543/9379/7054/5532/25769/4130/5071/22986/4763/23152/23259/10522/2915/3643/22829/1621/4885/9162/4212/590/2353/11346/5577/7832/6310/477/9369/5764/4915/6863/7349/7122/57502
## GO:0061008 79733/2146/6790/445/440/7298/5111/6715/1054/1051/3162/100/3549/51599/57817/7128/50/5315/9076/5629/1956/570/5469/4192/1460/3157/4357/5967/3175/6927/26019/790/382/7547/3720/3172/1050/65985/25807/5009/5970/7351/1459/11231/8837/26257/7448/6195/3586/5727/1361/6156/55294/10419/4838/3651/23322/5253/2627/23242/9480/3845/3482/3142/10269/6928/7471/3184/5290/7040/634/6881/383/2267/5906/2356/79810/123872/9821/5774/3725/55036/3673/3077/8854/538/6662/6670/38/64321/54903/3280/5310/9104/25836/55679/4763/1628/1373/4088/6430/2735/4124/3082/8452/1543/595/84159/5311/3155/10370/5860/7494/5764/3249/54361/2737/2487/7049
## GO:0048754 4609/6943/2297/5499/2253/3549/2138/8914/7422/6789/7124/5469/7490/4192/655/9500/10736/1950/6356/5371/1512/3975/5058/2637/6714/3237/1522/11331/64783/6722/6608/80004/5727/7475/25932/7421/2303/7472/1282/2119/2668/63943/6495/3845/51548/10413/6928/7471/1739/1435/26585/284217/859/1969/10765/7040/846/4233/186/7080/1906/3911/2658/4323/4089/7849/183/10672/3217/3207/650/2736/55366/374/1605/25/2294/56998/6662/54922/4824/2022/4855/5076/23129/54903/2719/4070/2263/5310/9620/90/3611/5228/5087/1499/8945/4776/80000/3371/10253/4435/6299/7474/9231/596/3202/7482/5311/2246/10252/9353/8829/7048/8642/2247/6469/4488/79633/2099/1909/54361/2737/367/6926/9723/652/3169/5241
## GO:0031032 9493/29127/1894/1482/221692/3925/8557/58/22843/4771/221061/8477/4624/8500/5629/7454/7273/5216/88/5345/6422/50848/5058/6714/5217/4205/84033/58529/55160/27183/5734/6722/8837/2185/55607/4627/5829/2041/8048/998/2475/9530/335/7016/79784/5879/27302/6869/54566/55604/859/7046/4233/7791/3688/5156/4633/7984/79933/6281/961/71/3856/1906/23332/29109/4089/11214/4621/10015/6093/253980/54784/10163/1265/395/9475/387/8476/25/7126/51778/9270/27063/8195/1266/116985/51763/11155/5573/70/10529/22899/10395/9647/23363/4070/91807/10174/3880/6385/55616/408/4088/825/5295/28984/845/6548/22998/8452/1901/7168/1490/4628/7840/844/7248/9639/23122/4208/1902/8829/10580/10411/50507/9578/10324/585/3693/7481/4653/5159/10391/54361/1264/7043/6863/80206/51466/2006/4629
## GO:0051961 259266/5080/9355/6664/4821/53335/952/6663/1075/6496/9289/430/27242/3418/3066/26228/30012/55079/706/3475/7473/22943/6696/81618/80128/10220/1020/7143/7124/3569/7097/2048/348/23432/5469/11202/6376/10683/655/4504/5567/8898/2932/9856/152559/811/8934/1814/7533/2672/382/1716/1977/2288/5747/7101/50807/1522/3398/7224/9283/8851/2043/393/5309/10215/10371/3949/4133/6049/4761/3196/11221/4099/27257/1656/7289/1948/3553/6993/4193/10498/5566/54413/4851/5978/51286/7476/55558/396/6657/59341/3956/7015/9745/2796/4825/9451/9860/567/4168/9181/7068/4854/6014/1400/1600/2147/7040/22933/3084/2664/23251/10660/657/26146/5780/23380/56478/7225/1949/351/57142/6497/6774/55764/79727/2580/5663/22882/116/5048/5728/23105/10363/387/5458/7431/6658/6259/6900/9448/7161/10519/2258/429/55755/4974/3670/9921/9423/112/1630/54328/1270/4038/5800/9896/9139/1620/9529/4916/6662/1495/2309/22876/22899/6911/23500/5802/7025/26052/1910/3280/9706/9693/22871/3199/7070/23108/23189/8929/7337/5530/6532/4763/29116/23405/5087/1499/29956/7157/4776/22891/64689/22902/23258/182/4211/7474/23111/1942/4804/8646/66008/58190/7248/1809/3397/11075/3400/9353/1902/8829/1735/6695/5108/55198/6469/5793/1281/9037/6653/85458/10769/5764/56920/2045/5376/89927/4035/2737/1746/63923/27124/2066
## GO:0042445 1381/3294/59272/133/60482/6770/6715/3458/51083/5653/1594/2304/57016/15/8608/6783/706/6696/3291/3290/5447/50700/27344/1312/2692/7124/50506/5947/3091/5469/27284/25825/1588/3284/2230/438/7533/79644/2672/2784/6121/1522/1593/51144/1109/5126/231/120227/10948/5046/3292/949/5122/3416/59342/43/6718/51171/3553/5781/7421/654/54576/8694/5978/1585/1181/5045/1545/335/1636/7252/1645/1646/10170/10269/10891/1583/64577/653/6528/9159/476/51109/3293/53630/8879/79154/27120/5156/9249/1586/7038/4790/7849/1609/405/3972/25976/1382/2028/9227/1081/10159/3283/64377/1584/59338/650/5446/6447/8912/5972/9718/51301/4204/10404/3077/53905/10273/8854/2260/6294/220/8630/1734/1576/6934/56603/223/7276/6777/1392/10858/1215/2516/1889/6716/51478/9256/54884/1543/1958/7173/8644/51170/2488/27122/2232/4803/866/7923/56605/6817/1511/1735/5950/4311/6469/216/1592/1733/3952/3295/2099/8528/1589/2690/8292/174/5125/3249/54361/8228/1359/10202/10699/80736/3169/8614/2625
## GO:0002576 5004/1521/5341/4067/7277/10257/2207/5552/7873/7422/8407/440915/6850/7273/2153/3920/54863/1950/5054/29106/88/3674/51571/5345/3959/5473/7018/5265/7414/5340/10184/2243/5660/54676/2266/226/139322/6647/10447/9948/335/5155/55664/928/29789/3273/5267/23052/10490/2316/7040/2244/308/197/7114/967/5196/81/351/87/7044/5154/5023/334/9749/7094/2039/3690/22927/2335/7076/1893/6813/3700/2157/3827/7423/7057/51368/350/2/710/3671/5175/7424/5768/78991/3699/3082/12/374354/7450/5099/51706/948/51097/6403/7042/5919/6694/7078/5627/6414/22915/6812/5874/1675/2621/10916/6678/1191/213/2162/7043/3479
## GO:0006754 5214/55526/9688/3101/26330/3948/54541/2821/57103/7167/2584/30968/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/142/55706/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/516/5211/2646/5236/57122/5209/79023/9818/5313/522/229/10476/514/6521/9605/23511/83440/226/51085/515/230/23279/2645/7175/5465/10632/4967/5213/5207/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/7114/89/669/521/539/8086/405/513/9883/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/51422/5224/5562/56848/9611/9759/7157/957/5563/3643/54209/8604/201163/2203/2819/26137/3479
## GO:0030902 2146/9928/6712/2019/2020/8624/6751/8941/2296/64211/916/16/23287/5457/1020/4781/5604/5629/2213/401/1959/4192/655/6753/1950/728/1152/50674/1496/2618/23513/3975/23026/5058/2637/3309/30837/9283/2895/8851/22809/1399/4669/199/6608/6331/4761/10978/372/5781/471/8704/2902/9001/23322/3746/51286/8861/7476/869/5362/54910/10891/6928/7471/653/3184/2316/4760/1600/10716/3211/3688/58155/5270/23543/186/27089/23385/8455/8443/5663/1398/23017/2624/2736/4983/25/7515/473/429/8925/4204/6095/2648/8854/9935/51150/10427/538/25861/79934/10395/5802/3280/3199/8929/146057/4086/6532/54806/1499/7157/23544/22891/8322/8648/2735/6752/80184/596/4628/3213/3212/1902/1272/6469/5764/65250/79971/18/57502
## GO:0090316 51512/1894/3458/9585/2810/3208/9141/7545/3689/10541/5880/999/1020/8882/5743/57214/5901/10055/55741/3059/5594/57602/10134/2932/8934/1432/54471/64328/7332/5058/6721/8851/208/7855/80149/1459/3799/6608/5621/10155/3745/2010/9777/51100/2534/3553/59286/55294/10178/4193/5566/4946/3265/3843/7175/10075/11235/7323/784/9776/975/3684/23379/2316/11261/5296/7040/8536/79752/55754/22994/2931/23435/79778/27429/2064/1263/7531/8314/5116/4947/8841/63928/5494/5663/89781/3728/8692/79567/9520/10519/288/10425/55823/51366/9270/9531/55781/26229/6934/2040/9695/65018/5580/54741/4641/56947/51024/54828/5562/7157/57506/4088/5295/55696/22902/80184/6844/23255/9847/79899/10411/5108/6469/3952/6653/2621/3305/2737/161291/5174/22885
## GO:0042866 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/10993/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/6521/23511/83440/226/189/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/2026/3098/89/669/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/63826/51422/5224/5562/9611/9759/7157/957/5563/3643/2203/2819/26137/3479
## GO:0019362 23475/952/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/5226/7086/57103/4200/8942/3418/7167/2584/2597/5230/9631/2023/2539/5223/8514/5208/6888/6396/4190/5210/23165/5315/55706/5160/23636/5027/3692/5743/22934/3091/3099/7415/4927/79902/10762/8480/55753/3607/25874/11097/3939/8050/3417/5232/55328/9972/2820/9390/81929/2027/5211/2646/51071/5236/57122/10135/5209/79023/9818/4191/5313/229/2326/27035/6521/23511/83440/1738/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/25796/10891/3630/8021/53371/5571/11277/4928/2026/5740/683/3098/89/669/8086/405/9883/6774/2103/51341/5903/4907/51660/23498/2327/348995/54956/54981/55746/863/4656/9540/27231/26471/23729/51181/3356/8473/55739/51422/5224/5562/9611/9759/9563/4837/5162/7157/957/55191/5563/3643/8604/64080/2203/2819/23171/26137/3479
## GO:0046496 23475/952/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/5226/7086/57103/4200/8942/3418/7167/2584/2597/5230/9631/2023/2539/5223/8514/5208/6888/6396/4190/5210/23165/5315/55706/5160/23636/5027/3692/5743/22934/3091/3099/7415/4927/79902/10762/8480/55753/3607/25874/11097/3939/8050/3417/5232/55328/9972/2820/9390/81929/2027/5211/2646/51071/5236/57122/10135/5209/79023/9818/4191/5313/229/2326/27035/6521/23511/83440/1738/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/25796/10891/3630/8021/53371/5571/11277/4928/2026/5740/683/3098/89/669/8086/405/9883/6774/2103/51341/5903/4907/51660/23498/2327/348995/54956/54981/55746/863/4656/9540/27231/26471/23729/51181/3356/8473/55739/51422/5224/5562/9611/9759/9563/4837/5162/7157/957/55191/5563/3643/8604/64080/2203/2819/23171/26137/3479
## GO:0000226 991/9493/1062/4605/10403/259266/220134/51203/22974/10460/4751/983/4085/5080/81930/3832/7272/9212/1111/9055/3833/146909/10112/6790/891/24137/11004/5347/29127/57405/10615/9700/9768/10733/54801/29899/1058/6491/26271/3925/84223/27285/55726/1104/284403/2597/79866/54768/11200/10263/203068/79000/84722/7283/80128/54908/1020/899/6566/117178/23636/8882/79187/1410/7517/50861/5901/4733/26973/2011/672/55835/81027/22919/675/5119/9793/8480/64793/55722/4139/2932/79648/79959/9148/26586/3834/9126/6905/10432/10048/10297/79989/2288/55559/5747/4957/5058/4869/54919/2770/10426/56647/7514/1017/3837/1267/402/3796/55172/8851/22809/9702/11170/4133/49856/10300/7756/25777/6674/4281/4342/7465/79929/9419/27185/55968/79998/23354/4627/9183/55201/55125/6683/6760/6993/157922/51510/11104/58526/55521/50855/79598/1874/1069/7175/4591/4287/8766/59341/6795/8243/25978/85452/50487/5879/1213/5518/54462/1540/8409/79649/25897/9897/9662/1859/64446/3192/10844/9181/1739/11190/1400/11116/859/2316/11261/2801/79969/57787/23172/10382/6188/4233/4000/2622/11186/23224/6047/26146/22994/23299/23380/9820/9525/8086/123872/23187/1946/23332/51199/1263/57132/5116/1453/9857/26005/10015/8841/10735/7430/58497/27019/5048/6904/1855/79441/1778/80217/9475/80321/10013/152185/3064/10345/387/8045/26112/5195/22995/55036/6900/79582/23353/55130/84942/54777/1605/1647/25/6249/10519/636/2258/4682/23271/55755/11127/8674/4292/4134/6651/54986/4204/8850/4659/25809/2648/827/7405/23032/137886/114791/10636/140609/7516/27229/9696/10274/11337/10579/2242/23363/6314/29072/8658/5310/1639/1070/546/54828/2009/5562/6622/4130/50810/9611/56890/146057/27243/27175/9648/1107/6867/1499/56171/80254/9371/4131/8631/9738/9748/5563/55142/7320/126353/26054/25876/23177/10253/9851/1027/85459/23113/29098/9024/5590/324/10142/55779/23639/54820/11076/10464/9639/5311/10252/23122/23255/11075/10039/2042/2241/4747/4744/25999/51364/5108/89795/347240/4926/24139/54875/585/51673/79884/80323/85458/10769/23116/89927/55857/114327/57551/79864/27124/4137
## GO:0006260 8318/55388/79733/6241/890/983/9837/81620/51659/8208/1111/51514/4174/4171/990/9156/3159/79075/5888/898/23594/9768/4998/9134/4175/4173/23560/2237/10926/54962/5984/29980/84296/5111/64785/9401/26271/51053/641/10535/1763/55159/8317/5427/23649/4176/10036/5982/5557/79915/30968/25939/7884/5558/4172/5424/83990/11200/8099/80010/5983/4678/8914/4683/63967/6282/4781/8882/5425/6749/84268/54107/1663/11124/1956/11177/580/6119/672/27101/6240/675/27000/997/22944/5810/5985/9126/10432/201254/5931/5428/4796/1017/56652/2069/5928/10714/6117/4361/5426/26057/11198/4142/6418/1660/4999/11073/43/58525/23244/51507/5937/11232/55704/3508/7156/55294/3980/7014/6118/5883/5001/3265/9400/29935/59343/9093/8243/29803/5879/5518/5976/10269/3364/1854/79892/10524/5422/10533/11277/4928/11143/64710/23054/51750/10919/3060/80174/83743/545/2658/7270/7013/4673/3981/10735/253980/5763/51147/3725/23063/5515/2736/7126/254394/5000/11284/7486/9984/50485/79991/1877/23595/51455/5980/5423/57379/5429/2260/27343/51550/5981/472/1025/4782/5932/546/5930/56953/10111/5884/466/4784/6416/7157/22891/3399/56897/2735/94/604/63901/5813/57804/80169/54465/6419/253461/1471/11201/64061/7349/1602
## GO:0008361 5341/7504/3897/3575/10507/3783/1019/3475/7473/23507/6696/55144/80128/7422/1020/7143/23028/5027/348/114908/23566/4478/4504/3984/1785/51393/2932/6344/6792/3326/2784/5058/7224/8851/393/3792/10371/4133/1954/1002/6722/7410/6049/361/8153/27185/4099/7409/5962/1207/51330/2475/11344/1874/55558/8766/59341/10542/1826/5879/6343/9175/81565/2017/4825/9368/23191/4897/9798/859/23394/207/2664/310/1906/9821/1946/57142/23011/1382/5979/5048/5728/23105/1182/8482/387/5458/10439/6259/10000/659/25/2335/1385/2258/5916/9423/1630/57698/23038/538/4916/1808/5802/9706/80131/51334/23499/3611/64798/23108/51520/118/4131/6558/627/29882/22902/7474/23111/2803/7248/1185/8829/358/9037/3778/6387/56920/2045/4035/7349/10451/4137
## GO:0042180 5163/3620/6999/133/23590/5688/5709/6770/6715/5698/8564/5693/341/5713/8942/7167/4953/27235/5721/2171/5691/57016/5685/5690/5684/5686/5695/10213/3638/23198/57017/215/5699/5714/5702/1312/51805/8013/5165/5708/345/3692/5743/5629/5692/551/5704/23657/672/5683/874/1588/5694/2264/1374/5718/5682/5716/2820/5707/57761/1728/9971/5696/1109/231/5019/51582/208/10327/23408/10948/5719/5700/55066/10062/5717/10197/51094/337/5706/552/2806/51085/5710/3553/2168/654/4946/58526/54576/2475/5978/2739/1585/1181/2531/5465/1645/5689/5720/1646/10170/5701/9491/2170/10891/5711/80025/64577/5715/3630/29914/1555/653/9861/3293/207/5705/634/54704/10613/11277/5581/54905/3029/3156/27120/11315/79602/1586/56997/1609/5565/3972/493/4947/57107/9612/51004/9926/1584/2693/650/635/2695/8574/8912/7291/7376/22937/23038/4836/79934/883/23417/6777/1268/56267/51422/23411/10858/51141/9104/4779/6622/9946/6716/11160/23409/10229/8660/5563/37/5164/1958/225/8644/33/2488/51686/10464/27122/2954/57834/1581/60481/5468/5166/55198/51117/84869/6720/857/2819/174/32/54361/3667/9370
## GO:0030048 23630/1824/7111/7136/3757/8557/3753/58/4626/9631/274/4647/4624/4606/6262/4644/5142/7273/88/2257/2626/7135/4643/80179/3741/134/25777/6327/6331/7170/7137/7140/4627/6323/8976/7171/4650/4635/3762/1756/4703/1674/140465/781/4634/7429/79784/7125/4625/1739/476/859/2316/7341/5318/5144/3759/23224/89/4633/1829/4632/10630/81/7134/6324/4621/4607/6640/6093/54874/8913/10163/3728/7431/10052/6781/4637/3764/57698/287/1832/3781/70/9722/57669/9992/3760/4641/7169/783/4604/7139/3784/4430/2702/2013/7138/6548/29119/7168/4628/6717/3752/54795/55742/477/6444/23327/857/775/23171/4646/5350/55800/2697/776/23704
## GO:0009205 983/891/5214/55526/9688/6472/3101/26330/3948/54541/4830/2821/57103/1537/7167/9377/4436/2584/30968/4626/55034/2597/637/5230/9631/2023/5223/706/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/5901/525/1349/4708/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/1329/5232/4719/9972/55669/4697/81929/4702/2027/516/5211/2646/4694/1340/5236/10845/57122/272/5209/79023/4712/9818/4722/5313/4711/522/229/1337/7381/4710/7384/10476/514/6521/9605/1327/23511/9167/83440/2773/1738/65220/226/4706/51085/515/230/23279/9567/8505/523/2645/526/27304/7175/5465/2987/4717/51079/10632/4967/4720/5213/5207/4833/29789/4709/51548/498/1352/4713/11319/23225/10891/3630/4625/8021/1345/79631/4701/2631/53371/79736/3704/29103/4729/9054/7040/5571/11277/4928/2026/23433/4714/3098/6901/4696/11315/7114/10201/89/10243/669/521/539/4338/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/4976/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/79085/4707/348995/51715/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/51422/5224/5562/6622/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/481/477/4337/4832/2203/2819/5167/26137/8382/3479/26289
## GO:0002262 9636/6772/1054/54892/4067/3148/3162/9258/578/2539/2207/5052/7422/3276/9991/3569/4151/3091/23210/5142/5469/3071/23657/3059/51621/5771/10661/10018/729230/3623/8444/60682/1432/836/272/6688/10320/3398/6223/3635/6868/3579/2056/581/94081/6521/2176/2113/6722/5291/677/7067/80739/5293/4352/3658/3707/6647/3313/212/3146/28996/8861/6194/7564/1777/3050/6005/10461/567/3717/103/29766/50943/2038/23543/10019/301/6886/669/2623/6208/10107/23385/405/8314/10296/91/6229/6774/1021/93974/5316/92/4891/51341/2039/54977/7538/2624/3815/2116/22985/9935/4090/6670/2309/6777/4779/3624/5925/2068/118/5926/10365/604/558/2034/3202/3216/221395/83700/54681/4254/7049/652/25893/2625
## GO:0007411 5080/4902/9355/6712/3897/9046/2676/2297/5459/2253/1749/55079/9048/7473/10381/5588/1951/7422/1020/7143/4781/8013/474/2048/7852/2886/1959/655/1123/5594/6654/2047/5623/5578/3975/2049/10048/4914/10678/5747/2637/23114/6714/6091/2885/8851/8828/2043/7408/2636/10371/1954/1002/6710/2131/5291/4917/5335/5293/5818/5727/2534/5781/11313/53358/2668/7436/64096/55558/2675/55740/1826/64919/2044/2887/55816/6477/4897/1400/5290/1600/10716/10500/55715/8022/7080/1949/1946/1436/2064/4089/351/6324/5598/7430/5979/6152/347733/10818/1855/5458/6259/2736/6708/4983/1605/659/9260/9637/7976/4684/10505/4756/3670/9423/9211/1630/2549/2115/6711/5800/23032/5909/9378/1808/6464/5649/2909/5786/6405/23077/51332/3199/57556/9846/5595/8609/9638/627/8660/23767/5295/7474/1796/9252/4628/8633/6586/5797/219699/2817/6709/9353/8829/323/57731/7869/6469/64221/9037/9369/9499/6387/2674/10512/3908/2045/4035/658/2737/3800/10752/3730/214/3913/51466/2625
## GO:0003205 6664/639/1482/8543/2296/2253/7468/5457/4624/6659/5629/6262/3091/3776/5469/655/2280/6654/9421/55636/79977/2626/1785/4052/7135/8928/54583/6091/3398/8828/64220/64783/6722/6608/6331/5915/84516/7137/6256/2303/7472/4193/6910/4091/4851/9784/2627/4634/9510/10454/10269/27302/11174/4625/6899/653/3516/859/7046/5318/7040/3084/657/4633/2931/9249/79810/4889/4089/7134/7849/4607/26508/8131/6604/10818/3491/4853/5754/4092/10277/163/7541/659/2294/9464/4846/3670/9794/6909/287/1832/60485/2022/6474/23129/9321/10848/54903/3280/2263/90/8289/7139/8321/7798/2702/7157/2535/80000/23493/7010/5914/1301/182/6299/7474/78987/7168/4628/4887/6586/4194/23462/7042/57493/4208/9353/8829/7048/10370/5950/55742/58495/4488/7481/10512/5138/1363/5125/23414/65250/7049/6926/652/4036/2625
## GO:0070507 220134/22974/10460/4751/81930/3832/1111/6790/5347/10615/10733/29899/6491/3925/79866/10263/84722/899/23636/79187/7517/4733/26973/2011/672/55835/22919/5119/8480/64793/2932/79648/79959/26586/3834/9126/10432/2288/5058/4869/2770/7514/402/8851/22809/11170/4133/10300/4281/79929/55968/79998/6683/157922/51510/58526/55521/79598/7175/4591/59341/8243/25978/5879/1213/1540/1859/3192/9181/11190/859/79969/57787/10382/6188/4233/11186/6047/26146/22994/23299/9525/23187/1946/23332/51199/57132/10015/10735/58497/5048/6904/1778/9475/80321/10013/152185/387/8045/25/6249/10519/636/2258/4682/23271/55755/4204/8850/2648/137886/10274/2242/5310/1639/5562/6622/50810/56890/146057/27243/1499/4131/5563/26054/25876/1027/85459/29098/324/10142/23122/11075/10039/2042/25999/89795/4926/24139/79884/85458/10769/23116/89927/57551/27124/4137
## GO:0051092 6280/6279/8792/8767/3654/9447/959/8877/6283/3689/3383/8807/5588/3965/7124/7097/7186/3556/6376/958/238/5610/7185/9830/7334/1147/92140/10333/89870/4914/4869/64127/8986/5579/4615/695/101/83696/5970/3606/7311/10892/54101/8837/1660/5584/7706/8517/7099/4791/3553/10498/6885/23085/8809/4591/22954/3845/6233/7316/10454/9175/177/3630/9181/60401/8915/26585/5587/10346/815/7314/7040/85363/2319/6188/55367/65992/114548/1896/1491/7189/54386/4790/351/8717/10475/148022/4919/6774/183/5319/10616/25865/51341/10935/9575/8995/847/23118/10519/5583/8600/7098/10392/11043/55223/8737/29108/10211/10206/825/4057/268/79092/7474/5590/9252/948/9208/7188/64320/2241/81603/84851/11213/857/1191/3551/367/1524
## GO:1903708 9636/3559/1230/6772/8767/3574/3575/4860/864/3458/2296/3148/942/8876/10288/5788/100/3600/3549/939/3965/9308/865/3276/5457/11051/6850/7124/8772/3091/5469/10125/3071/3135/8808/4192/7305/3059/10221/54440/5578/3593/8651/3558/9760/3592/11006/60682/1432/2778/760/3398/2124/920/3635/10456/695/101/941/3606/6363/10892/2113/677/7292/55795/11221/10385/972/4352/7535/3707/5134/3146/3565/51176/841/7564/9092/9840/8943/1540/3142/177/3605/9398/1435/7040/51043/50943/537/114548/301/7189/6886/5196/7066/2623/4323/405/91/6774/572/2323/81501/3566/92/3725/3594/387/5458/2624/2736/51561/1385/8600/3976/56998/22985/5896/8737/22890/8546/7071/2309/57178/6777/2242/9655/3624/5925/1960/3567/5914/4602/604/182/4920/54997/558/5590/4179/54209/3202/7048/2353/6469/85477/4254/7494/2621/7704/2737/10443/25893/2625
## GO:0042326 2305/55872/5080/891/5347/2633/7453/7345/4609/8000/6317/1029/54541/4067/23603/57103/2950/11314/2810/26228/1031/578/10507/1411/5788/467/22943/22843/64092/409/1852/4771/7128/10105/1445/26191/4690/1030/23636/5027/5801/2048/83737/348/54920/3301/5536/8440/54900/5795/9770/26973/79705/9021/1981/655/11171/10221/5591/5771/64793/8651/140885/3558/7498/3623/5716/9535/1032/152559/6422/259/78986/1849/63904/5575/10048/2646/57761/3170/56288/836/4869/6690/1050/11072/1026/54431/25793/1399/5997/2873/623/55885/80149/581/1813/4142/5621/11221/7023/4221/11329/10385/5770/7099/64780/3486/5987/51085/3553/5062/5611/11137/2041/55924/4091/1756/9711/2475/50855/5245/51654/3843/9113/5777/5465/23141/9555/7016/2675/51637/5207/2660/5528/2889/51548/10408/10114/51231/5518/10527/4298/1540/10891/57053/171392/8655/4616/3192/9368/199731/58533/1739/26585/55243/11116/4040/859/284/11261/29103/5296/65125/5144/1845/207/8661/103/7040/22933/634/9314/3156/197/23530/28951/5999/11315/2764/10019/6895/26146/89/58509/5998/4041/54386/23435/5585/55870/2852/7251/4089/64853/1609/84619/55584/51562/23770/6774/5525/8841/135/7430/64754/5663/104/56940/5048/3725/5728/1855/55022/4092/5470/51347/2039/3642/387/10935/624/27330/5515/8692/2122/1605/10318/1647/25/10519/25937/5576/81848/5170/7291/3976/23624/9270/79643/56937/5300/57447/8850/863/51763/4656/26471/201626/25998/5573/1850/10636/4916/54922/10771/5859/7249/2022/22876/2218/5569/65018/9647/5580/79893/8613/5187/51422/23411/64081/7026/6609/9104/29108/399/9655/6879/2150/3611/6622/57556/7070/64798/5071/3624/1353/200734/2874/9611/3315/10106/5925/113791/2776/4763/9759/408/3476/8660/7320/3082/10253/1027/1028/55364/54997/5590/1942/10217/1843/324/58190/55450/10464/80279/22863/3087/10252/57493/9353/2308/753/10641/201163/23410/5753/51339/7078/79899/1848/9961/10614/2192/5577/116496/6653/9052/3480/4908/11213/11117/857/2203/5783/23171/5167/1846/9370/2167/652/4137/11122
## GO:0071356 2633/3576/8792/6352/3934/445/6772/6347/5688/5709/330/9447/5698/4050/8970/7412/5693/608/1535/8372/959/5713/27242/2950/9705/5721/5691/8877/1116/5685/3383/11173/5690/5684/5686/5695/10213/3735/2634/23198/939/57817/7128/1244/5699/5714/8115/9076/6850/5702/7124/4049/5708/4055/5692/8904/5704/7186/672/834/7293/5683/7133/958/5594/5694/5771/4792/7185/1147/5718/5682/5716/6422/5707/1432/10293/10010/9971/5696/970/1050/3987/6868/5719/5700/8531/5970/80149/4654/5717/8744/10197/677/57824/7292/8740/1660/51208/2185/10913/5706/8517/943/5710/51330/29965/9825/9530/841/335/5689/22954/9966/5720/5701/9491/837/1540/329/10891/5711/171392/5715/9181/60401/3604/8996/4217/56928/3037/9020/9861/207/3717/5705/6188/7132/259230/4780/11093/7114/58509/1896/10594/944/965/8741/3856/7187/1906/81/2852/4790/8717/22900/81858/81501/8764/81792/204851/10616/8718/55022/7538/51588/8887/8995/8692/10519/8600/27063/6095/51763/4656/2648/1687/8737/338/4824/6517/2309/55512/23411/23495/29108/8567/7057/2150/54469/3611/5071/2874/10401/5595/9759/55914/10365/3373/427/79092/100506658/678/3875/83483/1277/25999/1393/2621/2819/10631/3551/9590/4982/9370/5105/2167/2625
## GO:1901216 4605/712/54541/8564/3689/22943/1020/142/468/7159/7124/2213/9131/356/7305/10018/997/835/2932/10333/1649/1728/836/7965/1522/2002/2896/8851/134/5309/1965/581/5621/9040/7099/1948/2534/4296/55294/2475/5978/841/4170/2904/5063/1616/3684/54434/4217/8301/1386/6733/2898/2901/572/4835/3725/824/387/25/842/429/5300/23368/26471/5913/2309/472/7020/3672/51024/6622/6416/4763/9759/1499/7157/23621/4602/1958/7474/7042/2353/2045/1191/4137/7021
## GO:0007178 7272/6664/55612/1482/9688/50515/8200/3654/63893/2297/2253/1749/63976/867/60436/22943/1761/409/2254/10220/4624/142/2805/1030/23625/6262/6862/655/10755/2280/11171/1460/25928/2651/7321/3175/5371/2626/1785/4052/6422/50848/1432/10432/8928/3326/64750/56288/5747/6714/3309/3172/9197/6868/5046/1954/3547/9350/8852/23144/7311/53918/9719/25805/2348/2661/4221/269/93/5829/654/4838/4091/6885/4851/28996/50855/2734/5045/10923/6386/9480/8287/2201/4093/7323/2660/6233/7316/10454/57154/9110/3622/8754/27302/5796/331/8239/7471/9518/58533/653/9958/26585/3516/859/7314/7046/23370/22938/7040/2033/7791/657/10566/1655/23213/7080/2658/10637/4089/4087/9573/91/6497/23770/7044/4012/9372/9392/5494/7554/6425/2339/92/3725/3491/51701/4092/51341/387/7431/650/659/25/6498/25937/858/1385/5170/2116/51592/23592/4756/56937/5300/3077/4038/6711/10273/4090/2022/79176/55512/4015/2719/23411/64081/8516/3280/90/7057/3611/3624/26060/8321/10140/4086/5595/1601/7157/4088/6794/1387/860/268/3248/94/2662/1028/4920/4435/1958/7474/23089/57045/5590/64388/8646/10272/3675/8425/26036/10979/2488/11030/27122/7042/3397/1278/7048/753/201163/1003/2353/10370/9765/164656/55198/6469/4681/4926/1281/2530/65997/11167/58495/1149/55273/4488/3625/91851/10468/3693/4856/11117/857/4053/7041/174/4487/658/2615/5654/2331/7043/6935/9863/2200/7049/7122/6424/23090/1311/652/4036/8483/54829/7021
## GO:0009141 983/4521/891/1503/5214/55526/7298/9688/6472/3101/26330/3948/54541/4830/2821/57103/1841/1537/7167/9377/4436/2584/30968/4626/55034/25939/2597/637/5230/9631/2023/5223/706/100/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/5901/525/1349/4708/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/1329/5232/4719/9972/55669/4697/81929/4702/2027/9519/516/5211/2646/4694/1716/1340/5236/10845/57122/56474/272/5209/79023/4712/54963/9818/4722/5313/4711/522/229/1337/7381/4710/7384/10476/51727/514/6521/9605/1327/23511/9167/79077/83440/2773/1738/65220/226/4706/132/51085/515/230/23279/9567/8505/523/2645/526/27304/7175/5465/55270/2987/4717/51079/10632/4967/4720/5213/5207/4833/29789/4709/51548/498/1352/4713/11319/23225/10891/3630/4625/8021/1345/79631/4701/2631/53371/79736/3704/29103/4729/9054/7040/5571/11277/4928/2026/23433/4714/3098/6901/4696/11315/7114/10201/89/10243/669/521/539/4338/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/4976/10975/572/7385/1497/93974/116/1355/27109/55022/51341/10924/374291/387/5903/79085/4707/348995/51715/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/51422/5224/5562/6622/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/481/477/4337/956/4832/2203/2819/5167/26137/8382/3479/26289
## GO:0071559 6664/55612/50515/8200/6770/864/3066/63976/867/9141/6375/409/142/9076/2805/1030/23625/7525/10755/11171/2651/3175/5371/1785/4052/6422/50848/8928/3326/64750/56288/5747/6714/3309/3987/1399/6868/7311/9719/8837/677/1284/25805/2348/2661/4221/2534/5829/7472/4838/4091/6885/28996/50855/2734/5045/7476/6386/6660/9480/8287/2201/4093/2660/6233/7316/10454/57154/9110/3622/8754/10891/5796/8239/7471/9518/58533/9958/859/7314/7046/23370/22938/7040/2033/7791/383/51741/7080/1906/10637/4089/4087/6497/317/7044/6093/9372/5598/9392/5494/2339/3725/51701/4092/9475/51341/387/1398/8692/6498/64838/858/1385/5170/51592/23592/27063/56937/5300/10273/4090/6662/463/5179/2022/57669/4015/23411/64081/8516/2263/90/7057/26060/5139/4086/1601/7157/2908/4088/6794/1387/3248/94/2662/1028/4435/7474/23089/57045/5590/678/3675/8425/26036/10979/2488/27122/7042/3397/4208/1278/7048/753/201163/1003/2353/10370/1277/50507/55198/1281/2530/65997/58495/1149/3693/11117/857/25878/4053/5138/7041/54361/2615/5654/10631/2331/7043/6935/2200/7049/7122/80310/8483/54829/1524
## GO:0009199 983/891/1503/5214/55526/9688/6472/3101/26330/3948/54541/4830/2821/57103/1537/7167/9377/4436/2584/30968/4626/55034/2597/637/5230/9631/2023/5223/706/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/5901/525/1349/4708/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/1329/5232/4719/9972/55669/4697/81929/4702/2027/516/5211/2646/4694/1340/5236/10845/57122/56474/272/5209/79023/4712/54963/9818/4722/5313/4711/522/229/1337/7381/4710/7384/10476/514/6521/9605/1327/23511/9167/83440/2773/1738/65220/226/4706/51085/515/230/23279/9567/8505/523/2645/526/27304/7175/5465/2987/4717/51079/10632/4967/4720/5213/5207/4833/29789/4709/51548/498/1352/4713/11319/23225/10891/3630/4625/8021/1345/79631/4701/2631/53371/79736/3704/29103/4729/9054/7040/5571/11277/4928/2026/23433/4714/3098/6901/4696/11315/7114/10201/89/10243/669/521/539/4338/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/4976/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/79085/4707/348995/51715/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/51422/5224/5562/6622/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/481/477/4337/4832/2203/2819/5167/26137/8382/3479/26289
## GO:0097485 5080/4902/9355/6712/3897/9046/2676/2297/5459/2253/1749/55079/9048/7473/10381/5588/1951/7422/1020/7143/4781/8013/474/2048/7852/2886/1959/655/1123/5594/6654/2047/5623/5578/3975/2049/10048/4914/10678/5747/2637/23114/6714/6091/2885/8851/8828/2043/7408/2636/10371/1954/1002/6710/2131/5291/4917/5335/5293/5818/5727/2534/5781/11313/53358/2668/7436/64096/55558/2675/55740/1826/64919/2044/2887/55816/6477/4897/1400/5290/1600/10716/10500/55715/8022/7080/1949/1946/1436/2064/4089/351/6324/5598/7430/5979/6152/347733/10818/1855/10570/5458/6259/2736/6708/4983/1605/659/9260/9637/7976/4684/10505/4756/3670/9423/9211/1630/2549/2115/6711/5800/23032/5909/9378/1808/6464/5649/2909/5786/6405/23077/51332/3199/57556/9846/5595/8609/9638/627/8660/23767/5295/7474/1796/9252/4628/8633/6586/5797/219699/2817/6709/9353/8829/323/57731/7869/6469/64221/9037/9369/9499/6387/2674/10512/3908/2045/4035/658/2737/3800/10752/3730/214/3913/51466/2625
## GO:0002687 6278/3627/10563/6355/7941/6364/3576/6352/1230/6351/1236/6354/5641/1991/3383/6375/3735/3929/5880/3965/7422/7124/3569/8772/1240/3071/4192/1908/5724/728/5054/63940/3674/3570/57118/729230/3592/57402/719/811/6693/708/1432/79647/8291/2358/101/6868/623/3579/6363/199/8740/2185/23604/6346/972/3676/3146/9943/6366/59341/2660/5879/6869/177/1435/65125/7040/10488/158747/6369/8174/1906/4323/351/387/9750/8995/51561/102/3673/3958/29108/7057/2150/7070/5595/7424/2155/23075/375056/3554/27347/7474/54209/5025/6403/83483/5919/1907/4254/2621/51157/5764/6387/7060/80310/9547
## GO:0001889 79733/2146/6790/445/440/7298/5111/6715/1054/1051/3162/100/3549/51599/57817/7128/50/5315/9076/5629/1956/570/5469/4192/1460/3157/4357/5967/3175/6927/26019/790/382/7547/3720/3172/1050/65985/25807/5009/5970/7351/1459/11231/8837/26257/7448/6195/3586/5727/1361/6156/55294/10419/4838/3651/23322/5253/2627/23242/9480/3845/3482/3142/10269/6928/7471/3184/5290/7040/634/6881/383/2267/5906/2356/79810/123872/9821/5774/3725/55036/3673/3077/8854/538/6662/6670/38/3280/5310/9104/55679/4763/1628/1373/4088/6430/2735/4124/3082/8452/1543/595/84159/5311/3155/10370/5860/7494/5764/3249/54361/2737/2487/7049
## GO:0009145 5214/55526/9688/3101/26330/3948/54541/4830/2821/57103/7167/2584/30968/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/142/55706/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/516/5211/2646/5236/57122/5209/79023/9818/5313/522/229/10476/514/6521/9605/23511/83440/226/132/51085/515/230/23279/2645/7175/5465/10632/4967/5213/5207/4833/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/7114/10201/89/669/521/539/8086/405/513/9883/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/51422/5224/5562/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/4832/2203/2819/26137/8382/3479
## GO:0120162 3934/6319/1051/51316/2171/63976/23175/7422/23028/79071/6850/51087/7852/2180/2827/1240/3596/2271/3297/26291/51393/729230/153/1666/155/2778/3662/3606/7351/3033/7067/51094/4849/43/3565/5020/51548/10891/2887/3717/51043/79602/3060/55818/79054/5565/8841/1376/10400/5746/7253/3566/116/1778/64641/9927/79813/10912/23135/1734/8473/4237/6588/8929/154/5564/6778/2104/2034/948/50486/7840/1621/324/2628/5021/33/3953/55198/7350/3952/5618/8864/56034/3480/857/9658/2697/9370/2167
## GO:0030073 952/6352/114/56943/3458/51083/292/6513/5208/5127/6659/6566/5467/7124/4160/2641/3091/4644/26251/1080/25874/6927/51167/5578/1374/8431/6422/5211/3170/9971/152/8447/5019/3741/3172/402/65985/3710/51768/7351/3033/1813/3799/773/353500/3745/65220/7425/5798/3553/5781/93/7074/9515/7447/3651/2740/5978/2645/594855/293/9699/2850/4843/5879/3747/6804/6616/23568/2044/4825/5715/6928/9324/4760/3717/846/4544/5581/5894/818/3156/5906/11315/23435/1803/51714/1946/640/2852/4087/10312/9230/572/27230/6514/2822/116/3557/9575/2693/291/2695/9448/8398/8620/3670/2696/6814/57818/6810/26056/2029/6934/1392/1268/406/5991/3709/5532/5071/399979/777/51092/5530/23409/8609/408/8660/27445/11132/2752/3382/22841/9024/2746/80024/9501/5799/3790/6717/9854/54795/23410/5950/2281/10411/3952/8864/3625/4856/6720/6833/775/8938/4035/11069/55638/2697/55107/3667/9607/150/9254/18/776/25924/3708/7021
## GO:0060070 259266/6663/1001/55612/8326/1482/5688/5709/5698/5693/79412/5713/5721/5691/5499/2253/1749/8607/5685/8549/5690/5684/5686/5695/7473/22943/10213/23198/2254/6789/5699/4624/6659/5714/5702/7480/9978/5708/5692/6262/348/1000/7415/5704/1956/8796/23240/79705/54994/6862/4192/5683/1950/57805/25928/5694/5718/5682/55737/2932/5716/6422/1649/5707/1432/10297/64750/55681/6714/10856/5696/23401/6788/1857/8323/5719/7855/5700/5717/3065/10197/9679/7477/7479/25805/8324/2348/51704/2010/27185/5706/3484/5710/7472/10146/51176/8629/59349/7476/9113/5689/5720/6657/10076/2889/5701/9491/26108/1540/5711/5715/10413/331/9368/7471/23072/26585/3516/4040/5626/9861/65125/6907/5705/23399/9314/8312/6932/1896/2931/4041/54475/57680/9968/8994/4790/4163/1654/1453/1613/5868/5494/27130/5663/261734/6425/55182/5728/1855/6382/90410/5754/3728/79718/650/6259/55366/25937/27121/7976/80351/51366/5916/1452/3670/5300/80199/55031/4038/7403/5800/64840/1454/6662/64321/2309/23500/6934/8613/81847/406/54903/2719/9101/4286/1856/8658/5218/2263/8325/3611/8434/5071/23189/8321/2776/80114/166/1499/8945/1601/2535/79960/607/4088/8322/6794/5204/2735/7320/10023/8452/4920/1958/7474/4300/6478/27303/9736/324/11211/7089/25960/4929/7482/27122/65981/2308/54795/1277/51339/6591/6469/3485/9037/81029/3489/85458/1501/7481/857/54361/2737/2487/63923/27123/3487/79971/6424/2625
## GO:0050731 6352/51378/7804/8767/11009/54892/4067/3458/3066/26228/2253/10507/5788/916/3383/1795/3600/409/1464/7422/4282/6850/7124/3569/7039/5795/100133941/79705/9021/3596/7525/958/3297/1950/3059/55024/3570/3593/3558/3592/885/3589/9148/1839/7006/6714/10006/2688/57091/920/2069/134/10456/55620/2043/5008/6868/941/3606/2056/9244/5621/3562/2185/51704/7448/5770/972/2534/5062/55294/3565/2475/5155/1636/1440/975/23568/2074/9181/353514/26585/148/23394/23529/284/30844/3717/7040/960/3084/3678/7132/59067/1741/1742/8826/6886/1437/1946/2623/1436/1609/6774/183/8995/51561/374/3815/3690/25/3976/3670/3440/1270/4038/5649/3356/10188/5168/2065/1856/3280/5175/7157/2209/627/2252/3567/4739/3082/2915/2322/9094/1942/948/54209/2261/10464/8829/5753/50507/1272/3952/4254/2621/4908/3263/2690/4915/3572/150/7060/1489/3479/9370/2066
## GO:0043902 7153/6790/6352/5551/3838/5650/8767/1535/3458/8372/5435/3066/4064/2597/5479/940/5440/3434/3965/6732/4282/23076/79132/51497/2208/5433/348/79720/26986/5724/5034/6882/1642/10018/10450/5578/9217/25818/6597/5437/904/10465/708/9126/89870/6780/64750/5886/5481/2896/920/5439/10184/5431/55231/5478/27183/23643/29883/26057/57115/5436/1072/10133/1660/7023/972/23633/2959/654/8468/51176/23367/5020/5438/5432/51193/2332/55601/3956/8993/25978/7879/4843/5028/5225/6827/6598/2963/6829/9150/22938/103/2033/22933/9450/64710/5091/383/6895/6733/7189/5434/9525/2741/6737/5586/7251/25920/1654/29110/91/10475/7113/572/51495/104/51773/3725/9698/9218/5007/29969/10519/8912/85360/858/23369/10392/201626/5430/64848/7155/1025/2040/6667/23236/1910/2150/1105/3624/5441/23328/27243/5595/9759/8654/10497/2962/5021/2494/3625/3249/79846
## GO:0000187 983/55765/8767/5871/3654/136/11184/959/5788/3735/1852/1464/6850/5604/7124/5027/7852/7039/23566/5149/79444/5605/238/1950/728/5594/7334/151/5606/1432/1849/51196/64127/2081/8550/1399/2357/2914/2911/9261/6363/7311/5291/4342/7477/5770/5602/972/4294/6647/8517/7099/3553/5781/4296/6885/5608/5063/6233/7316/5148/10454/9175/975/7001/60370/2785/1616/2074/10961/9518/4217/7314/10746/3084/9294/5609/5600/23162/7189/5585/7867/5979/51495/4293/5319/1847/10818/79594/11183/8682/650/29969/7161/23118/51776/3815/8600/1815/10392/10595/8737/4916/5607/6464/9064/9344/3672/8567/7057/5562/5595/408/3082/27347/3643/7474/2246/1902/727/2247/1848/25759/4908/2690/7786/7043/57551/3479
## GO:0034332 55765/1001/23603/7422/999/2824/1000/5817/5795/79834/88/6422/382/5747/57863/6714/3987/7414/11170/1002/1010/8394/2185/5818/5962/1015/8861/3801/3273/5879/1008/2017/1006/5796/26585/1845/1007/51762/8826/89/6281/3911/1946/23332/4323/1013/87/1613/10982/6093/1016/56940/8874/204851/395/7205/6904/5728/4092/9475/2039/387/3728/9448/4301/25/23705/3673/5170/9270/11228/8650/29984/1832/5819/1495/57669/10395/9647/9344/7057/54828/23499/7070/1004/6385/118/10420/1005/1499/9748/4088/7010/23396/94/9922/6548/3791/22998/25945/9231/596/7248/10979/23122/8829/2042/1003/283/10580/1012/1009/4653/10391/4035/54361/347/10266/1307
## GO:0007015 6712/221692/5341/29767/3055/1236/3925/7111/11151/81624/8557/58/119/9087/274/57180/3383/57553/22843/6624/3936/5880/4771/221061/8477/54509/4690/246/10095/8500/9938/10096/5629/7454/7273/8440/5216/23616/3071/6376/3059/6356/88/1496/3984/5345/6422/54857/9168/7184/382/10097/51734/5058/8936/79585/6714/10006/2195/10092/2885/10456/1729/5217/822/7408/57175/11170/10109/3636/10094/199/55160/6710/5734/6722/4082/54942/1072/2185/5584/55607/226/9873/10093/5962/64780/5987/8976/7456/50944/5829/10178/2041/1627/998/9948/2475/11344/9530/9113/55761/335/1440/23242/7016/5063/6366/59341/7429/5879/2017/6869/9463/10787/23191/55604/9181/1739/55243/79983/859/2316/7046/3717/29766/1730/10810/4233/5581/7791/10083/10565/5999/7114/7984/79933/6281/6369/961/79778/23332/81/29109/87/5074/10458/11133/6093/7430/253980/5319/27289/10163/10677/9026/395/23607/9475/2039/387/4868/2693/6708/25/7126/11078/10152/9270/8195/116985/51763/9645/57698/2059/29984/6711/55435/1495/70/10529/22899/2909/10395/9647/5580/5756/27295/4070/11034/4641/51332/29108/10435/10174/2150/5071/23189/5921/7139/6385/4430/118/55909/94134/2013/23075/55616/408/4088/5295/28984/4739/6548/22902/22921/22998/8452/596/1901/7168/1490/7840/7248/9639/1809/23122/3397/6709/9353/1902/8829/2934/283/57731/2241/10580/10411/50507/54551/8470/9037/585/3693/85477/51474/24142/7481/4653/6387/10391/54361/10788/7043/6863/50853/80206/51466/25802/2006
## GO:0006790 5163/26227/875/79094/9435/55711/6319/262/50515/10380/2730/10331/6576/8942/2950/51022/11332/6783/2539/79017/8884/6611/55856/191/4507/9806/51647/1464/4522/58478/1737/215/1244/1463/9200/79071/6484/5160/1312/2395/10675/56922/5165/9334/63827/2180/9061/10164/26027/7915/570/23657/27284/7263/51268/10539/2588/411/4357/176/25874/2182/23597/5161/1468/92086/8050/3417/64834/79369/55501/9060/54928/27158/10678/9446/51144/26873/23305/201562/10327/10005/1622/4143/2876/5096/6482/79178/55066/84890/51074/23205/4552/8703/2720/6822/1738/2194/2937/23553/189/6647/64780/3313/4598/9469/8704/2683/4524/79586/8694/2739/3141/9391/25828/54480/9348/8702/1743/55748/4967/10861/50859/64579/10090/6819/54995/47/55256/25974/81616/284/25830/9054/79690/8277/54704/22856/4780/3029/23563/5091/4144/11315/1491/23474/2639/10402/27010/7849/64210/6820/373156/9331/64428/9953/23169/10400/8534/2938/283927/8460/1497/1836/2940/3074/2879/4594/2687/29940/64377/6483/635/51660/55454/2941/51449/9524/51703/10249/4682/56548/8509/55/58472/3423/2799/9645/4258/1800/23479/11046/5538/55790/8801/441024/31/27430/10654/38/23417/6777/6667/686/79066/8803/11041/64131/3425/4548/64132/2729/4779/2949/4025/4482/6622/27247/5162/6799/1373/6821/8459/5164/3373/79966/2098/2181/6776/3073/3340/79625/5095/27306/27232/26035/3155/2954/6785/7923/11019/6817/4060/7358/5549/60481/5166/50507/10560/2948/80704/3295/64087/2946/84869/2944/1462/23743/2690/80221/51363/633/32/5167/2331/1036/2952/1634/2947/54898/10157/51380/11081/4958/4969
## GO:0035296 952/59272/133/2643/136/3162/3351/1812/3383/239/5467/9474/5743/8985/348/551/1956/1908/5724/5910/4880/151/5345/40/152/3741/134/3792/5997/2243/2876/10911/1113/2266/4842/3274/59342/6647/80005/1816/1636/1131/80852/5028/3352/6869/3630/148/207/846/4544/2244/1401/3156/186/3269/1906/2852/3779/135/6093/183/5023/116/9475/387/624/27345/8398/659/4846/8195/112/4879/59/3356/3827/2982/1910/6546/3363/10242/3672/5286/2150/1889/9732/2702/6532/1373/490/3350/5592/2149/1621/4881/5797/5029/1907/54795/3952/8864/477/857/1909/2697/185/3357/7349/150/2053/1311
## GO:0051170 4321/1894/55612/3838/6496/3458/6634/1812/6632/7545/10553/6636/2254/6637/999/6628/79833/6850/23636/8882/84268/5743/5901/5469/79711/9221/10736/3059/51501/5594/4792/5371/9972/6633/1432/2646/23534/3837/9818/1026/5514/3839/11331/80149/9670/6635/6608/10155/9349/8487/23633/50628/10073/3843/7175/9478/3840/868/53371/2316/284/11261/5296/754/64901/207/7040/5571/79760/55705/4000/186/23435/8720/6774/8841/63928/183/5663/3728/5903/29969/8692/55374/51715/51366/3178/9531/11142/3842/7249/5569/5580/54960/406/26060/5530/4763/7157/60468/57506/4088/5295/55696/948/55198/6469/3952/10628/2737/347/652
## GO:0097746 952/59272/133/2643/136/3162/3351/1812/3383/239/5467/9474/5743/8985/348/551/1956/1908/5724/5910/4880/151/5345/40/152/3741/134/3792/5997/2243/2876/10911/1113/2266/4842/3274/59342/6647/80005/1816/1636/1131/80852/5028/3352/6869/3630/148/207/846/4544/2244/1401/3156/186/3269/1906/2852/3779/135/6093/183/5023/116/9475/387/624/27345/8398/659/4846/8195/112/4879/59/3356/3827/2982/1910/6546/3363/10242/3672/5286/2150/1889/9732/2702/6532/1373/490/3350/5592/2149/1621/4881/5797/5029/1907/54795/3952/8864/477/857/1909/2697/185/3357/7349/150/2053/1311
## GO:0007162 27299/4321/3902/3620/2633/1493/445/23560/80380/3559/5365/10859/1029/1051/864/23603/27242/11314/10288/10507/4072/5788/239/30009/6375/3659/3549/4771/3965/8751/865/999/7143/26191/83737/9404/506/2213/54900/23240/3135/6376/4192/1041/5054/5771/2651/54542/11326/57162/8651/3558/6441/6693/384/836/5747/6714/8379/7356/51441/84830/5340/11170/8573/80149/2266/1366/5621/7292/8324/4221/9306/4241/3586/10385/972/5962/5781/3718/3146/5140/10457/4851/2302/10653/1545/335/5777/5465/7045/6366/928/396/59341/3956/1826/3273/7001/3142/79872/11146/2796/53827/7471/1739/284/65125/1600/1845/207/3717/7040/51043/634/50943/9314/4155/383/2267/5270/10019/301/114897/1946/81/4323/2064/5074/135/5598/27289/3566/56940/395/6904/5728/285/3557/55966/4092/2039/387/149041/9750/650/9448/64844/102/25/6494/3958/9270/8763/5420/397/3440/3077/5800/55435/5573/5607/57669/10395/6370/3827/9647/5580/3456/2065/4070/7057/54828/9655/53616/57556/23189/5921/6385/3204/56339/4763/23075/8654/398/5295/8322/28984/94/3371/375056/604/182/9231/57045/1843/5592/23122/79679/1277/58494/6591/6695/1012/6469/2192/9037/4653/6387/10391/5364/4035/2737/2615/10631/347/4582/9723/18/9370/652
## GO:1903362 27074/55872/6790/5347/1075/55353/79016/7336/10213/7128/51377/5702/7480/9978/348/11124/7415/5704/4478/4248/55741/10755/1950/57805/10221/5371/5582/9532/10134/55212/55737/2932/5716/2165/8975/26263/3326/5747/5886/6599/1050/8078/2043/55432/2876/3949/5700/3320/1459/6613/23640/10197/51009/2185/27185/9097/9683/9349/5706/80011/5962/51322/7917/55743/3093/55294/2768/4193/51035/5566/28996/5045/9113/6386/4534/4287/55270/2332/6201/5701/29761/9491/57154/975/11146/64110/51374/7471/51465/11011/859/754/7314/7341/207/5705/22933/4745/149628/4780/8312/65992/28951/114881/11315/369/302/2931/7327/9817/9709/7874/1263/23376/29062/1453/6872/11236/11345/23400/7430/29978/5663/55070/93974/25898/5728/1855/51136/4092/28952/10869/10956/3300/64844/55823/6449/1452/5601/56893/5887/6135/6880/863/7110/9827/3077/26471/8554/10273/23274/1454/9529/8473/9992/9695/65018/2729/5310/9104/4779/9655/4130/5071/7337/29116/2295/8945/1601/23429/819/64285/9024/1942/2272/54209/9810/80279/26234/29997/79589/51339/210/6469/90865/10769/5988/857/4035/1191/4036
## GO:0006757 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/6521/23511/83440/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/2026/3098/89/669/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/5563/3643/2203/2819/26137/3479
## GO:0048013 4318/4067/1944/1943/8997/4690/10095/10096/2048/8440/1123/7525/28964/1175/2047/2051/10552/2049/4914/10097/5747/5058/6714/10092/8851/2043/1173/10109/10094/7410/55851/51107/10093/23294/1948/8976/2534/5781/7074/2902/6760/60/2041/1945/998/2050/3265/2904/6386/5063/1947/5879/2044/3516/1969/71/161/1949/1946/23385/6093/5663/8874/9475/387/1398/163/1759/5664/4916/6383/83464/5921/6453/64283/1942/26037/2042/4313/2045/10451
## GO:0002700 7037/5650/51237/91543/10859/2821/336/959/3162/4436/79915/2867/10225/7468/5788/9466/9188/30009/2207/6375/940/23586/3735/4282/9474/8013/7124/3569/7186/2213/3135/3596/7293/7133/958/5591/3134/54440/25818/3558/729230/3805/51744/1432/64127/695/684/55183/7855/3606/10892/7292/51704/3586/11126/972/7099/3553/3718/3598/6885/22976/3565/8809/3133/335/1653/975/5225/567/8915/23529/284/7040/79004/11277/50943/3098/383/114548/7189/1178/8741/5585/148022/7009/3566/4092/54537/8482/933/4292/9984/7098/3440/3077/6810/6830/9865/3456/7158/2150/5595/57506/6778/3567/604/3554/7474/5590/948/11005/7042/10039/54795/5950/90865/7494/11213/3263/7043/2625
## GO:0030879 1448/2001/8792/4830/1051/5471/353/4939/7473/7422/8997/2692/3091/3099/5469/7372/1950/675/1588/6356/25928/5594/10018/5371/7498/23513/790/9148/6714/6091/3398/6531/462/208/11331/2876/581/1723/6608/7477/2194/4580/5727/5617/2806/1447/7421/7472/2119/3219/9113/1999/9914/27023/1435/859/1969/10765/81606/207/3717/7040/51043/3084/823/383/6239/3235/1436/57142/7392/9612/2736/4255/374/2294/3673/1385/8600/5066/9423/6909/3488/538/6662/4855/2909/6777/2263/3664/8945/8660/10522/6778/8648/394/7474/6776/595/3202/5021/540/7048/8835/5618/4488/7494/2099/857/4487/54361/2737/2697/7043/1036/367/6926/7166/652/2066/2625/5241
## GO:0046546 259266/81930/4521/1515/2175/10549/3973/6770/6715/6943/9289/8894/3148/4436/867/3383/83990/1761/4678/2254/8751/8433/7490/6240/3157/10018/7022/2626/3623/6422/4914/5568/56159/1399/5927/10184/10371/8531/581/6736/6665/4142/269/2492/190/10046/2627/3622/9985/4201/2316/7314/7046/8879/22836/5156/7080/2623/4323/4089/3972/57599/3020/92/6382/3207/3206/59338/3815/642636/51742/8031/5972/599/7098/7110/152006/26471/5872/23598/7812/9667/6662/4824/1495/192670/598/546/2516/3624/2067/6716/5926/8648/7536/5914/3643/54997/7474/8743/596/8644/10272/595/23639/84159/2488/7482/7042/22862/10370/3295/4254/2099/5159/1471/23414/54361/2697/367/4036/2625
## GO:0009206 5214/55526/9688/3101/26330/3948/54541/4830/2821/57103/7167/2584/30968/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/142/55706/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/516/5211/2646/5236/57122/5209/79023/9818/5313/522/229/10476/514/6521/9605/23511/83440/226/51085/515/230/23279/2645/7175/5465/10632/4967/5213/5207/4833/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/7114/10201/89/669/521/539/8086/405/513/9883/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/51422/5224/5562/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/4832/2203/2819/26137/8382/3479
## GO:0003206 6664/1482/2296/2253/7468/5457/4624/6659/5629/6262/3091/5469/655/2280/6654/9421/55636/79977/2626/7135/8928/54583/6091/3398/8828/64783/6722/6608/5915/7137/6256/2303/7472/4193/6910/4091/4851/2627/4634/9510/27302/4625/6899/653/3516/859/7046/5318/7040/3084/657/4633/2931/9249/79810/4889/4089/7134/4607/26508/6604/3491/4853/4092/10277/659/2294/9464/4846/3670/6909/1832/60485/2022/6474/10848/54903/3280/2263/90/7139/8321/2702/7157/2535/23493/7010/5914/1301/182/7474/7168/4887/6586/23462/7042/57493/4208/9353/8829/7048/10370/5950/55742/58495/4488/7481/10512/1363/23414/7049/6926/652/4036/2625
## GO:0060337 3669/4321/11274/9636/4599/2537/6772/91543/3429/3654/3437/4938/4940/8638/4600/25939/4939/3394/3659/2634/3434/3433/6059/3452/8772/3135/54739/5771/3134/10379/9641/23513/3663/3326/3106/3662/3455/5696/4615/3439/3107/684/3105/29883/3443/5770/3665/3451/5781/3093/3133/5777/3430/3442/3445/103/3661/3446/11277/3448/3660/58509/26065/6672/29110/3444/79594/6773/3449/3440/8519/3716/3454/7297/3456/3664/11140/57506/51447/3441/1958/7474/10410/6041/10581
## GO:0071357 3669/4321/11274/9636/4599/2537/6772/91543/3429/3654/3437/4938/4940/8638/4600/25939/4939/3394/3659/2634/3434/3433/6059/3452/8772/3135/54739/5771/3134/10379/9641/23513/3663/3326/3106/3662/3455/5696/4615/3439/3107/684/3105/29883/3443/5770/3665/3451/5781/3093/3133/5777/3430/3442/3445/103/3661/3446/11277/3448/3660/58509/26065/6672/29110/3444/79594/6773/3449/3440/8519/3716/3454/7297/3456/3664/11140/57506/51447/3441/1958/7474/10410/6041/10581
## GO:0070302 2305/55872/55765/8792/4609/8767/5871/1236/6317/4067/11184/959/2950/9258/8877/22943/3735/5052/9618/939/7422/3276/7164/26191/6504/6850/5604/7124/83737/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/5605/5610/5594/2047/5911/140885/7498/10333/5345/6422/259/5058/64127/23239/6788/2081/1857/2043/10371/7855/80149/6363/27035/4281/7477/8324/2185/11221/4221/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/59341/355/54910/2889/10114/9175/1540/1616/10269/171392/177/2074/4616/1739/60401/4217/859/10746/1845/207/6188/23542/8312/3156/5609/50488/23162/7984/7189/10494/55801/2898/5585/1906/9821/64853/351/8841/221472/7430/51495/4293/5048/5470/79594/51347/11183/650/29969/9448/51776/2122/1647/9839/2324/8600/9464/4215/4986/54986/7098/10392/23043/10595/10912/8737/10771/5859/9064/2218/65018/9344/23236/5187/1856/8325/4317/29108/2150/5071/2874/9611/23328/5595/10550/3476/8322/3082/4920/7474/4216/1843/1490/11211/7042/2308/4077/51339/9867/3952/3480/7786/57551
## GO:0007044 23603/7422/2824/5795/79834/88/6422/5747/6714/3852/3987/11170/8394/2185/8861/3691/3273/5879/2017/5796/3655/3918/26585/1845/3678/8826/89/6281/3911/1946/23332/4323/87/1613/6093/5339/3914/7094/56940/8874/395/7205/5728/9475/2039/387/9448/25/2335/3673/5170/9270/29984/7145/57669/10395/9647/9344/7057/54828/23499/3915/7070/6385/10420/9748/4088/7010/94/6548/3791/22998/596/977/7248/10979/23122/8829/2042/10580/3861/4653/10391/3909/4035/54361/347/1307/1308
## GO:0010821 3002/4318/8326/1869/57103/2810/578/30968/292/9141/10449/637/664/706/7027/10059/409/7534/5880/10105/7159/2395/5329/3091/551/3099/10055/8739/57602/10018/5366/55737/2932/5716/10971/10962/54471/7533/7332/80179/6721/5534/7029/10456/25793/55486/2876/7855/581/1459/1723/8878/7416/64083/51025/10133/51100/54708/27141/59286/55294/3980/7529/9530/841/10075/3998/5599/7323/54978/9776/57154/2017/10891/51499/28978/8996/10193/10533/207/64423/4000/11315/2931/79778/2852/27429/7531/8314/23400/4976/572/93974/10645/9026/55022/79594/10013/3064/89781/6773/7161/9520/26355/8398/25994/9927/10425/55823/23368/9531/5533/23274/54832/4836/10493/7249/598/65018/54741/56947/51024/29108/5562/8626/5071/3375/11140/23409/7157/23259/55187/665/7755/3082/3791/8743/596/54209/65084/64112/201163/638/6720/3305/1191/1634/3479/22885/4137
## GO:0035966 3576/79094/440/6347/79139/3068/30001/578/10130/3329/10897/23753/467/10525/10954/7353/7873/2673/10808/8988/3336/4690/468/1663/58477/3301/7415/8440/116138/10987/55741/3297/5610/56005/5771/10018/10113/9217/26291/9114/811/1649/7184/3326/6745/11015/2161/25822/3309/2081/22824/55658/55432/3320/1965/51768/581/9797/26608/6734/10133/51009/3337/871/5770/3484/7917/2134/5611/22926/1388/5526/4287/23197/64764/23071/1616/439/55738/9451/23645/23190/27348/2033/10488/4189/4780/4000/55284/9570/267/55161/9820/1491/2931/51283/6048/9709/55033/8720/1861/11153/7009/54788/27230/3338/22872/7094/7709/3308/10013/2135/3300/51360/1200/30827/2137/54956/9927/55062/9531/10273/135138/6464/9695/11080/1639/7057/5071/3315/10106/118/3316/5295/37/8452/90993/7466/27129/595/80279/80267/7494/26353/1191/64061/7060/1311/8614/10551
## GO:0060560 6790/9355/53335/8437/3897/51083/5459/10507/3475/7473/6696/80128/7422/1020/7143/7852/8904/348/5469/23566/9373/4504/6356/5967/23769/55083/9362/3984/1785/51393/2932/6422/3975/6792/3326/5058/8936/3239/7224/8851/8828/393/7414/10371/84298/5361/4133/3320/1954/1002/10479/6722/6049/10155/7477/8153/27185/4099/3676/7074/51330/54413/4851/11344/55558/23242/8766/9699/6495/1826/6456/51548/57154/9175/81565/2017/4825/10413/6928/8239/23191/1435/4897/9798/23394/10765/7040/2664/3688/8826/2016/9968/1946/51199/351/57142/23011/22999/1382/5048/1855/23105/79594/10013/8482/5458/10439/6259/374/659/25/127833/2335/9839/2258/5916/9423/50618/1630/6909/57698/4916/6662/1808/57669/5802/6405/9706/2263/5532/23499/23025/3611/26053/5071/55909/1499/4131/627/23767/6794/29882/3371/22902/10253/55364/6299/7474/5590/1901/23111/2803/6586/26999/4692/2246/10252/9353/8829/7048/6469/80208/9037/9201/2099/7481/6387/23327/56920/2045/4035/6857/10631/214/3913/9863/51760/652/4137
## GO:0070663 3620/6355/6664/952/1493/6352/7037/80380/3559/8767/51237/10859/1051/3574/4860/22806/4067/7412/959/27242/11151/2950/51083/11314/79915/1880/10288/5788/916/6375/100/3600/3659/3549/923/940/5880/7128/5588/3965/10148/26191/4282/4690/912/3569/83737/8772/51293/8440/2213/23240/3071/3135/100133941/3596/7293/7305/7133/958/6654/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/6693/384/836/1141/3568/8379/970/7356/4332/920/3635/1026/695/23308/684/3606/2056/6363/199/8744/5621/7292/3586/10385/972/4352/7535/7099/3553/1604/3146/10457/3565/3133/2302/5777/9093/63925/3113/1947/975/11146/2796/6869/177/1739/1435/26585/23529/7040/51043/6188/50943/59067/383/3115/301/7189/944/1178/11148/5585/2064/5169/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/5741/3958/5573/472/6777/3280/29108/6385/1499/8654/8660/3567/604/9231/57045/596/4179/196/3087/4208/7048/79679/6469/3485/3952/4254/2615/6863/3572/3479/10451/652
## GO:0009895 27074/55872/4085/55353/5317/1869/54541/4904/336/57103/341/3162/575/706/51377/23450/1994/26191/7124/345/10492/1956/1981/4248/26986/10755/9704/4504/57805/3587/57602/3607/5476/5371/8898/5582/2626/55737/11044/1611/2165/3834/1432/3326/6556/5747/10135/11178/4615/8291/9967/51582/6599/134/2043/55432/9554/8531/5970/9261/1459/84861/51025/10128/5294/1660/51009/339/116986/3586/9097/9683/9349/80011/51322/7917/11187/2534/3553/23256/51035/5140/9711/28996/2668/2475/23367/5245/5045/54855/4170/1676/8724/6386/5465/4534/2332/3183/5207/6201/29761/51548/9491/4843/10605/26073/10891/3630/51374/3192/9860/7471/1982/51465/54971/10193/11011/3184/148/2316/5290/2801/10533/207/22933/4745/3084/4233/3156/80317/65992/10670/11315/5270/9682/80772/89/302/2931/7327/6048/23435/25819/27429/7874/6872/2903/51594/4864/493/6774/29082/11345/23400/6093/5774/8241/5663/2822/5073/7538/10869/10956/23118/64844/7432/9637/7076/10949/8925/6449/5300/56893/6135/6880/863/4656/9827/3077/26471/2905/23274/9529/54922/7249/8473/65018/1268/90806/23077/9104/64784/5562/6622/4130/51520/10140/9759/5768/9638/7157/79048/4088/23429/3082/819/3240/596/1942/2272/54209/8678/4194/7248/80279/11180/8604/66036/29997/3953/7078/210/6469/6625/3952/1149/11213/1471/2203/1153/32/3357/150
## GO:0051924 3627/6373/4283/6352/5026/1230/6347/6351/10859/4067/1535/5336/11151/5031/1812/578/10288/3208/5024/274/3383/2539/706/6375/409/6406/55151/930/9456/7439/945/9474/5027/2641/7852/5743/6262/4644/57214/5142/23566/6376/3596/786/2280/1950/55636/5371/117/6769/51393/1394/4878/255057/375346/9002/8832/6690/9446/8291/774/920/1729/6786/2035/623/8573/2056/581/1813/4842/5294/5621/2185/5335/29763/9472/5987/2534/2902/6271/9001/5566/1756/5155/5777/2847/781/2332/2775/784/7222/9914/785/2631/353514/815/859/2859/57158/7341/1193/22953/5144/2147/7040/846/5957/5581/818/6236/2916/5999/28954/3060/4923/7225/816/2852/7531/57338/135/183/5023/7009/3603/5319/57165/8787/3064/782/10345/387/799/6781/4987/3200/8398/25/63892/5664/5170/3958/1815/4846/2771/11027/51763/287/9722/9992/1392/4638/27075/6546/9104/783/6622/30845/7070/4985/6588/10681/56848/1499/825/490/10268/845/6548/2669/51669/7466/7779/596/2149/5025/80024/844/187/79026/5311/2259/3270/6717/481/2281/3306/7220/2946/477/6387/5159/857/775/5350/2697/7349/150/776/8614
## GO:0046777 9833/4751/7272/9212/6790/3055/3654/51765/4067/11184/5613/5788/7444/11200/4683/1445/51755/7422/6789/1020/7443/6850/9262/5912/613/1956/9770/79834/2011/5605/238/5610/2047/1612/2264/5911/5582/2932/8805/790/7294/22853/53904/6792/2049/7006/4914/5747/5058/6714/2081/8550/2043/1198/5292/6793/4361/57826/1965/4342/2321/10155/2185/23604/4593/660/7535/4294/6011/5062/4296/7301/2041/9943/5566/10457/1455/2050/2475/8576/5155/1636/6098/7016/2675/27102/9175/23178/3630/1859/9451/26585/5587/815/8428/11261/65125/207/3717/3645/50488/5156/8826/10494/5593/816/545/1436/2064/91/1613/6872/5154/23400/4293/10645/3725/51701/25865/51347/4140/3815/25/2324/22848/5170/4215/23043/23235/55781/2260/8737/8711/8408/2022/472/65018/9344/2242/2268/9706/2263/7070/10111/1196/5595/2869/7424/4921/9748/6794/7010/3791/55364/27347/3643/2322/2261/10040/5753/2241/9961/57396/3480/1195/11213/5159/857/2045/4915/5167/7786/57551/4117/9370/2066
## GO:0008584 259266/81930/4521/1515/2175/10549/3973/6770/6715/6943/9289/8894/3148/4436/867/3383/83990/1761/4678/2254/8751/8433/7490/6240/3157/10018/7022/2626/3623/6422/4914/5568/56159/1399/5927/10371/8531/581/6736/6665/4142/269/2492/190/10046/2627/3622/9985/4201/2316/7314/7046/8879/22836/5156/7080/2623/4323/4089/3972/57599/3020/92/6382/3207/3206/59338/3815/642636/51742/8031/5972/599/7098/7110/152006/26471/5872/23598/7812/9667/6662/4824/1495/192670/598/546/2516/3624/2067/6716/5926/8648/7536/5914/3643/54997/7474/8743/596/8644/10272/595/23639/84159/2488/7482/7042/22862/10370/3295/4254/2099/5159/1471/23414/54361/2697/367/4036/2625
## GO:0034660 3669/4603/7453/6884/23560/91646/54913/54901/55506/705/2957/2617/23246/54512/10799/5435/79650/8565/6897/55726/23481/2058/9188/16/10849/3028/3735/5440/3376/79074/55759/10200/27341/9328/10360/5822/8270/10436/60487/10248/5393/6839/80324/9775/4141/54514/54663/5433/1663/54433/51118/54920/833/9136/6617/5901/10775/23404/54881/10557/55278/54517/56915/55661/9221/5464/54555/11157/55157/55505/6882/57602/283459/23160/54542/55636/2193/25896/10940/4809/2091/4686/2960/6597/5437/80237/114049/2958/904/23318/22984/55656/10556/79691/64118/2926/51096/55651/55197/7965/25926/92856/7407/192669/54606/8178/54802/55813/4234/1787/81556/55226/6223/5439/51202/11189/2971/3181/56165/1615/26523/9521/6741/10885/55127/5036/51067/4931/5431/60528/5970/80149/51729/6877/79035/4654/10171/79050/27340/79731/23536/9790/27043/5436/51002/1478/2961/2976/9255/9329/10898/4691/9097/10978/29960/27044/26610/22916/81605/11137/51547/81887/6619/2959/64768/26168/9271/8468/10199/115708/8518/79863/27042/50628/55178/6217/2475/79042/81875/51654/3265/27304/6194/4677/55124/5438/5432/51106/51493/11340/9555/8602/51637/80789/11062/27068/23016/63899/1653/27292/6201/83480/9330/5452/6187/57050/55006/11056/51504/24140/55699/57418/55011/65083/29102/79922/57604/55621/51728/6598/2963/57570/79979/55272/23379/57109/51593/10813/23395/10607/115939/103/11022/6301/10667/79670/57117/5188/8575/8570/10438/6895/55644/6129/51013/5434/65123/11102/6208/4790/9277/6232/4087/51367/6878/79707/26173/9692/7702/6229/6155/11103/5917/79727/80222/55520/51018/8812/6618/5073/10302/10352/2975/6234/8780/149041/3035/6165/6203/51077/55140/6209/8846/10785/29063/22936/317781/56257/26512/51531/54853/23378/6908/6135/6880/54974/64859/1022/5451/54973/23248/55781/10595/10927/404672/2972/64852/25879/79871/6621/80746/5859/79664/5430/10208/117246/192670/130916/64172/23438/1025/6667/79066/79828/23587/905/23411/23517/55756/114034/55035/9045/57038/5394/5441/55164/51520/4086/56339/23405/7157/10521/4088/2962/84172/51093/55798/54859/10412/9724/81890/55623/6041/29997/284119/283/9836/22894/55152/221078/643376/4137
## GO:0002688 6278/3627/10563/7941/3576/6352/56833/1230/6347/11240/6351/1236/4067/6354/2841/5641/26228/6375/3735/3929/1652/5880/3965/4282/3569/1240/3071/4192/1908/728/1588/5054/63940/3570/57118/729230/3592/57402/719/811/708/1432/4354/79647/8291/2358/6868/3579/6363/199/8740/2185/23604/6346/972/3146/9943/6366/59341/2660/5879/1435/26585/65125/10488/27202/683/158747/1906/9750/51561/102/7057/2150/5595/7424/2155/23075/27347/7474/1843/80024/5919/9353/1907/727/4681/83700/4856/2621/51157/5764/6387/7060/79148/9547
## GO:0006941 23630/1824/59272/1482/7136/3757/8557/3753/4626/23676/9631/274/6329/147/55151/4624/9456/7852/6262/4151/5142/7273/1134/10021/1144/2257/2626/1147/5606/23336/4878/7135/384/9446/3741/134/5997/156/80149/1113/4842/6327/5294/6331/6336/7137/226/7140/6323/4635/3762/8048/5566/1756/5608/2475/781/4634/79784/488/7125/27302/4625/1739/476/148/859/2316/5290/1837/7341/1193/5318/5144/3759/6901/89/4633/1829/487/4632/9826/7134/6324/4621/4607/6640/8913/4092/3728/10052/6781/1938/3764/287/1832/3781/4090/2548/70/9722/9992/3760/10848/6546/7423/5224/51761/783/30845/7139/3784/1760/4608/2702/9759/7138/8654/845/6548/29119/7168/1490/5025/844/3270/6717/3752/481/54795/1140/2281/10324/2946/477/6444/23327/857/775/23171/5350/55800/2697/7349/776/23704
## GO:0046034 983/891/5214/55526/9688/6472/3101/26330/3948/54541/2821/57103/1537/7167/9377/4436/2584/30968/4626/2597/637/5230/9631/2023/5223/706/10059/57017/4726/5208/4704/10105/6396/215/5210/23165/5315/29796/4624/7386/142/55706/204/2395/23636/5027/4725/518/3692/4723/3091/9551/506/3099/10165/7415/525/1349/4708/4927/79902/4700/509/10762/54539/8480/55753/3607/1351/11097/3939/1329/5232/4719/9972/4697/81929/4702/2027/516/5211/2646/4694/1340/5236/10845/57122/272/5209/79023/4712/9818/4722/5313/4711/522/229/1337/7381/4710/7384/10476/514/6521/9605/1327/23511/9167/83440/1738/65220/226/4706/51085/515/230/23279/8505/523/2645/526/7175/5465/2987/4717/51079/10632/4967/4720/5213/5207/29789/4709/51548/498/1352/4713/11319/23225/10891/3630/4625/8021/1345/4701/2631/53371/79736/29103/4729/7040/5571/11277/4928/2026/4714/3098/6901/4696/11315/7114/89/669/521/539/8086/27089/405/513/4621/5169/9883/203/6774/2103/6834/10975/572/7385/1497/93974/116/1355/27109/55022/51341/374291/387/5903/79085/4707/348995/55746/4204/863/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/3356/8473/517/65018/4724/51422/5224/5562/6622/56848/9611/9759/7157/957/5563/3643/54209/8604/201163/481/477/2203/2819/5167/26137/3479/26289
## GO:0046822 51512/1894/55612/3429/3458/2810/4600/7545/7295/10541/999/1020/23636/5905/8882/5743/5901/580/9221/3059/5594/2932/9972/1432/64328/9818/80149/6608/10155/11052/1660/5501/2010/3553/5781/22916/4193/5566/3843/7175/9478/5936/10657/5784/8021/53371/2316/284/11261/5296/7040/8536/11315/186/23435/8086/26993/7531/6672/8841/63928/5494/5663/3728/29969/8692/51715/51366/9531/11142/4659/55781/6830/6934/5569/5580/29072/4763/7157/57506/4088/5295/55696/948/4734/10411/6469/3952/2621/2737/347/652
## GO:0034340 3669/4321/11274/9636/4599/2537/6772/91543/3429/6472/3654/3437/4938/4940/8638/4600/25939/4939/3394/3659/2634/3434/3433/6059/3452/8772/3135/54739/5771/3134/10379/9641/23513/3663/3326/3106/3662/3455/5696/4615/3439/3107/684/3105/29883/3443/5770/3665/3451/5781/3093/3133/5777/3430/3442/3445/103/3661/3446/11277/3448/3660/58509/26065/6672/29110/3444/55337/79594/6773/3449/3440/8519/3716/3454/7297/3456/29072/3664/11140/57506/51447/3441/1958/7474/10410/6041/10581
## GO:0035264 6712/1717/2019/6491/8200/321/5449/51316/5641/1019/5479/3549/80010/4726/57282/2692/2395/29123/3297/4880/6654/54542/55636/79977/10959/153/2820/1814/2778/2688/6531/22809/1813/6608/5915/677/10939/5727/57468/6647/25932/5617/5781/51052/2475/2538/7429/10269/2074/9518/1435/5290/5144/2033/8879/6881/6895/79728/2844/27429/55777/320/351/8455/23770/57599/3020/6774/7430/5454/104/6506/5324/59338/2693/79718/25937/1385/10743/80351/5916/8195/6668/2648/7403/23038/55224/7516/472/6777/55512/10848/2263/546/5930/51761/25836/55717/2067/154/2068/118/7157/26058/5357/10365/5914/1028/6776/596/80169/3202/84159/57493/7507/57731/1735/8835/2691/585/79068/2690/4886/367/23371/3479/9254/1311/2593/8614
## GO:0016054 1381/23475/3620/6999/3161/875/5194/80896/8564/80150/8372/51302/8942/5471/5973/586/23464/10449/191/23175/3028/10247/215/55289/5467/10993/2805/56922/54363/2653/57214/2108/7915/7263/51268/4357/1374/5444/27349/1666/1056/51102/55577/84830/3034/9942/208/10327/10005/5009/4143/5096/84890/3033/4842/5264/4552/6822/1738/1892/6718/189/10478/4051/2806/5625/2744/2168/2475/1610/25828/5465/23659/8659/1743/501/4967/3242/51/4843/2109/64577/2572/23600/11261/5828/6470/207/7040/960/10841/5053/1428/383/1962/10840/23569/1491/2639/1891/1629/493/51179/10894/1376/2875/283927/3074/2747/4594/1632/3032/5446/8692/23498/5092/2731/34/593/55347/58510/26275/6652/7291/2990/4846/51084/1579/3030/3712/89874/6342/10295/51181/38/23576/26063/883/56603/23417/1268/3425/2110/3081/587/55825/30/23670/5825/27034/23564/55258/35/8660/55576/37/2752/224/6548/2571/3373/5191/549/3073/2184/2746/225/3067/5095/80724/11001/33/3155/55556/2954/4329/1384/2166/5860/2247/8310/275/56898/1592/594/3952/3295/3176/64087/8528/10455/3991/443/32/8309/1036/3667/66002/36/54677/6898/10157/51380/18/9370
## GO:0046395 1381/23475/3620/6999/3161/875/5194/80896/8564/80150/8372/51302/8942/5471/5973/586/23464/10449/191/23175/3028/10247/215/55289/5467/10993/2805/56922/54363/2653/57214/2108/7915/7263/51268/4357/1374/5444/27349/1666/1056/51102/55577/84830/3034/9942/208/10327/10005/5009/4143/5096/84890/3033/4842/5264/4552/6822/1738/1892/6718/189/10478/4051/2806/5625/2744/2168/2475/1610/25828/5465/23659/8659/1743/501/4967/3242/51/4843/2109/64577/2572/23600/11261/5828/6470/207/7040/960/10841/5053/1428/383/1962/10840/23569/1491/2639/1891/1629/493/51179/10894/1376/2875/283927/3074/2747/4594/1632/3032/5446/8692/23498/5092/2731/34/593/55347/58510/26275/6652/7291/2990/4846/51084/1579/3030/3712/89874/6342/10295/51181/38/23576/26063/883/56603/23417/1268/3425/2110/3081/587/55825/30/23670/5825/27034/23564/55258/35/8660/55576/37/2752/224/6548/2571/3373/5191/549/3073/2184/2746/225/3067/5095/80724/11001/33/3155/55556/2954/4329/1384/2166/5860/2247/8310/275/56898/1592/594/3952/3295/3176/64087/8528/10455/3991/443/32/8309/1036/3667/66002/36/54677/6898/10157/51380/18/9370
## GO:0090596 5080/6664/8842/639/6496/362/6247/5146/5459/8820/3066/8557/24147/2253/1749/578/7545/4647/3549/3638/2792/2138/2254/10220/23287/7422/2780/3229/8013/474/2048/613/5629/3091/525/655/356/30813/10736/6094/5594/2047/55636/23513/5456/25806/53904/3975/79955/23418/6121/2637/2195/6656/8323/64220/2779/5309/4669/7855/581/3065/5915/5584/5818/6647/4308/3150/25794/25987/7472/793/28996/6096/7287/57096/51384/23424/2201/6495/1826/50937/57053/55000/3198/6899/9368/7471/7068/1969/668/51168/10083/10002/8575/4041/1906/65979/7849/1419/7528/6497/55584/6774/55764/22882/10818/54549/204851/1855/5754/9132/9750/6169/2301/5308/2624/2736/10210/7976/357/9927/11078/10152/7291/5916/9423/6909/23554/1270/9935/10427/2260/220/6662/6670/1750/5076/56603/6015/4762/51141/8516/1856/7054/4237/2263/7020/9620/51761/25836/3199/7070/8289/579/5595/4763/54806/1499/2295/2535/2299/10265/4124/29/10253/1301/80184/182/4211/4920/6299/25945/7474/596/1280/8412/7482/5797/55084/5396/1735/5950/1295/1290/57728/585/2202/26018/5764/1289/116039/1296/4915/4487/3249/2737/2487/6935/2200/55714/652/80736/2625/7021
## GO:0032872 2305/55872/55765/8792/4609/8767/5871/1236/6317/11184/959/2950/9258/8877/22943/3735/5052/9618/939/7422/3276/7164/26191/6504/6850/5604/7124/83737/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/5605/5610/5594/2047/5911/140885/7498/10333/5345/6422/259/5058/64127/23239/6788/2081/1857/2043/10371/7855/80149/6363/27035/4281/7477/8324/2185/11221/4221/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/59341/355/54910/2889/10114/9175/1540/1616/171392/177/2074/4616/1739/60401/4217/859/10746/1845/207/6188/23542/8312/3156/5609/50488/23162/7984/7189/10494/55801/2898/5585/1906/9821/64853/351/8841/221472/7430/51495/4293/5048/5470/79594/51347/11183/650/29969/9448/51776/2122/1647/9839/2324/8600/9464/4215/4986/54986/7098/10392/23043/10595/10912/8737/10771/5859/9064/2218/65018/9344/23236/5187/1856/8325/4317/29108/2150/5071/2874/9611/23328/5595/10550/3476/8322/3082/4920/7474/4216/1843/1490/11211/7042/2308/4077/51339/9867/3952/3480/7786/57551
## GO:0043618 1111/768/5688/5709/5698/1051/5693/5713/3162/5721/5691/5685/467/5690/5684/5686/5695/7428/10213/23198/7422/5699/5714/6921/4690/468/5702/9978/5708/5692/3091/5704/8440/5683/3297/4504/5694/5718/5682/5716/1649/5707/54583/5696/3309/5719/5700/2056/5717/7311/10197/8453/3337/5706/10985/5710/22926/4851/1388/5689/5720/6233/7316/5701/9491/6923/5711/5715/26287/3516/7314/9861/2033/5705/22933/4780/55662/8994/405/6872/5598/7009/112399/3725/51360/64344/25994/571/9531/7157/1387/10365/90993/55364/1958/2034/4734/10370/4582
## GO:0048167 991/952/6770/114/5641/9145/1812/10288/5024/575/6285/1020/7143/57282/2048/2906/5743/348/1959/6376/7305/10755/10814/5594/5923/2932/9148/6344/7533/6780/6809/7101/11178/91683/6855/2895/134/2043/3710/11170/4900/1813/8878/8541/6722/4761/5621/2185/3274/3745/55607/2902/54413/1627/4218/1816/3265/869/2904/8766/2332/3845/23154/6343/3706/6616/9463/177/3630/23373/54434/815/3766/22941/1979/5270/1742/9610/2898/3269/816/23385/351/4355/2903/57338/26012/10458/135/183/5663/23237/27020/5728/6900/2695/3815/25/1385/4204/22930/2648/2905/5864/57406/10636/6810/5649/1392/6543/10858/9693/2890/22871/5532/23025/6622/4130/22986/107/27065/4763/4131/4776/10497/29882/5914/2915/5590/26037/9162/6844/79772/2259/4208/22849/26045/4311/6812/11346/10769/5764/4915/4137/1524
## GO:0017038 4321/1894/55612/3838/6496/5194/3458/1812/9141/7545/56993/2254/999/6850/23636/8882/84268/5743/348/5901/5469/79711/9221/3920/10736/3059/51501/5594/4792/5371/55750/25813/5830/1432/2646/23534/3837/9818/1026/5514/3839/11331/3320/80149/9670/51025/6608/10155/9349/26519/55670/10073/3843/7175/51079/26520/9478/3840/868/53371/2316/284/11261/5828/5296/754/64901/207/7040/5192/55705/4000/51762/186/7984/23435/8720/6774/9409/8841/63928/183/5663/5189/3308/3728/5195/5903/29969/8692/55374/51715/51366/9531/11142/3842/7249/5190/5569/5580/406/8504/5824/26060/5530/4763/7157/57506/4088/5295/55696/5191/948/29928/5193/55198/6469/3952/10628/1191/2737/347/652
## GO:0042098 3620/1503/1493/6352/7037/80380/3559/8767/10859/1051/4860/7412/959/27242/11151/10288/1794/5788/916/6375/3600/3659/3549/923/940/5880/5588/3965/10148/5699/4690/912/5027/3569/83737/8772/8440/23240/3071/3135/100133941/2000/7293/4478/7133/6654/54542/11326/57162/54440/4004/3593/3558/6441/729230/3592/3109/6693/384/6556/836/8379/970/7356/920/23308/3606/2056/6363/581/199/10892/8744/5294/896/5621/7292/8740/3586/10385/7535/2534/3553/1604/3146/10457/3565/3133/2302/6194/5777/9093/11119/3113/1947/975/7001/11146/2796/177/1739/7040/51043/6188/50943/59067/383/3115/301/7189/944/1178/11148/2064/23385/5074/3594/30835/149041/8995/51561/6708/64844/25/3958/6304/5573/6777/3280/29108/5532/6385/1499/7157/8654/9231/57045/4179/977/7048/79679/2281/6469/3485/3952/54361/2615/2697/3572/3479/652
## GO:0071478 55872/10635/9212/1111/993/1894/5888/4609/5111/641/1535/8372/6247/92815/578/5424/11200/2072/5603/2792/57817/142/23028/468/3014/1410/5743/85453/3297/23173/1642/25896/5810/1785/23746/8091/3428/6422/54929/1432/1259/10010/10135/4869/10856/2002/5481/2885/3309/9397/1026/5145/26155/26272/2986/208/2779/79823/2547/1965/400410/581/79073/9683/6011/4308/4193/5883/3265/79913/1936/2332/23514/5148/2782/10276/10269/5796/10413/51499/3364/11011/51109/7040/2033/7520/11277/4157/64710/545/2979/7528/10988/6872/6010/3981/2339/1258/2978/8450/9575/8692/4255/51776/1647/842/7486/55031/404672/5429/6295/4836/22890/5475/3000/472/598/23411/7158/25836/1407/5158/56339/1643/7157/4776/5295/6794/1387/3373/7508/55364/1958/55693/4734/4311/6591/50507/358/2868/5764/1396/388/138162/1408/2625/4239/10974
## GO:0050768 259266/5080/9355/6664/4821/53335/952/6663/6496/9289/430/3418/3066/26228/30012/55079/706/3475/7473/22943/6696/81618/80128/10220/1020/7143/7124/3569/2048/348/5469/11202/6376/10683/655/4504/2932/9856/152559/811/8934/1814/7533/2672/382/1716/1977/2288/5747/7101/50807/1522/3398/7224/9283/8851/2043/393/5309/10215/10371/3949/4133/6049/3196/11221/4099/27257/1656/1948/3553/6993/4193/10498/54413/4851/5978/7476/55558/396/6657/59341/3956/7015/9745/2796/4825/9860/567/4168/9181/7068/4854/6014/1400/1600/2147/7040/22933/3084/2664/23251/10660/657/5780/23380/56478/7225/1949/351/57142/6497/6774/79727/2580/5663/22882/116/5048/5728/23105/10363/387/5458/7431/6658/6259/6900/9448/7161/10519/2258/429/55755/4974/3670/9921/9423/112/1630/54328/1270/4038/5800/9139/1620/9529/4916/6662/1495/2309/22876/6911/23500/5802/7025/26052/1910/3280/9706/9693/22871/3199/7070/23108/23189/8929/7337/5530/6532/4763/29116/23405/5087/1499/29956/7157/4776/22891/64689/22902/23258/182/4211/7474/23111/1942/4804/66008/58190/7248/1809/3397/11075/3400/9353/1902/8829/1735/6695/5108/55198/6469/5793/1281/9037/6653/85458/10769/5764/56920/2045/5376/89927/4035/2737/1746/63923/27124/2066
## GO:0006006 5163/5214/3101/26330/4938/6576/2821/57103/2642/7167/2171/5499/2597/5230/2023/467/7262/2539/5223/5208/1737/5106/4190/5315/2542/5467/10993/5160/468/2805/7124/5165/2641/3099/10165/57001/7915/80183/1642/5771/3607/3175/5366/5161/1468/1374/2932/2820/1432/2027/5211/2784/2646/3170/5236/6714/8445/8789/208/10327/4191/5313/229/3636/5500/8402/83440/680/51094/226/3486/2806/230/57223/10447/3651/5443/2475/2645/5465/2538/5213/5207/1390/10269/10891/23178/3630/5290/8277/207/60343/2033/2026/5091/3098/89/2931/4041/669/114897/5509/10776/1609/10296/140710/51451/2103/572/27230/2822/5903/5741/6652/8850/6095/51763/2648/23038/283871/3488/2548/57818/51181/8473/5239/23417/23411/5224/9104/4779/5562/5071/10499/1353/1407/1196/9563/5162/7157/5261/92579/8660/5164/283450/3643/8604/2308/3953/5950/10580/5166/3952/8864/6097/2203/2819/7033/32/5167/11188/4485/4886/347/3487/3667/3479/114899/9370/5105/7021
## GO:1990823 4605/5080/7037/5214/11240/29088/6751/22808/2730/29887/9145/292/3383/9806/7805/6723/688/3099/9021/27101/5371/8731/9118/10678/3720/6656/11156/8828/9521/55183/221830/26577/5277/8467/7706/4691/22823/64137/11235/7091/6432/3192/4168/10765/8726/7520/9314/4144/1491/55818/22904/2249/9774/9227/55892/9242/5372/5990/11107/4092/80258/5826/51660/2731/54956/1385/1488/8600/5916/2059/4801/64321/56155/23411/54836/587/9945/8745/7424/8322/23522/10253/84159/2494/4744/5118/7494
## GO:1990830 4605/5080/7037/5214/11240/29088/6751/22808/2730/29887/9145/292/3383/9806/7805/6723/688/3099/9021/27101/5371/8731/9118/10678/3720/6656/11156/8828/9521/55183/221830/26577/5277/8467/7706/4691/22823/64137/11235/7091/6432/3192/4168/10765/8726/7520/9314/4144/1491/55818/22904/2249/9774/9227/55892/9242/5372/5990/11107/4092/80258/5826/51660/2731/54956/1385/1488/8600/5916/2059/4801/64321/56155/23411/54836/587/9945/8745/7424/8322/23522/10253/84159/2494/4744/5118/7494
## GO:0032944 3620/6664/952/1493/6352/7037/80380/3559/8767/51237/10859/1051/3574/4860/22806/7412/959/27242/11151/51083/11314/79915/1880/10288/5788/916/6375/100/3600/3659/3549/923/940/5880/5588/3965/10148/26191/4282/4690/912/3569/83737/8772/51293/8440/2213/23240/3071/3135/100133941/3596/7293/7305/7133/958/6654/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/6693/384/836/1141/8379/970/7356/4332/920/3635/1026/695/23308/3606/2056/6363/199/8744/5621/7292/3586/10385/972/4352/7535/7099/3553/1604/3146/10457/3565/3133/2302/5777/9093/63925/3113/1947/975/11146/2796/6869/177/1739/1435/23529/7040/51043/6188/50943/59067/383/3115/301/7189/944/1178/11148/5585/2064/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/3958/5573/472/6777/3280/29108/6385/1499/8654/8660/3567/604/9231/57045/596/4179/196/4208/7048/79679/6469/3485/3952/2615/6863/3572/3479/10451/652
## GO:0034284 1515/4821/6770/4830/2730/114/56943/1535/336/2950/3383/80010/5208/4704/5127/6659/5467/2692/5165/5743/3091/1080/6518/8891/25874/26291/2626/8431/6597/5211/2646/3170/9971/836/10135/5428/2081/56652/6434/5019/3172/65985/5313/7351/3799/6722/2185/3745/4221/65220/51085/5798/1361/51052/93/7074/7447/3651/5566/2645/25828/65010/3956/2850/5879/10891/2044/4825/177/55011/6928/9324/1967/2021/6598/5290/8890/10533/4760/7040/846/5581/5894/3156/5906/1285/51714/1946/8892/2852/4087/2901/9230/4976/572/79727/2822/8893/5728/285/387/847/2695/9448/8398/2998/3673/4986/55937/23098/2696/6810/7776/2309/26056/2029/6934/7200/5076/1392/7054/6546/1215/2729/51024/7057/5532/5562/51092/5530/8609/408/10497/8660/5563/2752/1027/1958/22841/9024/1490/6844/5799/6717/9854/7048/5176/1581/54795/2281/50507/4023/3952/10628/6720/7494/2621/1292/6678/8938/4035/55638/2697/55107/26137/150/9370/5105
## GO:1902105 3902/3149/1493/2175/56833/3559/1230/639/914/4609/8767/10859/4830/1051/3574/3575/4860/22806/4067/864/55365/3458/28959/942/8876/10288/5788/30009/100/3600/3659/3549/940/939/3965/9308/865/5457/6850/7124/1378/8772/2213/10125/9770/23240/8456/3071/3135/8808/4192/7305/3059/10221/6654/5771/54542/2101/54440/5578/3593/8651/3558/9760/729230/3623/3592/11006/6422/2778/760/3662/3398/2124/920/3635/10456/695/25793/101/3111/941/80149/3606/6363/10892/677/7292/51208/55795/325/11221/10385/972/7535/1209/3665/3707/6647/7099/3718/55294/3146/3565/51176/2475/2302/841/5777/8451/9092/9840/8943/1540/7001/3142/171392/177/3605/9398/29102/1435/10193/6988/7040/51043/634/50943/537/114548/301/7189/6886/5196/4323/2064/1021/572/2323/81501/3566/3725/10766/4853/4092/3594/387/5458/7030/149041/2624/2736/51561/814/25/9580/1385/8600/3976/56998/7098/22985/3440/2648/5896/9935/8737/22890/8546/7071/56603/57178/6777/2242/3456/4286/9655/3624/3204/5925/10401/56339/4763/1499/1960/4057/5295/3567/5914/4602/604/4920/54997/558/5590/4179/54209/10272/678/11005/2488/7048/2353/6469/4254/7494/2621/7704/2737/6935/2200/9607/284266/9370/652/10234/2625
## GO:0009201 1503/5214/55526/9688/3101/26330/3948/54541/4830/2821/57103/7167/2584/30968/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/142/55706/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/516/5211/2646/5236/57122/56474/5209/79023/54963/9818/5313/522/229/10476/514/6521/9605/23511/83440/226/51085/515/230/23279/2645/7175/5465/10632/4967/5213/5207/4833/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/7114/10201/89/669/521/539/8086/405/513/9883/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/51422/5224/5562/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/4832/2203/2819/26137/8382/3479
## GO:0006457 10549/22948/51182/9601/79139/908/30001/10130/8877/3329/5202/10576/9141/5479/10954/2289/10808/3336/2780/56886/1410/3301/7415/7203/26973/3310/2280/10574/1460/10294/4880/10131/10575/27000/10049/9532/811/10465/7841/2923/4878/7184/6905/7411/2784/2288/10845/10856/2770/5481/2896/10471/3309/9049/2781/22824/54431/2779/64714/346562/5700/3320/1459/5478/23640/2773/325/10728/3337/972/23193/80273/2783/5203/51035/9761/22926/8468/4802/55466/6000/9530/10694/1676/9093/3998/2775/6903/9403/2782/23071/5589/6102/567/10961/6767/6902/27348/821/64215/267/7265/10693/79087/26278/1861/7266/2580/54788/3338/6904/5082/8787/3300/5903/64175/23759/9526/6449/2771/8195/9531/5887/79608/9529/4879/5201/55768/79982/64772/5824/10681/3315/120526/11328/957/5204/64374/126393/7466/81562/8425/573/56605/2281/3306/6625/1047/3305/1191
## GO:0007272 7368/9928/6663/57211/1075/10397/7504/27242/5653/8530/79152/6285/215/5467/745/1890/8882/7097/9334/7852/4644/1959/11202/4118/7133/8898/56288/23114/3792/208/10215/5660/4359/6334/5453/5915/23205/3687/10939/4099/6647/9444/2475/4665/928/9451/1739/3766/8890/207/7040/22933/3084/10810/9514/4155/4664/8892/7038/2064/23385/8455/6497/9331/8443/64398/10100/5454/57716/3074/8893/5728/6900/1605/5803/5916/9921/9896/287/4916/256987/5354/53616/3611/8506/200576/7572/2068/2581/79628/4763/6326/23405/23136/1499/3082/5914/26011/225/7248/9639/8604/2817/3400/1902/83700/8537/4653/5764/443/4915/1191
## GO:0008366 7368/9928/6663/57211/1075/10397/7504/27242/5653/8530/79152/6285/215/5467/745/1890/8882/7097/9334/7852/4644/1959/11202/4118/7133/8898/56288/23114/3792/208/10215/5660/4359/6334/5453/5915/23205/3687/10939/4099/6647/9444/2475/4665/928/9451/1739/3766/8890/207/7040/22933/3084/10810/9514/4155/4664/8892/7038/2064/23385/8455/6497/9331/8443/64398/10100/5454/57716/3074/8893/5728/6900/1605/5803/5916/9921/9896/287/4916/256987/5354/53616/3611/8506/200576/7572/2068/2581/79628/4763/6326/23405/23136/1499/3082/5914/26011/225/7248/9639/8604/2817/3400/1902/83700/8537/4653/5764/443/4915/1191
## GO:0051592 1894/8437/55503/114/5641/15/3208/10105/9456/246/5027/6262/8904/7226/10165/1956/7273/27101/6261/265/3756/360/27132/3309/4205/6786/2243/3710/2266/6331/4761/241/339/2185/3707/25932/673/57192/9536/7252/955/7222/2521/8754/2021/3184/65125/846/27094/553115/3727/2664/2244/3726/8895/8826/10369/10235/6263/71/1906/6529/23385/63928/30819/572/2822/22872/3725/4331/2978/6382/2039/27345/79085/2696/1800/29957/10768/5179/2354/10242/7057/22871/5562/311/7139/107/118/5530/825/5563/845/7474/8644/1843/595/5311/4734/10016/8604/84059/4208/79800/2353/1393/7220/3778/10628/857/6678/6857
## GO:1901215 9928/2019/6347/8326/2020/8200/6770/1051/2730/57103/11151/3162/4436/5641/2253/867/7336/16/10525/409/5457/1020/2558/468/8013/8882/348/3091/5536/7186/23657/6376/3596/4192/1981/7133/3297/4504/728/3134/10617/5582/26291/55737/2932/10038/3326/4914/4841/2896/57707/25793/10763/101/2562/55532/5700/2056/9244/581/1113/6418/2185/5584/116986/2561/3586/4099/6647/8517/2534/2902/7301/10457/28996/2668/5978/1271/3265/5465/1440/6495/3845/7015/10891/27023/7471/55626/58533/1435/23394/23529/284/5290/26281/10533/207/3717/4544/91304/6620/11315/2898/27429/6774/3981/29082/135/23400/6093/5663/3725/387/23017/163/8846/5966/5803/1385/5170/55074/3670/5300/1201/4204/1270/5538/7516/598/65018/23411/2065/2729/3611/6622/4345/5071/5921/8321/6416/1499/6453/4776/408/4435/7466/558/596/947/79625/2149/80823/54463/7248/4929/219699/4208/8829/5176/4747/6812/7832/4671/6653/4035/4915/10752/7786/7043/7349/27324/1524/7021
## GO:0014066 55165/6352/4067/867/10507/1411/940/5467/7124/1956/10125/3059/56005/5594/10617/5747/6714/2688/10456/5008/3606/2056/23533/5291/5294/2321/8394/10385/2492/5293/5305/8395/2534/79837/51384/5155/5777/5526/1440/5527/3630/4150/55615/9368/284/5290/3717/2147/634/26051/9314/5156/5270/2852/5154/183/8396/5728/8870/847/3815/7291/2549/2260/4916/6662/4824/7249/5649/2268/23411/2065/2150/113791/7337/5595/957/8660/5295/7010/23396/3082/3791/2322/2149/8678/6403/4734/219699/7042/29997/2057/79899/5863/3952/4653/4908/5159/25827/5364/5783/4915/1634/3479/2066
## GO:0006606 4321/1894/55612/3838/6496/3458/1812/7545/2254/999/6850/23636/8882/84268/5743/5901/5469/79711/9221/10736/3059/51501/5594/4792/5371/1432/2646/23534/3837/9818/1026/5514/3839/11331/80149/9670/6608/10155/9349/10073/3843/7175/9478/3840/868/53371/2316/284/11261/5296/754/64901/207/7040/55705/4000/186/23435/8720/6774/8841/63928/183/5663/3728/5903/29969/8692/55374/51715/51366/9531/11142/3842/7249/5569/5580/406/26060/5530/4763/7157/57506/4088/5295/55696/948/55198/6469/3952/10628/2737/347/652
## GO:0050670 3620/6664/952/1493/6352/7037/80380/3559/8767/51237/10859/1051/3574/4860/22806/7412/959/27242/11151/51083/11314/79915/1880/10288/5788/916/6375/100/3600/3659/3549/923/940/5880/5588/3965/10148/26191/4282/4690/912/3569/83737/8772/51293/8440/2213/23240/3071/3135/100133941/3596/7293/7305/7133/958/6654/11326/57162/54440/4004/3593/3558/6441/729230/7940/3592/3109/6693/384/836/1141/8379/970/7356/4332/920/3635/1026/695/23308/3606/2056/6363/199/8744/5621/7292/3586/10385/972/4352/7535/7099/3553/1604/3146/10457/3565/3133/2302/5777/9093/63925/3113/1947/975/11146/2796/6869/177/1739/23529/7040/51043/6188/50943/59067/383/3115/301/7189/944/1178/11148/5585/2064/5074/148022/2323/3594/30835/933/149041/8995/51561/6708/64844/3958/5573/472/6777/3280/29108/6385/1499/8654/8660/3567/604/9231/57045/596/4179/196/4208/7048/79679/6469/3485/3952/2615/6863/3572/3479/10451/652
## GO:0071560 6664/55612/50515/8200/6770/3066/63976/867/9141/6375/409/142/9076/2805/1030/23625/7525/10755/11171/2651/3175/5371/1785/4052/6422/50848/8928/3326/64750/56288/5747/6714/3309/3987/1399/6868/7311/9719/8837/677/1284/25805/2348/2661/4221/2534/5829/7472/4838/4091/6885/28996/50855/2734/5045/7476/6386/6660/9480/8287/2201/4093/2660/6233/7316/10454/57154/9110/3622/8754/10891/5796/8239/7471/9518/58533/9958/859/7314/7046/23370/22938/7040/2033/7791/383/51741/7080/1906/10637/4089/4087/6497/317/7044/9372/5598/9392/5494/2339/3725/51701/4092/51341/387/1398/8692/6498/858/1385/5170/51592/23592/27063/56937/5300/10273/4090/6662/5179/2022/57669/4015/23411/64081/8516/2263/90/7057/26060/5139/4086/1601/7157/2908/4088/6794/1387/3248/94/2662/1028/4435/7474/23089/57045/5590/678/3675/8425/26036/10979/2488/27122/7042/3397/4208/1278/7048/753/201163/1003/2353/10370/1277/50507/55198/1281/2530/65997/58495/1149/3693/11117/857/4053/5138/7041/54361/2615/5654/10631/2331/7043/6935/2200/7049/7122/80310/8483/54829/1524
## GO:0045927 6280/6279/983/891/952/5645/8437/3897/3574/1535/5449/54512/2810/2253/8877/10507/3009/5479/10591/7473/57817/2254/7422/5393/5467/2692/2395/8882/7852/5629/551/1956/7490/23566/23404/9373/1981/3297/5967/5591/5594/9362/54440/55636/3578/3984/3558/4686/51393/10038/5716/6422/1432/6792/1839/5058/2688/6531/6197/7224/6832/5292/6868/8531/1954/1002/1813/4654/84861/6722/6608/6665/8153/51009/2185/6195/27185/10409/9472/552/3484/29842/7472/6910/5897/51330/4851/998/51176/2475/11344/2627/6386/4534/8766/22954/51193/9699/7429/1826/57154/9175/81565/3142/27302/3630/10413/23191/1982/1435/9798/3516/11116/23394/7046/207/2147/2664/22850/657/89/1906/1946/2844/4323/2064/1654/22999/3020/1382/7430/5454/27230/23180/5048/375790/79594/5007/8482/387/5458/2693/102/659/10519/127833/2137/2335/1385/8195/5300/9423/50618/9211/6909/6880/55031/55602/57698/2260/4916/5607/6777/9647/23236/2263/51761/23499/23025/3611/25836/5071/4131/627/23493/825/2735/29882/5357/6548/22902/3373/3643/7466/51616/29104/596/2803/7042/4208/8829/7048/57731/1735/2247/2691/9037/3952/585/6387/23327/2690/4035/3249/32/23414/6857/7349/7049/3479/9254/51760/80736/4137/2066/10551
## GO:0007093 991/10403/79733/983/4085/81620/7272/9212/9319/6790/891/5347/701/51512/11130/54962/29980/699/1063/5111/55055/641/1869/55159/9735/2810/995/11200/7027/8883/54908/4683/3276/63967/6659/1030/7517/672/1820/23019/5591/835/5371/64858/8091/25906/60561/2765/9125/8379/1017/7029/5546/1026/5514/581/79035/84861/27183/29883/7756/55795/4849/56984/9183/55743/4193/10498/6118/1874/9656/3265/6194/7175/51499/1739/4848/9587/7040/2033/1386/55367/65123/1263/8738/51451/51143/4850/6152/57472/51347/9337/5934/51776/1647/55755/5325/57060/64859/472/598/56155/1112/9344/3550/5884/5925/7157/26058/51065/28984/4303/7508/1027/79858/1843/324/595/4194/6419/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0031330 27074/55872/55353/5317/1869/54541/4904/57103/341/3162/706/51377/1994/26191/345/10492/1981/4248/26986/10755/9704/4504/57805/3587/57602/3607/5476/5371/8898/5582/2626/55737/11044/1611/2165/3834/1432/3326/6556/5747/10135/11178/4615/9967/6599/2043/55432/9554/8531/9261/1459/84861/51025/10128/5294/1660/51009/339/3586/9097/9683/9349/80011/51322/7917/11187/23256/51035/9711/28996/2668/2475/23367/5045/54855/4170/1676/6386/5465/4534/2332/3183/5207/6201/29761/51548/9491/10605/26073/10891/3630/51374/3192/9860/7471/1982/51465/10193/11011/3184/148/5290/2801/10533/207/22933/4745/4233/80317/65992/10670/11315/9682/80772/89/302/2931/7327/6048/23435/25819/27429/7874/6872/51594/4864/493/6774/29082/11345/23400/6093/5774/8241/5663/2822/5073/7538/10869/10956/23118/64844/7432/9637/7076/10949/8925/6449/56893/6135/6880/863/4656/9827/3077/26471/23274/9529/54922/7249/8473/65018/1268/90806/9104/6622/4130/51520/10140/9759/5768/9638/7157/79048/23429/3082/819/3240/596/1942/2272/54209/8678/7248/80279/11180/8604/66036/29997/3953/7078/210/6469/6625/3952/1471/2203/1153/32/3357
## GO:0046031 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/204/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/272/5209/79023/9818/5313/229/6521/23511/83440/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23225/10891/53343/3630/8021/53371/5571/11277/4928/2026/3098/89/669/8086/405/9883/203/6774/2103/572/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/5563/3643/8604/2203/2819/26137/3479/26289
## GO:0071695 9319/6790/891/53335/1001/55612/994/712/7298/10481/26271/6496/8941/51083/10507/2539/23028/9991/7480/9334/3091/4644/26047/6376/30813/675/4880/6261/23318/1649/23114/11144/2688/51441/2069/1618/8851/1026/2056/54738/2266/26057/26133/2185/23787/23294/372/2902/29842/2475/10882/3050/5518/9175/9985/4825/9463/9897/7471/26585/4897/3516/22933/5881/79670/2038/10116/8578/6886/351/10296/9331/4976/30819/5979/27289/718/375790/51341/387/650/51360/6900/5741/1605/473/4204/8854/2309/6911/5076/64131/5991/1910/5925/2068/4763/1499/7059/10265/4057/4882/1203/94/10365/4066/1028/7474/596/1901/3202/2261/11005/4929/7042/1003/283/57731/8642/9855/3952/4488/79633/4313/7494/4653/5364/2697/3479/3169/1524/25893/2625/5241
## GO:1901796 22974/9212/1111/6790/9156/6884/5984/641/1763/55003/23246/5982/3066/79915/83990/11200/4839/6873/80010/5983/4683/5457/1020/23028/23212/4282/7159/6749/580/6119/672/1460/6882/6875/5366/5371/5810/5985/5716/80237/8805/8444/1432/29117/5931/1017/387893/8445/8550/8851/5928/26155/9219/9521/6117/4361/8148/6877/1459/11198/3065/26038/11073/972/9349/6883/7156/10419/4193/56950/3090/6118/7862/5883/28996/1108/6615/6201/3622/10269/51499/1859/26287/54971/3364/10524/754/7314/207/2033/5571/960/149628/80196/6881/5600/10919/1655/545/1263/6878/6872/5565/53615/204851/54700/7994/5458/624/64769/7161/64844/22925/7291/7486/27063/5300/23368/6908/6135/6880/79813/26013/55702/472/51230/10848/51422/23411/5932/6879/5562/8626/5071/10111/200734/5884/1107/7157/5563/6794/5564/51616/596/4194/80279/29997/6591/10614/9891/4487/4582
## GO:0072593 2305/55765/59272/445/2537/2643/1719/54541/8838/1535/3458/57103/2950/4688/3689/3383/664/239/2539/575/706/5806/5447/5052/5880/215/6850/9474/7124/29949/5027/5165/7097/50506/613/1410/3692/5743/3091/3099/1956/1536/672/655/7305/4504/10131/5366/51167/140885/7498/1785/6441/10333/4719/54/1432/3326/384/1728/26574/2885/1544/2644/2358/1026/79400/4722/55486/23408/2876/55532/10394/3320/9263/80149/27035/199/4842/7416/2176/8837/2773/2185/8288/3586/337/7409/5873/6647/7099/2534/3553/2902/1816/2475/1545/5155/51079/4843/5879/4353/329/7001/3684/3630/55312/10193/378/207/3717/2147/7040/22933/9314/4780/1401/23530/8570/5740/683/11315/186/961/1906/4358/148022/493/6774/183/4835/1497/93974/3491/55022/9475/10013/387/10935/847/23334/5446/1647/8729/22925/4846/2771/6095/53905/6697/8737/538/9973/9722/2309/23576/9644/5076/65018/5580/4724/7020/11334/9104/4317/7057/2150/4025/6622/5071/56848/9759/23564/7157/1373/4088/5547/10365/7755/2878/2717/1543/7173/3643/3043/3240/596/947/225/8644/948/1490/5025/4314/8678/5311/7837/27165/2308/7048/57126/23410/10516/5166/50507/7350/3952/5159/27244/857/6542/6571/1191/185/2053/4129/4137/1524
## GO:0048562 5080/6664/65009/1482/6491/50515/6496/6943/5459/8820/8557/2304/2253/1749/7545/4647/3549/3638/2138/4522/2254/257/4188/9775/8013/474/2048/613/5629/6262/3091/525/6862/655/10736/5594/9421/55636/79977/2626/10959/55212/23513/5456/25806/53904/3975/8928/2778/79955/7547/2637/60529/3398/8323/64220/4669/7855/1954/3227/6722/6608/5915/2348/5079/4617/7289/6647/2303/4838/4851/28996/51384/2201/6495/51098/3203/3142/57053/3198/10413/6928/6899/3236/9368/7471/1739/27173/1969/7046/4760/668/51168/3211/10660/10083/6932/8575/5156/9968/123872/1906/3235/4323/4087/65979/7849/26005/55584/5663/10818/3217/204851/1855/5754/55081/3207/54345/9132/9750/6169/2624/2736/55036/2294/7976/11078/9464/7291/5916/8195/9423/6909/80199/9645/7403/9935/10427/2260/4325/220/6662/6670/2022/1750/64321/6474/5076/7703/4762/3218/51141/8516/1856/7054/29072/4237/3280/2263/7020/9620/90/51761/25836/3199/8289/579/3204/5595/54806/1499/2295/3232/2535/23314/2299/10265/4088/860/2735/29/10253/3373/1301/3215/80184/4920/6299/7474/1942/1280/3202/3216/5311/4208/3212/55084/5396/7048/5950/9742/6469/57728/58495/585/2202/26018/7481/116039/55112/4487/3249/2737/2487/1746/2697/7043/6935/2200/6926/652/80736/2625
## GO:1903706 3902/9636/29909/3149/1493/2175/56833/3559/1230/6772/639/914/4609/8767/5688/5709/10859/5698/4830/1051/3574/54892/3575/8357/4860/22806/4067/5693/864/55365/3458/5713/2296/3148/28959/5721/942/5691/8876/10288/5685/5788/5690/5684/30009/5686/5695/100/3600/3659/10213/3549/940/23198/939/5588/3965/9308/865/3276/5457/5699/11051/5714/6850/5702/8013/7124/5708/83737/1378/8772/3692/5692/3091/5704/5469/2213/10125/9770/23240/8456/3071/3135/54517/8808/4192/5683/7305/4778/3059/5610/51621/10221/6654/5694/5771/54542/2101/4792/54440/3674/2551/5578/4004/3593/8651/5718/3558/5682/79577/9760/729230/3623/3592/5716/11006/6422/60682/5707/1432/9757/2778/192669/760/3662/6688/3398/5696/5579/2124/51441/920/3635/10456/695/25793/26523/101/5008/5292/3111/941/5719/5700/80149/3606/6363/5717/64783/10892/2113/3065/10197/677/7292/51208/55795/325/2185/11221/10385/2811/972/4352/7535/1209/3665/3707/5706/6647/7099/3313/5710/3718/55294/5134/8085/3146/4851/3565/5977/51176/2475/2302/841/8861/5777/7564/1636/8451/9092/5689/5720/9840/8943/1441/5701/9491/5929/1540/7001/3142/5711/23112/171392/5715/177/10413/3605/9398/29102/567/6929/1435/10193/6988/9861/7040/51043/2033/5705/634/50943/4780/537/23543/114548/301/7189/6886/1437/5196/7066/2623/4323/2064/405/91/3020/6774/1021/572/2323/81501/4850/3566/92/3725/10766/4853/4092/3594/7538/387/9070/5458/7030/149041/2624/2736/51561/7161/9739/814/25/10519/9580/80349/1385/3958/8600/3976/5916/56998/8850/7098/26013/22985/3440/9646/2648/5896/9935/8737/22890/8546/7071/2309/192670/56603/57178/6777/2242/4015/3456/4297/3218/4286/54623/3280/7057/9655/3624/3204/5925/10401/56339/4763/1499/1960/4057/5295/1387/3567/5914/4602/604/4005/182/4211/4920/54997/558/5590/4179/54209/10272/678/3202/11005/4212/2488/4208/7048/201163/2353/6938/10398/6469/54681/85477/4254/7494/2621/5764/56892/7704/2737/10443/6935/2200/9607/284266/9370/652/10234/25893/2625
## GO:0046887 10874/6664/952/114/51083/6696/5208/6659/5467/2692/3091/1956/3814/1080/1908/1588/25874/7036/8431/3623/4878/9971/8447/5019/6845/65985/2243/51768/2266/1813/3799/9255/65220/5781/654/7447/3651/2645/6865/2850/8723/5879/5028/4825/6869/5715/3630/8673/3717/668/846/5581/2244/51762/114897/23435/1906/51714/640/2852/4089/135/572/27230/2822/116/2587/2695/8398/1385/8600/3670/7110/3077/2696/2260/6810/4824/56729/6934/1392/5532/3624/6453/408/8660/11132/2752/4602/2746/9501/6717/9854/54795/23410/5950/2691/3952/3625/8938/4035/55638/2697/55107/6863/7349/9607/114899/18/25924/2922
## GO:0030099 8544/4318/9636/29909/3149/8792/7037/1230/6772/4609/1236/10859/1054/4830/1051/54892/8357/4067/3458/5613/3148/3930/9258/29887/1880/51266/2539/2207/3394/3600/8761/5588/1943/7422/865/3276/5457/142/9991/8013/7124/1030/7097/8772/3692/4055/4151/3091/23210/5469/1053/5971/9770/3071/79705/7305/4778/3059/51621/10221/5771/2101/4495/4792/10661/3674/2551/5578/5371/3593/79577/3623/3428/3589/11006/8444/6422/60682/1432/9757/64806/2778/836/192669/760/10006/3662/6688/8563/10320/3398/5579/6223/2124/920/1050/3635/10456/26523/2056/6363/94081/6521/64783/55509/2113/6722/3065/677/7067/51208/325/5657/2185/80739/2194/2811/5293/5305/972/4352/3665/3658/4627/3707/7099/3313/212/5781/55294/8085/3565/998/9948/51176/28996/2475/2739/841/8861/6194/5777/7564/8451/1440/1777/5153/3050/1441/27102/5929/975/6005/23112/171392/3605/23218/9398/567/1435/10193/3516/1969/6988/3717/103/7040/2033/29766/65082/634/2038/3726/537/23054/23543/10019/2313/302/7189/6886/669/1437/22904/5196/7066/2623/6208/1436/10107/351/10312/405/87/10296/91/3020/6774/1021/10100/5663/81501/4850/93974/10163/5316/5048/3217/92/4891/3725/10766/4853/28962/7994/51341/2039/54977/7538/9070/5458/10935/7030/2624/51561/9739/3815/814/10519/80349/1385/842/3958/2116/8600/3976/5916/56998/8850/863/7098/26013/22985/10538/9646/9935/4090/8737/6670/7071/23601/2309/192670/9644/6777/25979/2242/4015/4297/3218/2719/23411/4286/54623/4779/7057/2150/3624/9846/3204/5925/10401/2068/118/4763/1499/84148/4057/5295/5926/1387/3567/10365/5914/604/1028/182/4211/4920/54997/2034/8840/54209/10272/3202/4212/2488/4208/221395/7048/9855/2353/10398/5468/54861/54681/85477/4254/7704/10202/2200/9607/7049/284266/9370/652/10234/25893/2625
## GO:1902850 991/9493/1062/4605/10403/51203/22974/10460/4085/5080/3832/7272/9212/9055/3833/891/24137/5347/29127/57405/9700/29899/1058/6491/3925/55726/1104/284403/79866/11200/84722/54908/23636/79187/5901/4733/5119/8480/79648/9126/6905/2770/56647/3837/3796/49856/7756/25777/55968/79998/9183/55125/6683/6993/51510/79598/7175/8766/6795/8243/25978/1213/3192/9181/2316/2801/23172/9525/8086/23332/57132/5116/10735/5048/1778/152185/3064/387/55755/4134/4204/137886/10274/10579/29072/8658/5310/1639/2009/27243/6867/9371/126353/10253/54820/10464/9639/10252/23122/10039/4926/79884/10769/114327
## GO:0006289 5984/5111/55247/5435/5982/5424/2072/5983/5440/142/9978/5425/5433/6119/10987/675/1642/10450/9557/3978/5985/5437/5886/8533/5439/10714/2873/4913/5431/6117/2968/5426/7311/5436/3150/3980/6118/6917/29935/1069/27339/5438/5432/4287/8451/10980/6233/7316/2074/7314/2033/2071/50813/64708/5893/5434/4968/7874/64210/1161/51138/3981/9318/4331/8450/10463/2965/56949/7515/11284/2073/5887/10920/1022/404672/27343/5981/5430/23411/902/5932/2967/54778/5441/2067/22909/2068/1643/7157/9716/7508/57804/7507
## GO:0030518 898/6502/11240/6943/9420/409/865/142/8284/2692/5901/5536/5469/672/23019/6597/8896/8202/811/6422/10432/7533/8928/9125/2288/5058/6714/11331/55885/3065/6049/190/4838/8085/10498/5245/9113/1616/10891/10413/9063/10524/4848/10474/2100/81606/3717/2033/9325/8312/65992/23054/6047/11315/23543/1655/55818/2852/23376/6872/26508/79039/23558/9612/79876/10013/51341/387/5458/9575/8031/51366/56937/3670/51389/1022/8554/4824/79447/55325/2274/9604/406/5187/23411/29966/6879/8626/8289/1407/51569/9611/5925/7337/1499/25959/1601/2908/10521/8648/3275/23426/8204/55128/4734/57658/4246/8611/2099/7041/367/3169/1408/5241
## GO:0006694 3294/1717/133/4597/6319/6713/29881/6770/6715/3458/51302/3422/3930/9420/1594/2224/10449/10682/2539/706/3291/3290/50814/5447/3638/50700/39/79071/7124/5629/348/5901/570/5469/51700/1080/3157/1588/3284/2264/2230/8647/79644/2672/9971/6721/1593/51144/1109/6307/231/3837/120227/10005/10948/3292/949/4800/2194/6718/6647/51171/4598/3553/7421/190/29842/654/4802/64746/9885/5978/1585/1181/6615/2222/47/10891/1583/4047/23600/653/476/26031/3293/1727/10613/79154/3156/27120/114881/7555/1586/8720/4790/1609/3972/1081/3283/5007/1584/650/51360/8912/9619/22937/6342/4801/338/8630/31/10654/1576/6667/1392/51422/23411/10858/51141/10998/5562/7108/2516/114883/6716/11160/9453/5087/1718/5563/51478/9256/7536/427/1958/3490/8644/51706/51170/9023/11001/2488/114876/2246/27122/2232/7923/6309/1581/6591/3952/3295/5618/6720/1589/32/54361/8309/23541/3158
## GO:0019079 7153/3669/6355/3576/9636/6352/4599/10663/200315/6347/91543/3429/6590/4938/4940/8638/5359/5479/940/3434/6732/7913/8815/9474/7124/22880/5629/7415/60489/26986/27350/5610/1642/10450/9217/8091/3428/200316/8934/10465/6780/27336/5886/5481/684/156/80149/5478/29883/10155/5093/3609/8468/998/23367/8411/2332/10332/10542/56829/6598/9869/103/64710/6895/6733/1655/5586/1654/10475/5868/5297/51495/104/8812/9218/5288/55337/24138/9475/30835/55196/10318/1487/1488/51763/5094/8519/201626/7342/64848/7155/2040/3456/5071/54737/57506/4057/63901/23272/596/10410/6041/2494/10581/2621/25827
## GO:0021543 597/259266/5080/2146/9355/9928/7804/6715/4830/5194/9289/8941/2253/1812/64211/284403/55079/664/6513/166614/4771/1020/23028/3014/8013/474/63827/5629/3091/1000/26047/5901/1956/81853/4192/238/8891/2618/2932/79648/63974/5455/836/7101/6091/30837/6434/8851/8828/1399/3362/55236/83696/10371/22903/581/1459/3799/6722/25777/6608/3065/4142/27185/5079/471/2902/55558/3361/6343/81565/50937/2044/317762/23035/2316/79969/4760/1600/10716/79143/23224/23380/2016/7080/27089/7531/57142/54407/493/1021/572/5454/5663/5048/8893/5728/4852/387/1398/26468/23353/56949/7515/9839/2258/429/8195/23135/5649/23236/5802/7054/4763/1499/9638/8648/5914/306/3736/2145/7248/54820/3912/3400/9353/8829/4747/1281/585/55970/7832/79633/85458/89927/4035/4915/2737/388677/1746/114327/2018
## GO:0070371 8685/6278/2633/8792/65009/1230/5320/4609/8767/8000/1236/4067/2950/9258/5031/2253/1880/1116/1411/5788/467/3383/3735/409/1652/3965/1445/26191/6504/4282/3061/6850/246/5604/7124/5801/2641/2048/348/551/1956/5469/10125/6376/5605/4504/1950/728/6356/5594/5771/2651/2047/2264/5578/26291/2626/140885/5345/1512/78986/10048/4914/6714/64127/920/2358/1399/11331/2243/55532/55885/2056/6363/2266/1813/5734/51074/8837/677/2185/11221/10385/5770/2492/972/7099/64762/4988/3553/5781/7074/55294/10419/6754/673/4838/3146/10457/4851/3358/5245/3265/5155/5777/5151/6098/6366/59341/2889/51231/5028/57053/177/9368/54550/1739/148/284/1969/26281/1845/8661/7040/960/846/5908/634/2244/9314/537/3156/5609/27202/5906/5156/55801/4889/25778/7066/2852/1436/8074/2064/4089/351/2249/55584/5154/183/7430/4835/116/10818/27020/3725/5728/3491/25865/4853/8482/799/650/27330/10318/25/10519/2335/81848/2324/8600/9464/112464/3976/9270/10347/2771/5300/57447/10392/6237/10636/6662/6464/3356/5322/2263/9693/29108/2150/57556/5595/408/7010/10268/10253/3791/5590/3685/1843/2149/948/1490/54209/678/5021/2261/55450/10252/8829/201163/23410/7078/2247/1848/50507/57007/2192/2621/5159/11117/2045/8817/4035/9590/7786/3357/3479/1846/9370/652/2066
## GO:0032869 1978/6772/2888/51237/6770/6715/5471/2950/50617/353/1019/2058/5588/533/142/4690/2805/2692/4141/4644/9296/525/5591/6654/5771/2101/9734/8651/10603/9114/57761/9971/6121/5058/6714/5579/2885/30837/6599/208/5970/7351/528/23545/896/8837/677/3416/51094/339/5584/5770/8615/51606/3484/3553/5781/2303/8048/5140/529/4218/523/2645/526/2660/6198/81565/527/2887/3630/23191/5296/5290/207/51043/634/155066/3645/537/1979/23433/197/64710/1176/51382/2931/2844/9550/10312/10458/140710/64506/4976/183/2822/5319/5728/55022/5458/8992/2693/9882/29988/858/5170/2771/2549/8850/23235/51763/5872/23038/7249/6464/6517/8473/6667/55023/535/5580/5786/534/23411/4641/2729/5286/10014/5562/55667/23189/26060/5791/8660/490/6430/11132/5295/5164/4303/6548/3643/5590/324/6844/114882/5919/9847/2308/2241/10580/5468/5166/55198/11031/4023/9365/3952/3625/6720/7494/3480/5167/3667/9370
## GO:0030330 2305/79733/983/6790/891/51512/5111/10397/1869/2810/995/11200/7027/4683/9100/3276/6659/23028/4282/672/1820/675/23019/5366/835/5371/5716/8444/2765/9125/1017/7029/387893/1026/9521/581/29883/4849/7023/972/4193/56950/10498/3090/22976/28996/8493/1874/6615/10269/51499/1859/602/10524/4848/754/2033/960/149628/55367/1655/545/1263/6672/8738/4850/51147/57472/9337/5934/27330/64844/1647/22925/7291/5325/57060/27063/10538/2309/55702/472/23411/546/200734/7157/51065/28984/1027/4194/6591/7832/10769/4487/4646/4582
## GO:0043279 890/5888/641/6770/114/1789/6870/3351/3066/779/1812/3383/100/1644/55151/3359/1020/9456/1788/7852/8772/6262/5536/6261/5582/1785/790/1814/3326/836/1141/6531/3309/5309/7384/5970/199/1813/1723/2185/2806/4988/7074/2902/4193/6569/3651/1665/1816/2475/5020/9400/23514/2775/10891/6869/10972/10533/5581/5999/6263/840/6529/135/5520/8682/8620/4986/1815/5179/3356/598/1392/1268/63826/2354/7054/6546/6609/9455/10014/839/5562/6622/7337/845/5021/23284/590/5468/1393/3176/2946/27092/6863/18
## GO:0035637 23630/1824/59272/3768/1482/3775/3757/3737/779/1812/3753/5024/483/9631/274/491/7143/1890/6262/1133/26047/551/1525/1134/10021/786/1143/4880/6261/3777/2257/4878/30820/23114/10368/3741/1180/4205/53826/6786/3710/3761/4842/6327/6331/6336/4099/6647/552/6323/3762/5566/1816/781/2332/492/53822/784/79784/488/10269/785/478/4897/476/2316/2859/5318/5144/5349/27094/4544/3759/778/486/1829/487/10369/3060/6263/2898/2741/2852/3770/7531/6324/493/183/30819/5023/8913/5048/10060/782/10345/3728/2693/489/27345/10052/288/3673/54112/287/1832/3781/4916/10768/9992/3760/6543/3750/3709/6546/10242/783/8506/30845/27091/3784/1760/2702/490/4882/845/6548/29119/3736/29098/1901/482/5025/4881/10142/844/444/3270/6717/3752/57731/481/54795/2281/55799/83700/7220/3751/477/27092/857/775/4915/5350/55800/2697/9607/9254/5348/776/3708/10699/60598
## GO:0060348 10859/6715/2296/2253/1749/10507/7468/5788/5479/3549/5447/3638/55151/29123/5469/79705/6862/7305/4880/6261/1305/79648/54/9060/54928/2778/249/10006/2688/202018/1954/3636/5251/9350/5734/6722/5915/51208/80739/871/5305/1044/7289/5781/5636/55294/654/10498/79001/2734/4665/5777/59341/10269/7471/26585/3037/4209/7040/2033/22856/537/60676/4664/10019/2313/302/6886/4041/9249/23213/7066/4323/5075/11214/2249/6497/23508/10163/5048/4853/3207/387/650/5308/51360/64175/6781/3815/5741/171023/659/51715/8600/7291/5916/56987/5358/4090/4325/55790/6662/2022/6474/56603/9321/55512/1112/64131/4015/4762/51141/2263/7020/9104/124565/4086/7157/7059/4057/7010/860/4882/5914/5191/4211/54808/8840/1280/80169/2261/4208/4322/7048/80263/8642/1277/3952/4488/79633/56034/4653/116039/5364/8817/6678/4487/658/2737/2697/7043/2200/3479/6424/284266/1311/652/1101/10234
## GO:1900542 983/5163/891/9688/6472/26330/54541/136/57103/3208/9631/2023/5223/706/10059/5208/10105/6396/215/5210/23165/142/55706/23636/5027/5165/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/23279/79849/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/29103/5571/54704/5957/11277/4928/6901/11315/7114/89/8086/405/2979/9883/6774/2103/93974/2978/55022/51341/387/5903/79085/348995/2981/4846/55746/863/4656/26471/23479/201626/538/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5563/5164/3643/54209/8604/2954/201163/5166/2203/2819/26137/3479
## GO:0070498 7850/8767/5688/5709/3654/5698/5693/5713/9705/5721/5691/5685/7444/5690/5684/5686/5695/10213/23198/5699/5714/5702/9978/3569/5708/5692/5704/8808/3556/5683/5694/4792/57162/8454/7334/1147/5718/5682/5716/5707/3552/54472/1326/64127/8986/5696/4615/5719/5700/5970/5717/7311/8878/10197/5706/8517/5710/3553/6885/54726/5689/5720/6233/7316/5701/9491/10454/5711/171392/5715/7314/9861/5705/7189/4790/3557/79155/23118/51135/4215/10392/23291/23236/5595/8945/6500/3554/1958/9252/11213/57161/3551
## GO:1905475 3002/2633/8326/116372/1869/3458/2810/3753/3208/9141/637/3689/7027/7534/1445/1020/7159/8500/7124/2048/1000/57214/1956/23657/245812/5366/6769/10971/54471/7533/382/6809/5058/5534/7029/8851/391/1399/6845/208/1173/10434/27183/8878/3799/5621/5584/3745/9419/2534/60/8048/7529/841/3265/8766/5599/7429/784/1213/975/3684/3630/8673/54434/54550/1739/10490/11261/1969/8301/64114/207/7040/2664/5581/23433/3688/9495/5906/5780/10369/8417/2852/4323/2064/7531/5525/23096/572/7430/55022/2039/23613/2693/7161/163/1605/102/10519/288/5583/5170/3958/9270/9912/27237/23368/8650/51763/11079/5533/4038/6711/6810/4836/2040/598/26119/9528/4641/56947/51024/8626/5071/26060/1601/7157/5295/10268/5357/9482/22841/2181/29098/596/5590/54209/3675/23255/9847/2934/2042/10580/25999/5764/4035/2239/54585/367/131578/5174/10551
## GO:0048705 6664/50515/2296/8092/9496/1749/3549/5447/3638/2251/2138/4522/257/4188/7480/9775/5027/29123/6862/655/10736/4880/176/1305/79977/54/6422/3975/1432/54928/2778/249/60529/1954/3636/9350/3227/5915/7067/871/5079/4617/1044/7289/93/2303/654/4838/10498/2734/4665/7476/2201/6495/59341/3203/10269/3198/6899/3236/1739/27173/26585/3037/4209/56914/7046/7040/8879/3211/22856/8575/60676/4664/51741/5156/4041/54475/9249/9968/3235/4323/5075/4087/3224/2249/6497/649/25976/57599/5663/3217/3207/59338/6259/8692/6781/659/51715/7291/5916/80199/2260/4325/55790/6662/6474/83452/56603/7703/9321/55512/1112/4762/3218/6939/2268/51141/29072/2263/7020/5310/3199/579/3204/1499/3232/23314/7059/10265/4088/4057/7010/860/5914/3373/1301/3215/5191/4920/1490/1280/3202/2261/4256/84159/3216/4208/4322/3212/5396/7048/1277/9742/57728/4488/4313/116039/8817/55112/4487/658/2737/1746/7043/6935/6424/1311/652/1101
## GO:0060401 3627/6373/4283/5026/3932/1236/55503/4067/1535/63933/5336/11151/5031/30001/1812/578/5024/5788/1234/6375/8989/55151/930/9474/5027/2906/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/5371/117/931/1649/56302/9002/9446/920/1729/623/3710/2056/6363/581/1813/4842/79568/5621/10939/3954/10523/2185/5335/9472/4308/2534/2902/22821/57192/9001/5566/1756/3358/5777/2904/781/6366/784/488/7222/55283/8996/148/57158/1193/22953/5144/2147/7040/5581/4923/2852/2903/57338/493/4976/7009/5319/3064/10345/799/79085/25/5664/5170/10367/2905/287/25998/3356/3709/6546/6622/7070/221154/825/10268/845/596/2149/1490/5025/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/857/775/5350/3357/3708
## GO:0046328 8792/8767/5871/1236/6317/11184/959/2950/9258/22943/9618/939/7164/26191/6504/6850/7124/83737/4055/64170/3301/1956/7186/2213/10125/9770/79444/10987/2047/5911/140885/10333/5345/6422/259/5058/64127/23239/6788/2081/1857/2043/10371/7855/6363/27035/7477/8324/2185/11221/4221/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/6366/59341/2889/10114/9175/1540/1616/171392/177/2074/4616/60401/4217/10746/1845/207/6188/23542/8312/5609/50488/23162/7984/7189/2898/5585/1906/9821/64853/351/8841/221472/51495/4293/5048/5470/79594/51347/11183/29969/9448/51776/2122/1647/9839/2324/8600/54986/7098/10392/23043/10595/10912/8737/10771/9064/2218/65018/9344/23236/5187/1856/8325/4317/29108/2150/5071/2874/9611/23328/8322/4920/7474/4216/1490/11211/51339/9867/3480/7786/57551
## GO:0050796 952/6352/114/56943/3458/292/6513/5208/5127/6659/6566/5467/7124/2641/3091/26251/1080/25874/5578/1374/8431/6422/5211/3170/9971/152/8447/5019/3741/3172/402/65985/3710/51768/7351/3033/1813/3799/773/353500/3745/65220/3553/5781/7074/9515/7447/3651/2740/5978/2645/293/2850/4843/5879/3747/6804/6616/23568/2044/4825/5715/9324/4760/3717/846/4544/5581/3156/5906/23435/1803/1946/640/2852/10312/572/27230/6514/2822/9575/2693/291/2695/9448/8398/8620/3670/2696/57818/6810/2029/6934/1392/1268/406/5991/3709/5532/5071/777/51092/5530/23409/8609/408/8660/11132/2752/3382/9024/2746/80024/9501/3790/6717/9854/54795/23410/5950/2281/10411/3952/8864/3625/4856/6720/6833/775/8938/4035/11069/55638/2697/55107/3667/9607/150/9254/18/776/25924/3708/7021
## GO:0006475 1111/8607/51471/5447/10626/86/8260/55689/9474/54107/11177/8089/80218/672/675/3054/10943/8202/29117/10856/8986/3662/6688/26155/1810/8193/4191/10629/6877/4654/4842/26038/6418/54934/9329/7917/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/8295/10269/10891/55011/6598/10524/10474/9085/55274/79969/7040/2033/1386/50943/11143/8888/6881/1962/8520/9767/10933/8464/4089/27097/55209/6872/8110/6871/51562/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/1487/23326/7291/10902/3976/3670/4204/6880/8850/151050/2648/57634/55167/8473/112869/7703/51230/4297/5187/79903/23411/6879/6622/26053/56848/5595/339287/79960/84148/408/23741/1387/8648/23522/322/9252/26036/23338/201163/6591/4674/4582/5105/4137/2625
## GO:0006140 983/5163/891/4199/9688/6472/26330/54541/136/57103/4200/3208/9631/2023/5223/706/10059/5208/10105/6396/215/5210/23165/142/55706/23636/5027/5165/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/23279/79849/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/978/29103/5571/54704/5957/11277/4928/6901/11315/7114/89/8086/405/2979/9883/6774/2103/93974/2978/55022/51341/387/5903/79085/348995/2981/4846/55746/863/4656/26471/23479/201626/538/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5563/5164/3643/54209/8604/2954/201163/5166/2203/2819/26137/3479
## GO:0010811 55612/1236/25975/10562/916/9806/7422/246/10675/5795/6376/4192/1785/2932/811/6422/708/51144/57091/402/3987/1399/2243/10109/1758/2266/2185/7448/27185/80005/2041/998/335/6366/3273/5879/55604/3655/1435/3037/2316/3717/3678/5881/5581/2244/8826/6281/6239/25890/1021/6093/6251/8874/3491/2039/3728/1398/59339/9448/1605/25/2294/10519/2335/11078/9270/57669/6370/9647/3611/7070/6385/2013/8631/4814/4088/7010/4811/4739/3791/7402/5590/79625/948/4887/3675/10085/7248/1793/8829/1295/1012/4653/5764/54361/4680/1307/10551
## GO:0005996 5163/5214/3101/26330/4938/6576/2821/5226/7086/57103/2642/7167/6515/2584/2171/5499/2529/2597/5230/2023/467/7262/2539/5223/6513/5208/6888/7363/1737/5106/4190/5210/5315/2542/5467/10993/5160/468/2805/7124/5165/2641/3099/10165/57001/7915/80183/1642/5771/3607/3175/5366/5161/1468/1374/2932/2820/7355/1432/2027/5211/2784/2646/3170/2528/5236/6714/9446/3795/2582/5209/231/8445/8789/2592/10690/79799/9942/208/10327/4191/5313/229/3636/5500/8402/83440/2720/680/4351/51094/226/3486/2806/230/57223/10447/2683/3651/2526/5443/54576/2475/2645/2523/5465/2538/5213/5207/54490/1390/10269/10891/23178/3630/5290/8277/207/60343/2033/1727/5581/2026/5091/3098/89/2527/2931/4041/23509/669/114897/5509/9962/10776/1609/10296/140710/51451/2103/572/8534/27230/2822/2524/23275/5372/5903/5741/55347/6652/51084/8850/6095/55277/51763/2648/7367/23038/283871/3488/2548/57818/51181/8473/5239/23417/23411/5224/2729/9104/4779/8790/5562/5071/10499/1353/1407/1196/9563/5162/7157/26007/5261/92579/8660/7366/5164/4123/80201/283450/3643/2517/8604/1528/2308/64080/3953/5950/10580/5166/216/2530/3952/8864/6097/2203/2819/7033/51363/32/5167/11188/4485/4886/347/3487/3667/3479/114899/9370/5105/7021
## GO:0072659 2633/116372/81693/3458/483/2207/1445/999/1020/8500/7124/2048/1000/4644/1956/245812/286/79156/88/10640/5911/6769/10959/10139/55737/50848/382/6809/23114/391/6845/208/1173/10434/682/6521/27183/8878/64083/3799/10133/8394/5584/3745/26003/5727/5962/26088/11187/60/8048/4218/26154/9530/22979/9312/23167/8766/7429/23062/784/80852/81619/57154/1213/975/5028/9914/23163/3630/8673/9368/1739/10490/8548/4040/859/2316/1969/8301/64114/5318/207/7040/2319/7132/5581/23433/51125/3688/9495/5906/5780/6281/8417/55690/5593/3911/10098/2852/4323/64398/5525/1804/6093/7430/2580/9053/10267/90410/55022/9475/3728/23759/4301/10519/288/5583/5170/3958/2258/9270/9912/27237/8650/23043/51763/11079/5872/6711/287/6810/23241/598/26119/9528/9693/9919/783/23499/55667/30845/23555/26060/9341/27065/10484/23136/10211/1601/2013/8631/64689/5295/10268/5357/63971/9482/54997/25945/22841/2181/29098/5590/54209/2803/23426/3875/3675/25837/6844/23122/9847/2042/57731/481/54843/8642/10580/25999/5064/11031/6812/582/2621/4035/55800/3551/30846/367/131578/10266/9370/10551
## GO:0001508 23630/1824/54532/3757/3737/1812/3753/5024/9631/274/6329/6262/1525/1134/10021/1143/610/2257/1137/7533/1141/3741/1180/6327/6331/6336/3745/9472/6323/1269/3762/1756/781/2332/784/79784/488/57369/6869/1739/4897/476/148/859/2316/2859/7341/5318/27094/4544/3759/1829/4923/2898/2741/2852/7531/6324/6640/30819/5023/5774/8913/3728/27345/10052/288/2258/54112/1201/3764/287/1832/3781/4916/9722/9992/3760/1268/6546/10242/783/8506/3784/2702/6548/29119/3736/29098/948/5025/10142/6717/3752/481/54795/2281/3751/477/23327/857/775/23171/4915/55800/2697/6863/776/23704
## GO:0042752 10874/7153/983/2146/56938/3737/5499/3062/100/8914/6839/2692/5629/23596/9500/57805/1642/5591/5371/5582/2932/402055/1814/1141/3398/4841/23239/9967/3172/134/9099/2063/10062/5500/1813/5501/22992/5602/55294/79723/5730/6096/2475/55124/5465/5599/5936/1390/10891/23373/8239/3184/10533/4544/23435/6421/1437/7080/25819/7874/55269/1453/8403/2767/8841/135/9475/9575/4987/1385/1815/5601/83759/6095/9112/1454/7071/463/23291/1392/406/5187/22871/5562/1407/9975/107/2776/7337/8945/7157/5563/6478/4887/8863/5468/2691/54551/8553/8864/6097/1408
## GO:0006110 9688/26330/54541/57103/9631/5223/5208/6396/5210/23165/55706/23636/5027/3692/3091/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/89/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5562/9611/9759/7157/957/5563/3643/2203/2819/26137/3479
## GO:1900046 10855/5341/4067/7103/239/5588/6850/5329/348/2160/5054/5578/5345/7006/3170/2161/84830/462/5340/2243/3848/5328/2266/7448/2811/7099/1361/5055/79001/5155/928/3273/7001/2147/634/2244/4780/5156/5270/10019/114897/1906/10630/5154/2039/3818/4846/6915/7035/3827/5580/7057/2150/350/710/2155/22875/5624/947/5592/2149/948/6403/5627/7056/2191/857/2152/5327/18/1311
## GO:0009746 1515/4821/6770/4830/2730/114/56943/1535/336/3383/80010/5208/4704/5127/6659/5467/2692/5165/5743/3091/1080/6518/8891/25874/26291/2626/8431/6597/5211/2646/3170/9971/836/10135/5428/2081/56652/6434/5019/3172/65985/5313/7351/3799/6722/2185/3745/4221/65220/51085/5798/1361/51052/93/7074/7447/3651/5566/2645/25828/65010/3956/2850/5879/10891/2044/4825/177/55011/6928/9324/1967/2021/6598/5290/8890/10533/4760/7040/846/5581/5894/3156/5906/1285/51714/1946/8892/2852/4087/2901/9230/4976/572/79727/2822/8893/5728/285/387/2695/9448/8398/2998/4986/55937/23098/2696/6810/7776/2309/26056/2029/6934/7200/5076/1392/7054/6546/1215/2729/51024/7057/5532/5562/51092/5530/8609/408/10497/8660/5563/2752/1027/1958/22841/9024/1490/6844/5799/6717/9854/7048/5176/1581/54795/2281/50507/4023/10628/6720/7494/2621/1292/8938/4035/55638/2697/55107/26137/150/9370/5105
## GO:1900371 5163/9688/26330/54541/136/57103/3208/9631/2023/5223/5208/6396/5210/23165/142/55706/23636/5027/5165/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/23279/79849/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/54704/5957/11277/4928/6901/7114/89/8086/405/2979/9883/6774/2103/2978/55022/51341/5903/348995/2981/4846/55746/863/4656/26471/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5563/5164/3643/54209/8604/2954/201163/5166/2203/2819/26137/3479
## GO:0035967 3576/440/6347/79139/3068/30001/578/10130/10897/23753/467/10525/10954/7353/2673/4690/468/1663/58477/7415/8440/116138/10987/3297/5610/56005/5771/10018/10113/9217/26291/9114/811/1649/7184/6745/11015/3309/2081/55658/55432/1965/51768/581/9797/26608/6734/10133/51009/5770/3484/7917/2134/5611/22926/1388/5526/4287/64764/1616/439/55738/9451/23645/2033/10488/4189/4780/4000/55284/9570/267/55161/9820/1491/2931/51283/6048/9709/55033/8720/1861/11153/7009/54788/27230/22872/7094/7709/10013/2135/51360/1200/30827/2137/54956/55062/9531/10273/135138/6464/9695/1639/5071/10106/118/5295/37/8452/90993/7466/595/80279/7494/26353/64061/8614/10551
## GO:0051196 5163/4199/9688/26330/54541/57103/4200/9631/5223/5208/6396/5210/23165/55706/51805/23636/5027/5165/3692/3091/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/54704/11277/4928/89/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5562/6622/9611/9759/7157/957/5563/5164/3643/8604/2954/5166/2203/2819/26137/3479
## GO:0007517 3627/983/140578/891/6664/445/5307/1482/1063/7504/6943/22808/2296/23764/8557/2253/58/3009/467/2539/575/22943/7004/409/29895/6285/57817/2254/3344/9328/5457/1020/4624/9456/7480/1410/5629/6262/688/3776/7273/5469/7490/1106/1959/1134/2280/1144/5594/6261/9734/2047/8819/9421/55636/6300/10038/9148/26263/1432/7135/1839/8928/79647/54583/5058/3720/60529/26576/59269/9099/4205/3792/64220/5081/5292/6445/5997/2876/8531/10791/58529/4654/6608/5077/6665/8837/8324/2010/7137/10409/5079/43/4617/9472/1948/6256/2303/7472/6910/8048/6442/4851/1756/51176/8087/2475/1271/4703/140465/2627/5465/4534/4634/6495/2660/79784/51548/50937/22989/3142/27302/10362/10413/4625/6899/26287/3236/26585/3516/4209/859/94104/26281/7046/57158/9150/22953/5318/7040/2033/668/22933/23060/3084/55898/10660/3156/657/5600/6901/5999/2275/89/4633/1655/2931/9215/79810/1906/3911/3235/6840/4089/7134/7528/4621/6497/4607/26508/27230/2248/104/8736/9318/9242/10818/5728/4092/10277/6525/387/4868/10869/9750/650/4618/7161/1310/1938/8912/858/1385/51778/51460/7291/3976/8763/4637/27063/3670/5300/6909/2115/4656/2648/26471/1270/1832/60485/2260/8737/78994/463/55692/2022/53339/70/64321/6474/56603/2218/4638/4015/4762/7093/6939/406/905/23411/2065/7026/26548/2263/5562/7139/8929/7881/6443/9975/8321/5925/9172/55909/5530/5463/4763/9759/10211/1499/2535/1960/607/10521/23493/4088/825/3399/10290/2735/4303/1301/4211/51111/1958/7402/7474/596/1901/7168/844/84159/8910/7042/57493/4208/2817/6717/7048/2353/6938/5950/1293/2247/6876/6469/1281/2317/10324/7832/6444/7494/2273/857/57496/3908/4487/23414/2121/4223/10472/2697/3131/1634/7049/3679/1489/3479/2006/652/4036/2066
## GO:0071216 3627/3576/6352/3934/445/79931/6347/8767/3055/6770/10859/11009/3654/1051/4067/8564/57103/3148/2950/26228/10288/4064/1019/1234/7096/3383/3394/706/923/3929/4793/4360/57817/7128/1244/929/26191/5467/4282/6850/7124/3569/7097/613/23097/5142/2213/1053/6376/9373/834/7133/958/5724/3297/5054/10221/5594/4792/10018/5578/3593/140885/92140/79577/2932/3592/10333/1649/1432/2672/6714/64127/6372/3309/695/7855/949/5970/80149/3606/10062/80198/23643/9516/10892/7292/3586/7099/23641/3553/1604/654/51510/3146/1440/5599/8243/4795/4843/7001/5976/8754/10269/10891/9451/968/8915/19/5144/83734/207/7040/85363/22933/5581/259230/9450/383/11093/114548/58509/10594/7189/1437/22904/4790/148022/22900/317/10270/824/7538/54499/79155/387/7431/2693/57003/25/4986/27063/4846/11027/6915/9646/23729/7035/57379/59307/1910/54623/10014/29108/23328/5595/7157/4057/8106/5914/7474/7466/558/948/54209/4208/1511/10628/7494/57088/1524
## GO:0042552 7368/9928/6663/57211/1075/10397/7504/27242/5653/8530/79152/6285/215/745/1890/8882/7097/9334/7852/4644/1959/11202/4118/7133/8898/56288/23114/3792/208/10215/5660/4359/6334/5453/5915/23205/3687/10939/4099/6647/9444/2475/4665/928/9451/1739/3766/8890/207/7040/22933/3084/10810/9514/4664/8892/7038/2064/23385/8455/6497/9331/8443/64398/10100/5454/3074/8893/5728/6900/1605/5803/5916/9921/9896/287/4916/256987/53616/3611/8506/200576/7572/2068/2581/79628/4763/6326/23405/23136/1499/3082/5914/26011/225/7248/9639/8604/2817/3400/1902/83700/8537/4653/5764/443/4915/1191
## GO:0051258 11065/27338/6712/29767/3055/26271/1236/3925/7111/11151/81624/119/274/57180/3383/10059/84722/4690/246/10095/10096/7454/4733/8440/5216/3071/55835/22919/3059/9793/6356/1496/7417/10048/382/10097/51734/2288/5058/8936/79585/10426/10092/2885/402/8851/10456/1729/5217/822/7408/57175/2243/11170/10109/4133/3320/2266/10094/199/6710/7756/54942/2185/7448/55607/79998/9873/10093/5962/5987/8976/55125/3093/157922/10178/58526/2475/11344/9530/9113/55761/1440/23242/5063/6366/59341/7429/5879/2017/79649/9463/10787/1859/23191/55604/10844/1739/55243/859/2801/3717/29766/10382/6188/10810/4233/5581/2244/10565/7114/6369/79778/23332/51199/1453/29082/58497/10677/9026/395/6904/2879/2039/387/4868/6708/25/6249/11078/2258/23271/10152/55755/8195/4204/2059/6711/55435/114791/27229/65018/5580/2242/5756/4641/1639/51332/29108/10435/6622/50810/5071/23189/5921/118/27243/4131/845/22921/1027/29098/10142/844/11076/23122/11075/6709/9353/2934/283/57731/2241/4747/25999/89795/54551/4926/24139/585/85477/23116/10788/50853/80206/51466/25802/2006/27124/4137
## GO:0051384 8061/1978/1515/445/133/7298/5111/6770/6715/54541/336/1789/2950/15/3383/3291/6285/1244/9076/2805/2692/7124/3569/11335/5743/1956/4192/5724/6753/10018/790/7332/1977/249/836/7356/1026/11170/2056/199/4654/8837/23205/677/7477/2720/7023/3586/189/552/218/654/3651/5978/5020/50616/3845/5207/2660/10076/8754/3192/7352/5069/7040/1369/383/186/301/1906/11214/572/64754/116/6382/3557/7538/387/799/2693/374/6781/842/3670/5066/4916/2309/7200/1392/9101/2354/7054/687/178/1373/2908/490/21/2322/3490/596/1843/6586/678/595/590/9353/2308/5176/2353/4747/210/358/3485/3176/6678/1036/7349/6898/4129/9370
## GO:0007005 3002/4318/57211/2537/29078/8326/1869/9650/1763/2730/57103/51287/2810/54205/80207/578/30968/292/9141/9997/10449/637/664/79017/11040/706/7027/56993/3028/10059/409/7534/4726/2189/5880/4704/23287/10105/2553/3433/10440/1020/142/10469/10531/7159/2395/54927/10452/79135/1890/5027/5329/4725/518/4723/3091/9551/506/551/3099/4708/2011/1525/211/10055/1981/8739/7019/100287932/55744/4700/509/64216/57805/10730/3054/57602/54539/2101/10018/2551/5366/54968/55737/55750/7978/2932/9868/885/5716/10245/4719/25813/8934/55669/4702/10971/10962/54471/7533/26521/516/4694/7332/80179/26517/6721/23593/5534/23082/56652/7029/4712/9049/1050/1267/6832/10456/25793/4205/4722/55486/79823/4711/11331/522/10063/23408/2876/4710/7855/3320/8834/10476/514/581/2139/1459/1723/8878/7416/79568/64083/51025/9361/10133/10989/3954/4706/10953/26519/51100/54708/23203/27141/23277/515/11232/59286/7156/55294/6993/3980/92609/5442/64422/7529/9530/841/5245/293/79680/51106/10075/4534/9093/3998/4717/51079/10632/26520/5599/4720/7015/7323/644096/79072/4709/79784/81631/54978/498/1352/4713/9776/57154/5018/26073/2017/5516/10891/80025/51499/28978/55626/4701/2631/617/8996/9804/10193/815/91137/4729/10533/207/10981/1386/64423/4000/4714/6687/6901/4696/11315/487/2931/521/539/79810/79778/2852/27429/4358/7531/8314/513/4899/6774/81858/23400/6834/4976/572/79133/93974/10645/3308/9026/3725/27109/55863/55022/79594/10013/374291/3064/89781/6773/10935/55101/291/5414/7161/9520/26355/8398/26515/4707/10000/25994/9927/10425/858/55823/55471/25915/4846/80224/23368/9531/4698/2648/5533/5864/23274/538/54832/4836/55288/10493/4695/5819/55245/4705/7249/51103/130916/517/598/65018/4724/54902/28958/54332/55186/54741/56947/2729/23682/51024/29108/51295/5562/8626/6622/89941/57835/5071/3375/11140/23409/9638/7157/23259/55187/4124/665/7755/6548/3082/3791/8743/596/10087/2034/54209/8678/65084/64112/22863/29928/3155/201163/23410/1513/638/6720/3305/1191/1634/3479/22885/4137/2066
## GO:0098781 6884/55506/2957/5435/55726/10849/5440/9328/10360/4141/5433/1663/6617/6882/25896/4686/2960/6597/5437/80237/2958/904/55656/55197/25926/8178/81556/5439/11189/2971/5431/6877/79035/4654/5436/2961/2976/9329/4691/22916/11137/51547/6619/2959/64768/2475/5438/5432/9555/80789/9330/5452/55011/6598/2963/23379/51593/57117/5434/65123/6878/26173/7702/8812/6618/10302/2975/22936/26512/6908/6880/64859/1022/5451/54973/23248/10927/2972/79871/6621/79664/5430/10208/1025/6667/905/55756/5441/7157/2962/84172/29997/284119/283
## GO:0043491 50852/10855/29851/6352/3932/6347/1236/9258/942/2253/1116/1411/7295/940/2251/409/5880/2254/9542/930/7124/27006/8904/85453/7039/1956/5795/3135/6376/958/4504/1950/3059/6199/56005/55024/2651/2264/2626/92140/7498/1649/1814/708/1839/3326/57761/5747/6714/23239/2885/6788/84830/2069/391/10456/208/101/5008/2876/941/685/3320/3606/6363/1813/23533/8822/5291/5294/677/10385/5293/7409/2534/3553/5781/7301/2475/2250/9530/5155/5526/4534/1440/6366/1646/2660/2889/5879/5527/10461/3630/8503/4150/9368/9518/1739/10193/23035/859/284/1969/5296/5290/26281/7046/23252/207/4486/7040/22933/3084/4233/9314/4157/3688/10565/2159/5156/11315/10019/114897/55801/7066/8823/2852/8074/2064/1263/2249/57142/5154/79727/5979/6425/2248/10818/5728/79594/57333/59338/799/8692/374/3815/23064/1605/10519/8600/112464/9270/2549/51763/6237/3488/2260/6662/4824/7249/2022/22876/6934/5076/65018/55512/4015/5287/23411/2065/2263/7057/3611/23612/3375/3092/2155/6453/2252/8660/5295/6794/7010/10268/3082/10253/3791/3643/558/8644/5025/2261/114882/2246/10016/29997/201163/2247/50507/9037/9365/3952/55273/4254/2621/2099/4653/5159/8817/2152/9863/3667/3479/2066/1524/2625
## GO:0009142 1503/5214/55526/7298/9688/3101/26330/3948/54541/4830/2821/57103/1841/7167/2584/30968/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/142/55706/23636/5027/518/3692/3091/9551/506/3099/10165/7415/4927/79902/509/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/9519/516/5211/2646/5236/57122/56474/5209/79023/54963/9818/5313/522/229/10476/51727/514/6521/9605/23511/83440/226/132/51085/515/230/23279/2645/7175/5465/10632/4967/5213/5207/4833/51548/498/11319/23225/10891/3630/8021/53371/7040/5571/11277/4928/2026/3098/6901/7114/10201/89/669/521/539/8086/405/513/9883/203/6774/2103/27109/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/517/65018/51422/5224/5562/56848/9611/29922/9759/7157/957/5563/3643/54209/8604/201163/4832/2203/2819/26137/8382/3479/26289
## GO:1903311 891/5688/5317/5709/1869/5698/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/5686/5695/4116/10213/7534/8761/23198/6732/5699/6626/11051/5714/1994/5393/5702/5708/5692/10492/23210/5704/580/23404/56915/1981/5683/26986/9704/3297/26135/23019/5694/9588/5578/10656/5718/23589/5682/4686/79577/5716/328/11044/904/5707/708/1432/6556/4869/5696/4615/6428/7356/7514/9967/6434/51441/11189/3181/5719/5700/8531/80149/9261/4654/5717/7311/64783/29883/5725/10197/677/11052/6418/1660/55795/339/399664/55234/10898/29890/5706/11187/5710/22916/11338/9567/9238/10921/10772/7529/2668/6429/2475/5978/23367/54855/27339/10236/11340/5689/2332/5720/23016/3183/5936/79072/10657/6233/8125/7316/5701/9491/10605/10914/5976/6432/5711/23112/56829/5715/1859/3192/79171/8021/3184/79869/7314/9861/6829/9589/22938/207/5705/4928/8570/23543/6733/1655/51013/8741/23435/79810/25819/253943/51594/79675/64506/6093/8241/5073/9698/9475/51341/7538/7431/149041/9337/3191/7432/6433/58517/10949/3178/57060/23369/6651/3842/91746/9646/201626/10768/6830/6431/202559/1025/79066/5580/55802/90806/54623/9939/7072/3315/10140/56339/26058/10284/79048/10521/8106/678/9810/6041/140890/167227/22849/22894/79899/6625/10181/7832/79068/83989/1153
## GO:0030193 10855/5341/4067/7103/239/5588/6850/5329/348/2160/5054/5578/5345/7006/3170/2161/84830/462/5340/2243/3848/5328/2266/7448/2811/7099/1361/5055/79001/5155/928/3273/7001/2147/634/2244/4780/5156/5270/10019/114897/1906/10630/5154/2039/3818/4846/6915/7035/3827/5580/7057/2150/350/710/2155/22875/5624/947/5592/2149/948/6403/5627/7056/2191/857/2152/5327/18
## GO:0031099 890/983/2146/6790/891/133/7298/8326/5111/1719/1051/336/5471/2950/3162/5653/578/1019/706/3475/6696/3549/23175/3936/57817/8751/5315/7143/9076/5467/5604/7480/8013/688/1956/570/5469/11202/4192/728/1460/5967/26019/2626/8431/790/2027/79647/8291/2896/1026/2043/5081/2876/7351/58529/1459/4654/6665/8837/8324/2348/7448/11221/3586/4099/5727/3484/1361/5792/471/6156/10419/3651/6442/5245/7476/335/928/6657/3482/5207/2660/10076/81565/975/10413/9860/7471/8428/3717/7040/9314/5906/6895/23162/2356/83481/8578/9215/5782/7104/5774/3725/5728/285/4618/9448/1605/3670/10404/4656/3077/4815/4916/8408/1495/22876/4548/5802/9104/7070/55909/5530/5228/2155/4837/29956/4131/607/4814/825/6430/2735/3371/3082/306/1027/2322/558/596/595/5396/7048/2934/4747/2281/5468/83700/4856/2621/5764/6387/4035/2737/10631/347/2697/3913/7049/3479/2066
## GO:0001952 4321/55612/1236/1029/23603/916/4771/8751/7422/2824/5795/79834/6376/5054/3175/2932/6422/5747/6714/3987/11170/8573/5328/5291/2185/27185/4617/2041/8861/9480/6366/3273/5879/1435/26585/1845/683/50488/8826/6281/1946/23332/4323/1613/1021/6093/56940/395/5728/55966/9475/2039/387/3728/59339/9448/1605/25/10519/9270/29984/57669/10395/6370/9647/7057/54828/23499/3611/7070/5921/6385/3204/4763/2013/8631/9748/4814/4088/5295/7010/94/6548/3791/22998/604/182/7402/596/5590/948/7248/23122/8829/2042/1012/4653/4035/54361/10631/347/9723/4680/1307
## GO:0034605 3627/81570/9688/3654/22797/4067/6489/3162/3066/9631/6396/10808/23165/55706/23636/1410/5743/7415/6119/26973/4927/79902/3310/3297/10762/57805/51501/5594/8480/27000/10049/11097/9532/6769/51278/2932/9972/81929/3552/3326/2288/57122/5931/79023/9818/3281/1026/6117/3320/1965/9261/23511/10728/3337/23279/6118/5566/2475/64223/9530/7175/4287/59341/488/23225/1616/8021/53371/815/7341/2033/818/4928/8086/816/545/27429/1068/7531/9883/7266/5903/348995/10777/55746/9531/10273/9529/472/23411/7057/5595/4763/1387/947/573/2246/10016/26509/3305/56892/26353/55107/4137
## GO:0007229 3695/9636/55612/5341/3055/3689/2207/8751/6850/7305/3674/7006/5747/6714/27040/3682/3683/3687/2185/80739/27329/7409/4627/3676/5781/1015/998/3680/335/9510/667/8754/3684/3655/5587/2316/634/3678/7791/3688/683/11093/961/967/8174/3911/65979/7094/2039/8482/3690/102/25/7076/3673/10077/9270/4185/1495/8515/2268/5354/8516/3672/3611/7070/57343/55679/2013/55914/4739/8452/3685/1490/3675/10979/1793/8829/57126/1281/2530/3693/5764/3679/10451/1307
## GO:0051495 10615/10733/29899/5341/3055/1236/11151/26228/5202/274/57180/3383/22843/84722/4771/8477/1020/4690/246/10095/23636/5027/10096/5629/7454/4733/8440/5216/3071/6376/55835/22919/3059/6356/88/1496/3984/5345/6422/382/10097/5058/8936/10092/2885/402/8851/10456/5217/10763/7408/57175/10109/10094/55160/10300/1072/2185/55968/79998/9873/10093/5987/8976/6683/5829/10178/2041/998/2475/9530/3265/335/1440/55558/7016/6366/59341/7429/5879/2017/27302/6869/9463/10787/23191/55604/1739/55243/859/2316/7046/6188/4233/5581/7984/79933/6281/6369/9525/961/1906/23332/29109/51199/9026/1778/9475/387/4868/25/6249/10152/55755/9270/4204/55435/137886/4916/22899/9647/79768/2242/11034/91807/4641/1639/29108/54828/10435/10174/2150/6385/4131/23075/4088/7010/28984/22998/1027/85459/7168/1490/10142/7248/9639/3397/11075/1902/8829/2934/2241/10411/50507/89795/54551/4926/9037/85477/7481/23116/4653/4908/54361/10788/7043/6863/51466/25802/4137
## GO:0051607 3627/9582/3669/4283/4321/2633/9636/4599/6502/5551/3559/2537/200315/6772/51311/91543/3429/10859/330/9447/54541/64108/51191/4938/4940/3458/54512/64135/8638/8547/10964/4600/25939/5788/5359/9188/664/4939/3600/3659/7353/23586/7128/3434/81622/3467/6059/3452/79132/3569/10875/83737/8772/63906/64170/6039/6036/60489/56915/958/10622/5610/50489/4277/10379/5366/5371/3593/60509/3428/6397/200316/3663/708/89870/3455/10758/3439/661/64771/684/5970/80149/29883/26057/55666/9255/1660/3443/339/7706/566/55324/3609/3665/10621/3451/3553/5611/10146/54476/10084/55601/27297/1653/55703/329/10269/56829/2074/3442/51728/3445/3588/10346/9020/2316/10533/103/85363/3661/3446/11277/5495/10623/51297/3448/114548/6895/3660/26146/54765/26065/7187/29110/10475/148022/55421/104/55763/3444/10060/9698/3594/55337/24138/79594/6773/8780/51561/1755/8692/7105/10955/3449/51284/10077/79671/4986/23369/7098/3764/3440/5094/55718/201626/10771/1130/256987/3456/29072/29108/2150/26007/57506/10521/665/100507436/63901/3441/596/10410/8678/54941/6041/29997/7728/90865/5654
## GO:0042446 3294/133/60482/6770/6715/3458/1594/15/706/3291/3290/5447/50700/7124/50506/3091/5469/1588/3284/2230/438/79644/2672/1593/51144/231/120227/10948/3292/949/51171/3553/7421/654/5978/1585/1181/10891/1583/653/476/3293/79154/27120/1586/7038/4790/1609/405/3972/3283/64377/1584/650/8912/3077/53905/8630/1734/1576/1392/6716/51478/9256/1958/7173/8644/51170/2488/27122/2232/7923/1735/1733/1589/54361/80736/8614
## GO:0043470 9688/26330/54541/57103/5499/9631/5223/5208/6396/5210/23165/55706/23636/5027/3692/3091/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/5500/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/89/2931/5509/8086/405/9883/6774/2103/950/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5562/9611/9759/7157/957/5261/5563/3643/8604/2203/2819/26137/3479
## GO:0045665 259266/5080/4821/53335/952/6496/3066/30012/55079/3475/7473/22943/6696/81618/80128/10220/1020/7143/2048/348/5469/11202/655/4504/2932/9856/152559/811/8934/7533/2672/382/1716/1977/2288/5747/7101/50807/1522/3398/7224/9283/8851/2043/393/10215/10371/4133/6049/3196/4099/27257/1656/1948/4193/10498/54413/5978/55558/396/6657/59341/3956/9745/9860/567/4168/7068/4854/6014/1400/1600/2664/23251/10660/5780/56478/7225/1949/351/57142/2580/5663/22882/5048/5728/23105/10363/387/5458/7431/6658/6259/6900/9448/7161/10519/2258/429/55755/4974/3670/9423/112/1630/1270/4038/5800/9139/9529/6662/2309/22876/6911/5802/7025/26052/1910/3280/9706/9693/22871/3199/7070/23108/23189/8929/7337/5530/6532/29116/5087/29956/4776/22891/64689/22902/23258/182/4211/7474/23111/1942/4804/66008/58190/7248/1809/3397/11075/9353/1902/8829/1735/6695/6469/5793/9037/85458/10769/56920/2045/5376/4035/2737/1746/27124
## GO:0052547 6280/6279/27074/332/9232/4102/4318/7980/3932/2537/4609/8767/1475/330/6590/6317/9447/5698/4067/5266/5973/5641/9705/11047/2810/54205/578/3329/9141/8530/2597/5271/274/5684/239/3697/10213/5447/3735/409/1469/23198/1944/9806/1476/80758/10541/939/3965/51377/4210/7422/6406/3336/27344/6318/7124/1509/5329/1378/1410/8772/5743/551/7415/7186/25816/9131/834/27290/356/3297/4504/5054/10049/10018/1612/5366/5371/10134/7498/6300/3428/885/4898/1032/1611/1512/259/23204/1432/10816/3933/10010/55655/10845/8795/6714/26998/6690/5272/6091/5696/2896/6197/64065/2043/5275/684/2876/7077/65264/400410/581/3065/26577/8837/23151/8740/5858/55795/7448/7023/23787/6195/9097/64780/27141/2534/56616/5062/1447/2902/5134/2168/4838/4193/51035/3146/51176/5978/10653/841/5045/2904/3698/9966/51079/6657/10542/7429/50859/355/9491/23786/90199/1474/79886/329/58189/177/51499/55011/331/9451/8996/8915/4217/10047/8301/9994/207/3717/668/960/6188/55367/5894/80196/9314/65992/4155/11315/114548/1285/54475/9709/6692/2852/27429/7531/351/1654/8717/2903/22900/317/6774/135/23400/5023/572/51050/112399/334/718/9026/3491/55081/9475/79594/387/57333/84168/10935/5037/4255/26355/2335/7076/842/27018/1893/56925/10392/55031/5896/7035/1800/8737/10017/4824/3700/5607/5076/10395/65018/6407/9647/2719/23411/51024/29108/7057/8626/8434/6622/2/1992/5595/3092/26952/10550/22861/1718/5269/408/4088/3476/4057/51065/3699/3082/1470/831/10406/8743/1942/1472/6478/2149/1490/4804/4018/11005/26999/444/10016/4803/6694/2934/9812/7078/5627/727/1293/5468/80760/6695/358/5118/2192/10879/51232/4671/6653/1294/2621/5988/1471/857/2045/3730/58503/2152/1473/4137/7021
## GO:1901990 991/1062/10403/79733/9787/11065/22974/4751/983/4085/81620/2146/7272/9212/9319/51514/6790/891/9928/3161/990/5347/701/51512/9700/898/10733/54801/6347/29980/1063/5111/5688/5709/26271/641/1869/1029/5698/55159/5693/8317/7277/5713/9735/5721/2810/5691/1031/79915/995/5685/1019/637/5690/5684/5885/5686/5695/11200/10263/203068/7027/10213/7283/23198/8883/54908/4683/10383/3276/63967/5699/6659/5714/5702/7480/1030/9978/5708/5692/10393/7517/5704/1956/81853/672/55835/1981/8328/5683/22919/1820/9793/23019/1642/5591/5694/7321/55722/835/8454/5371/5889/5718/5682/79577/8091/5716/328/1032/25906/79959/5707/60561/2765/9125/23026/55559/29117/4957/8379/3398/5696/1017/7029/3741/1026/25793/9702/6868/11331/11170/5719/5700/3320/581/199/84861/5717/27183/29883/60672/26057/7756/894/10197/51433/7465/677/55795/4849/7023/10385/56984/23354/5706/5962/131601/9183/5710/55125/4193/10498/6118/5566/10457/1874/1069/59343/5777/7175/996/8451/5689/8766/5720/7015/10121/5701/9510/9491/11319/8636/7324/5518/23476/5711/5715/9662/8655/51499/11258/11190/51343/4848/11116/9184/9587/9861/207/7040/2033/29766/5705/22933/2071/10382/55367/9314/22994/22897/80174/9525/23332/79621/1263/7531/351/1654/8738/5116/1453/51451/51143/1021/4850/6604/57472/5048/57165/5728/79441/1778/8450/80321/51347/9337/5934/10540/22995/1647/8881/989/56257/55755/5325/57060/4204/11064/55031/22981/55781/138151/8737/1454/8697/472/5569/56155/5890/1112/9344/7846/4762/23236/8481/5310/1639/8558/3550/8929/10106/5925/2068/5087/8945/80254/25959/7157/79960/26058/95681/9738/6500/51065/29882/28984/55142/4303/3373/7508/3275/8452/1543/80184/1027/1028/596/79858/10217/1843/7840/80169/324/678/595/1781/10142/58190/9814/4194/54820/5311/80279/23194/29997/51339/25949/5108/3306/5577/7832/10769/2273/5988/57551/51149/4582
## GO:0048524 7153/6352/3838/5435/5479/940/5440/3434/3965/6732/23076/51497/5433/348/79720/26986/5034/6882/1642/10450/9217/6597/5437/904/10465/9126/6780/5886/5481/920/5439/5431/5478/27183/29883/5436/1072/1660/7023/972/23633/2959/8468/51176/23367/5438/5432/51193/2332/3956/25978/7879/6827/6598/2963/6829/9150/22938/103/2033/64710/5091/6895/6733/5434/9525/6737/5586/7251/25920/1654/10475/7113/51495/104/51773/3725/9218/29969/858/201626/5430/64848/7155/1025/2040/6667/1105/5441/27243/2962/2494/3249
## GO:0007188 8685/3627/6373/4283/333/133/3973/136/114/2642/4159/3351/1812/8698/79924/8477/2692/4543/4160/5996/2641/2827/23432/4161/5567/5578/8811/1232/1394/153/113/1395/4158/1814/2778/5732/796/5731/2770/4883/9283/2781/2358/134/2357/2914/5997/346562/266977/1113/1813/2861/4842/5734/109/2773/4988/10419/6754/2740/1816/5739/2847/2917/11245/2782/5028/3352/9340/9368/2918/6014/2316/19/5144/846/2912/4157/9495/11251/2931/2899/1906/5196/2852/1325/11214/493/135/7253/10672/10163/10267/116/799/2587/4987/5741/7432/4986/1815/2771/112/3354/3355/60626/2913/1268/554/115/9693/4985/3375/107/2869/2774/108/10268/6752/5745/1129/3350/1901/4887/1902/5064/2691/10203/1909/5138/2550/5350/5744/4886/9590/150/10266/776
## GO:0043488 5688/5709/1869/5698/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/5686/5695/10213/7534/8761/23198/5699/5714/1994/5393/5702/5708/5692/10492/5704/23404/56915/1981/5683/26986/26135/5694/5578/5718/23589/5682/5716/328/11044/5707/1432/6556/4869/5696/4615/7356/7514/9967/51441/5719/5700/8531/80149/9261/5717/7311/10197/677/6418/1660/55795/339/399664/5706/5710/9238/7529/2668/2475/23367/54855/10236/11340/5689/2332/5720/23016/3183/79072/6233/8125/7316/5701/9491/10605/5976/5711/5715/3192/8021/3184/7314/9861/207/5705/8570/51013/8741/23435/25819/253943/79675/6093/8241/5073/9698/9475/7538/7431/149041/7432/10949/57060/23369/3842/201626/79066/5580/55802/90806/3315/56339/26058/678/6041/167227/22849/22894/79068/1153
## GO:0051588 23413/10859/136/8564/1138/321/3351/1812/10059/1020/2824/10675/5027/10755/1143/28964/1142/5582/2932/1814/4878/23204/1137/1141/91683/5579/6855/5217/6845/5997/8573/1813/4842/55607/9515/41/3358/2668/594855/7476/6865/2332/6853/488/8723/6804/5028/23208/5030/8673/5865/815/148/5908/5999/5906/9783/3060/4923/2852/6529/320/2901/5868/1861/22999/135/5023/6623/5663/1136/1855/27345/3749/8600/1815/22930/8973/5864/55288/3356/1392/1268/783/22871/23025/6622/5071/107/6532/4763/10550/9581/10211/10497/23621/1129/3350/7779/9627/9162/6843/79772/9900/4208/6812/8864/477/8938/6857/18/776/4129
## GO:0000077 79733/983/1111/51514/6790/891/5347/51512/54962/29980/5111/641/1869/55159/2810/995/83990/11200/7027/4683/3276/63967/6659/3014/672/1820/57805/988/23019/5591/835/5371/25896/5810/8091/60561/1432/2765/29086/9125/8563/1017/7029/1026/5514/26272/581/29883/4849/51322/261726/5781/4193/10498/6118/5883/1874/9656/29935/27339/8451/79184/25988/51499/3364/51343/4848/2033/1386/55367/11277/10116/545/79621/1263/8738/9577/4850/57472/8555/51347/8682/9575/9337/5934/51720/51776/1647/5325/57060/9984/472/1112/9344/5884/1407/80254/7157/26058/51065/28984/4303/7508/1027/79858/595/4194/54465/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0009135 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/204/23636/5027/3692/3091/3099/9414/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/4354/2027/5211/2646/5236/57122/272/5209/79023/9818/5313/229/8573/6521/23511/83440/226/51085/230/23279/2645/7175/1740/5465/2987/4967/5213/5207/51548/11319/23225/10891/53343/3630/8021/53371/1739/954/5571/11277/4928/2026/3098/89/669/8086/405/9883/203/6774/2103/572/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/5563/79873/3643/8604/2203/2819/26137/3479/26289
## GO:0009179 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/204/23636/5027/3692/3091/3099/9414/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/4354/2027/5211/2646/5236/57122/272/5209/79023/9818/5313/229/8573/6521/23511/83440/226/51085/230/23279/2645/7175/1740/5465/2987/4967/5213/5207/51548/11319/23225/10891/53343/3630/8021/53371/1739/954/5571/11277/4928/2026/3098/89/669/8086/405/9883/203/6774/2103/572/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/5563/79873/3643/8604/2203/2819/26137/3479/26289
## GO:1905330 3627/6772/5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/239/5686/5695/22943/10213/409/23198/1951/7422/5699/5714/5702/7124/5708/5692/5704/5216/4192/655/5683/9500/10736/1175/5694/5718/5682/5716/6422/5707/3975/64750/5696/3239/1857/8323/81839/11331/1173/5719/7855/5700/5717/6608/10197/3687/8324/5706/6256/5710/7074/7472/2119/998/2668/2475/50855/7476/63943/5689/5720/6495/5701/51548/9491/57154/5879/1213/5711/5715/6928/7471/26585/859/9861/7040/5705/23002/186/6239/23213/9968/161/23332/7849/4919/5154/183/81792/3217/5728/1855/55966/5754/387/6259/55366/163/25/7976/3976/6909/10427/2260/6662/5076/54903/2719/1856/4070/2263/9620/8321/54806/1499/1601/2535/2252/22881/8322/1952/3082/4920/4435/7474/4300/7482/55727/2246/23122/51339/6591/6469/2099/7481/54361/2239/9863/367/652/2625
## GO:0006631 9415/5163/6319/313/80339/5194/341/80142/2950/2171/6916/11332/1557/10449/239/79152/5447/3638/23175/873/4726/215/55289/5467/79071/4282/246/8013/22880/54363/5165/345/2180/55301/3692/5743/4644/551/2108/26027/525/7915/131/1573/672/9373/2182/8560/1374/5444/64834/5321/242/27349/1666/1056/51102/1432/57761/51144/6307/84830/1544/23305/208/201562/65985/10005/2876/5096/10434/55066/10062/3033/5264/747/23205/241/1738/51094/10728/2194/27329/337/972/4706/1892/552/10478/4051/3995/51085/3553/2168/11313/9444/58526/5730/54576/2475/9536/1545/116285/5465/28965/27163/1646/23659/51/50487/1390/2170/54995/2109/10891/80025/3630/23600/1559/7352/81616/51099/5828/1565/207/5571/8879/634/54704/7132/10613/11277/5740/1962/79602/2639/1891/1906/59344/5565/4048/51179/1376/51495/2938/283927/5319/718/2879/4594/2687/8824/9926/1632/3032/2693/5446/2695/34/9524/7306/51703/7291/7376/51084/5066/1579/11000/22937/3030/3712/23038/6342/5445/3990/240/31/26063/1576/11343/1571/23417/1268/2110/1558/51422/23411/5354/51141/7054/10998/9104/4779/5742/55825/5562/30/6622/5825/11160/23409/5595/55258/35/8660/5563/5564/37/5164/224/3248/1543/79966/5191/2181/225/8644/948/5095/27306/80724/11001/33/10464/8605/2954/6785/7923/11019/57834/1907/1581/1384/2166/60481/5468/5166/8310/55198/56898/4023/2948/3952/5577/3295/2946/8864/84869/6720/7494/10455/3991/857/80221/32/8309/247/3667/66002/36/54677/4056/54898/2053/9370/11283
## GO:0061572 221692/5341/3925/119/22843/6624/3936/4771/221061/8477/8500/7454/5216/6376/3984/5345/6422/7184/5058/6714/5217/57175/11170/199/55160/5734/6722/4082/2185/55607/5962/50944/5829/2041/998/2475/9530/335/7016/7429/5879/6869/55604/2316/7046/4233/7791/10083/7984/79933/6281/961/23332/81/29109/87/5074/10458/6093/7430/253980/10163/395/9475/2039/387/25/7126/9270/8195/116985/51763/57698/2059/29984/22899/10395/9647/4070/10174/5071/6385/4430/118/23075/55616/408/4088/5295/28984/4739/6548/22998/8452/1901/7168/1490/7840/7248/9639/1809/23122/3397/1902/8829/10580/10411/50507/585/3693/51474/7481/4653/10391/54361/7043/6863/51466/2006
## GO:0042590 6890/10437/5688/5709/5698/5693/1535/5713/4688/5721/5691/5685/5690/5684/5686/5695/2210/10213/23198/4689/6891/5699/5714/5702/5708/5692/5704/1536/3135/5683/50489/5694/3134/1147/5718/5682/5716/811/2923/5707/3106/5696/3107/5719/5700/9554/3105/5717/50856/10197/5706/8517/5710/6892/3133/5689/5720/5701/9491/5711/5715/8673/567/9861/5705/4012/9341/2209/3685/948/8773/3693/3551
## GO:0030100 6347/3561/3055/10859/3024/1535/336/341/5336/11314/26228/8877/867/3208/1794/5788/274/5806/22943/3600/10059/409/1445/7422/929/9829/3601/6850/246/9474/7124/7097/345/613/348/2213/5795/3071/1950/5054/1175/4240/57118/8898/5582/7036/140885/1785/6441/3560/23513/811/1814/382/55681/6556/6714/8291/7018/725/2358/4289/949/6363/10062/1813/5291/6457/5657/7448/7275/64854/29763/566/5770/192683/5873/6647/1948/8976/3553/3146/3565/9711/64422/7287/335/9784/8724/6386/2332/6366/6456/2889/51160/6401/5879/23208/79872/10461/9463/722/567/54550/6014/26585/5587/859/284/8301/30844/7040/27/197/5906/1742/57030/302/6455/961/967/81/9892/7251/1609/23011/1861/10960/6093/29978/23237/11252/718/9026/5728/23607/933/2624/4983/163/3690/1759/11037/25/717/636/3673/22848/3958/8674/7376/1815/10347/8650/3077/5533/5538/7249/6517/10188/6311/2268/2719/26119/4043/9779/80230/29108/22871/5532/2150/6622/50632/26060/5530/3092/54806/10211/6453/1601/408/29/4153/7474/558/3685/51479/9094/948/977/79772/26045/57126/2042/9765/5468/25999/10103/1012/55198/11031/2621/23327/4908/55680/857/4035/1191/9863/6424/9370
## GO:0003014 133/114/1535/1364/5641/3291/1312/9356/613/551/525/1143/5567/6927/63929/6446/113/5345/360/1814/4643/56302/5575/5568/1141/4883/231/359/134/685/5660/1813/6521/109/361/552/80763/5566/4162/1585/5020/5155/8766/6869/9368/3037/148/81285/186/3512/23213/5585/1906/135/183/1136/387/8692/6781/4987/5576/5972/27131/2771/112/1579/51763/5800/5573/4879/554/1910/115/2150/3784/107/2702/2013/108/22841/7466/3043/596/947/8644/2149/4881/3675/26249/221395/2934/358/5577/3778/2621/10391/10916/5125/2697/185/6863/66002/9370/10699/652/7021
## GO:0031570 8318/79733/983/81620/1111/51514/6790/891/990/5347/51512/54962/29980/5111/641/1869/1763/55159/2810/995/83990/11200/7027/8883/4683/3276/63967/6659/3014/672/1820/57805/988/23019/5591/835/5371/25896/5810/8091/60561/1432/2765/29086/9125/8563/1017/7029/1026/5514/26272/581/29883/4849/51322/261726/5781/4193/10498/6118/5883/1874/9656/29935/27339/8451/79184/25988/51499/3364/51343/4848/2033/1386/55367/11277/10116/545/79621/1263/8738/9577/4850/57472/8555/51347/8682/9575/9337/5934/51720/51776/1647/5325/57060/9984/472/1112/9344/5884/1407/80254/7157/26058/51065/28984/4303/7508/1027/79858/595/4194/54465/6419/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0002456 1075/5551/91543/10859/3575/3329/5788/3383/30009/6375/8807/3251/5027/3569/8772/7454/5817/7186/2213/3135/7133/3134/54440/3593/7264/729230/3592/51571/1512/6556/3004/7855/3606/326/10892/7292/5873/3553/1604/3146/6885/3565/8809/3133/10384/975/177/10945/567/1739/2794/634/11277/50943/383/11118/114548/7189/1178/8417/23180/56940/4092/3594/51561/3440/3077/22890/5819/3456/5532/2013/163486/100507436/182/3554/81545/5590/4179/54795/2625
## GO:0002718 91543/10859/336/3162/2867/10225/9188/30009/2207/6375/23586/3735/4282/9474/8013/7124/3569/7186/3135/7133/3134/54440/729230/3805/1432/64127/695/684/7855/3606/10892/7292/51704/3586/11126/972/7099/3553/3718/6885/8809/3133/335/1653/975/567/8915/284/7040/79004/50943/3098/383/114548/7189/1178/148022/4092/8482/7098/3440/3077/9865/3456/2150/5595/57506/604/3554/7474/5590/948/7042/54795/11213/7043/2625
## GO:0060218 5688/5709/5698/5693/5713/2296/5721/5691/5685/5690/5684/5686/5695/10213/23198/865/5699/5714/5702/5708/83737/5692/5704/1106/54517/5683/5610/5694/4004/5718/5682/5716/6422/5707/5696/51441/5008/5719/5700/5717/6722/10197/5706/3313/5710/8861/1636/5689/5720/5701/9491/5711/5715/10413/6929/9861/7520/5705/4780/6886/2623/1021/2624/7161/9739/25/10538/4297/2068/56339/7157/4602/4005/4222/6938/10443/2625
## GO:0048592 5080/6664/8842/639/6496/362/6247/5146/24147/578/4647/3549/2792/10220/23287/7422/2780/2048/5629/3091/655/356/30813/6094/2047/25806/3975/23418/6121/2195/6656/64220/2779/5309/4669/7855/581/5915/5584/5818/4308/3150/25794/25987/7472/793/28996/6096/7287/57096/51384/23424/2201/1826/50937/55000/7068/1969/668/10002/4041/65979/1419/7528/6497/6774/55764/22882/10818/54549/204851/2301/5308/10210/357/9927/10152/7291/5916/6909/23554/1270/220/6662/6670/5076/6015/7054/4237/7020/51761/25836/7070/8289/4763/54806/1499/2295/10265/4124/80184/182/4211/25945/7474/596/8412/7482/5797/1735/5950/1295/1290/585/2202/5764/1289/1296/4915/2737/6935/2200/55714/652/7021
## GO:0060402 3627/6373/4283/5026/3932/1236/55503/4067/1535/5336/11151/5031/30001/1812/578/5024/5788/1234/6375/8989/55151/930/9474/5027/2906/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/5371/117/931/1649/56302/9002/9446/920/1729/623/3710/2056/6363/581/1813/4842/5621/3954/10523/2185/5335/9472/4308/2534/2902/22821/57192/9001/5566/1756/3358/5777/2904/781/6366/784/7222/55283/8996/148/57158/1193/22953/5144/2147/7040/5581/4923/2852/2903/57338/493/7009/5319/3064/10345/799/25/5170/2905/287/25998/3356/3709/6546/6622/7070/825/10268/845/596/2149/5025/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/857/775/5350/3357/3708
## GO:0006986 3576/79094/440/6347/79139/3068/30001/578/10130/3329/10897/467/10525/10954/7873/2673/10808/8988/3336/4690/468/1663/58477/3301/7415/8440/116138/10987/55741/3297/5610/56005/5771/10018/10113/9217/26291/9114/811/1649/7184/3326/6745/11015/25822/3309/2081/22824/55432/3320/1965/51768/581/9797/26608/6734/10133/51009/3337/871/5770/3484/2134/5611/22926/1388/5526/23197/64764/23071/1616/439/55738/9451/23645/23190/27348/2033/10488/4189/4780/4000/9570/267/55161/9820/1491/2931/51283/9709/55033/8720/11153/7009/27230/3338/22872/7094/7709/3308/2135/3300/51360/1200/30827/2137/54956/9927/55062/9531/10273/135138/6464/9695/11080/1639/7057/5071/3315/10106/118/3316/5295/37/90993/7466/27129/595/80279/80267/7494/26353/64061/7060/1311/8614/10551
## GO:0007269 23413/60482/136/8564/1138/6572/321/3351/1812/22895/10059/1020/8500/10675/5027/10755/1143/28964/1142/5582/2932/23513/1137/6809/1141/9381/91683/5579/6855/774/8447/5217/2914/8573/1813/8541/64130/55607/8497/9515/41/594855/8618/7476/27163/6865/2332/9699/6853/488/55327/6804/5028/23208/6616/5030/2572/6854/815/148/11255/5908/5906/26059/9783/3060/8867/2852/320/2901/5868/8775/22999/135/5023/6623/5663/1136/1855/27345/3749/1488/8499/9751/22930/8973/114088/5864/9378/5538/55288/1103/3356/1268/9379/783/22871/23025/6622/5071/107/4763/9581/6582/10497/27445/23396/9256/2571/23621/1129/7779/9627/9162/6843/6844/79772/9900/5799/8825/4208/8448/6812/93664/6571/8938/6857/776
## GO:0032922 4159/3066/5499/2673/468/5971/9500/5371/8431/7150/1814/10135/3398/9099/5927/5500/1813/3065/5501/22992/10419/5465/10075/10514/10891/6928/3192/25819/1453/8841/9575/55366/10743/112464/83759/6095/4862/9112/1454/463/8473/4297/406/5187/23411/23077/10499/1407/1958/79831/4804/196/8204/79365/8553/8864/6097/9607/1408
## GO:0010952 6280/6279/3932/4609/8767/6317/9447/4067/5641/9705/11047/54205/578/3329/9141/239/10213/3735/23198/1944/80758/10541/3965/4210/6406/3336/7124/1509/1378/8772/7415/7186/9131/834/356/3297/10018/1612/5366/5371/10134/7498/6300/3428/885/1611/1512/1432/10010/55655/10845/8795/6091/2896/64065/2043/400410/581/26577/8837/23151/7023/23787/27141/2534/56616/2902/5134/4838/3146/5978/841/2904/9966/51079/355/23786/177/9451/8915/4217/8301/9994/3717/668/6188/55367/65992/4155/114548/1285/2852/27429/351/1654/8717/2903/22900/317/6774/5023/572/112399/9026/3491/55081/9475/79594/387/57333/84168/26355/2335/842/27018/10392/8737/10017/4824/10395/65018/6407/9647/23411/51024/29108/6622/5595/3092/10550/22861/408/4088/51065/8743/1942/2149/1490/4804/26999/444/10016/4803/2934/5468/5118/2192/5988/857/2152/4137
## GO:0032886 220134/22974/10460/4751/81930/3832/1111/6790/5347/10615/10733/29899/6491/3925/29105/79866/10263/84722/80128/899/23636/79187/7517/4733/26973/2011/672/55835/22919/5119/8480/64793/2932/79648/79959/26586/3834/9126/10432/2288/5058/4869/2770/7514/402/8851/22809/1729/11170/4133/10300/4281/79929/55968/79998/6683/157922/51510/9001/58526/55521/79598/7175/4591/59341/8243/25978/5879/1213/1540/1859/3192/3916/9181/11190/859/79969/57787/10382/6188/4233/56683/11186/6047/26146/22994/23299/9525/123872/23187/1946/23332/51199/2064/57132/10015/10735/58497/5048/6904/1778/9475/80321/10013/152185/387/8045/55036/55130/25/6249/10519/636/2258/4682/23271/55755/8195/4204/8850/2648/137886/55288/10274/2242/5310/1639/23499/5562/6622/50810/56890/146057/27243/1499/9638/4131/3476/5563/26054/25876/1027/85459/29098/324/10142/23122/11075/10039/2042/4744/25999/89795/4926/24139/585/79884/85458/10769/23116/89927/57551/27124/4137/25893
## GO:0048565 891/6664/3576/4821/6663/445/639/7298/6943/57103/2304/56913/100/3549/2254/6522/7124/5697/3091/688/1956/887/2300/10736/5967/2626/55212/6422/2049/7547/60529/3398/3239/1026/1399/64220/5009/1954/6608/5915/51208/3274/93/4838/3651/2627/3691/23242/6343/3142/6928/3655/1600/7040/6932/1045/5156/57680/123872/4087/286451/5979/6425/4852/2736/55036/55366/3815/2294/429/6909/8854/9139/60485/6293/57669/64321/6474/1910/3280/2263/5310/8626/25836/579/5925/54806/1499/2295/1373/4088/2735/1543/6299/7474/596/3202/5021/7042/5919/7048/8642/51339/6469/1281/58495/79633/56034/7481/5125/25803/2737/7043/652/10551
## GO:0060048 23630/1824/59272/1482/3757/8557/3753/9631/274/147/55151/4624/7852/6262/5142/7273/10021/2257/2626/5606/4878/9446/3741/134/5997/156/80149/1113/4842/6327/5294/6331/6336/7137/6323/4635/3762/8048/5566/1756/5608/2475/781/4634/27302/4625/1739/476/148/859/2316/5290/7341/1193/5318/5144/3759/6901/4633/1829/4632/7134/6324/4607/6640/8913/4092/3728/10052/6781/3764/287/1832/3781/4090/2548/70/9722/9992/3760/10848/6546/7423/783/30845/7139/3784/2702/9759/8654/845/6548/29119/7168/1490/5025/3270/6717/3752/481/54795/2281/2946/477/6444/23327/857/775/23171/5350/55800/2697/7349/776/23704
## GO:1902036 5688/5709/5698/5693/5713/2296/5721/5691/5685/5690/5684/5686/5695/10213/23198/865/5699/5714/5702/5708/83737/5692/5704/54517/5683/5610/5694/4004/5718/5682/5716/5707/5696/51441/5008/5719/5700/5717/10197/5706/3313/5710/8861/5689/5720/5701/9491/5711/5715/10413/6929/9861/5705/4780/6886/2623/1021/2624/7161/9739/25/4297/56339/4602/4005/6938/10443/2625
## GO:0006473 1111/79075/28999/80155/3066/8607/8877/15/51471/5447/10626/86/6659/8260/55689/9474/54107/11177/8089/80218/672/675/3054/10943/2932/8202/29117/10856/8986/3662/6688/26155/1810/8193/4191/10629/6877/4654/4842/60560/26038/6418/54934/9329/7917/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/8295/10269/10891/55011/6598/10524/10474/9085/55274/79969/7040/2033/8536/1386/50943/11143/8888/6881/1962/11315/8520/9767/54386/10933/8464/4089/84779/27097/55209/6872/8110/6871/51562/2647/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/1487/23326/7291/10902/3976/3670/4204/6880/8850/151050/2648/26471/57634/55167/8473/112869/7703/51230/4297/406/5187/79903/23411/6879/5562/6622/26053/56848/5595/339287/79612/79960/84148/408/23741/5563/1387/8648/23522/85459/322/9252/26036/23338/2308/201163/6591/10411/24142/4674/57551/4582/5105/4137/2625
## GO:0051017 221692/5341/3925/119/22843/6624/3936/4771/221061/8477/8500/7454/5216/6376/3984/5345/6422/7184/5058/6714/5217/57175/11170/199/55160/5734/6722/4082/2185/55607/5962/50944/5829/2041/998/2475/9530/335/7016/7429/5879/6869/55604/2316/7046/4233/7791/10083/7984/79933/6281/961/23332/81/29109/87/5074/10458/6093/7430/253980/10163/395/9475/2039/387/25/7126/9270/8195/116985/51763/2059/29984/22899/10395/9647/4070/10174/5071/6385/4430/118/23075/55616/408/4088/5295/28984/4739/6548/22998/8452/1901/7168/1490/7840/7248/9639/1809/23122/3397/1902/8829/10580/10411/50507/585/3693/51474/7481/4653/10391/54361/7043/6863/51466/2006
## GO:0072073 8842/6772/4609/6943/28999/2297/2296/2253/4072/2138/10220/7422/7490/100133941/655/9500/10736/55083/6422/5455/3975/4643/384/3237/6492/2043/9788/3579/9244/9350/6608/5915/7477/10409/5727/7475/1948/2303/4091/793/2668/2302/6495/10413/6928/7471/1739/26585/7040/8826/7369/186/3911/4089/4087/7849/26508/183/5979/3217/6382/4092/3207/4868/847/650/55366/25937/3976/56998/5420/5800/4090/2260/7827/6662/38/5076/2719/4070/3280/2263/5310/3611/6385/5175/4086/54806/5228/5087/1499/25959/80000/4088/5914/182/4435/6299/596/947/7482/5311/26249/2246/10252/4208/9353/8642/2247/6469/79633/7481/2045/54361/2737/3913/9863/9370/652/2625/7021
## GO:0018394 1111/28999/3066/8607/51471/5447/10626/86/6659/55689/9474/54107/11177/8089/80218/672/675/3054/10943/8202/29117/10856/8986/3662/6688/26155/1810/8193/10629/6877/4654/4842/26038/6418/54934/9329/7917/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/8295/10269/10891/55011/6598/10524/10474/9085/55274/79969/7040/2033/1386/50943/11143/8888/6881/8520/9767/10933/8464/4089/27097/55209/6872/8110/6871/51562/2647/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/1487/23326/7291/10902/3976/3670/4204/6880/8850/151050/2648/57634/55167/8473/112869/7703/51230/4297/5187/79903/23411/6879/5562/6622/26053/56848/5595/339287/79960/84148/408/23741/5563/1387/8648/23522/322/9252/26036/23338/201163/6591/4674/4582/2625
## GO:0010212 3627/10635/1894/8438/5888/4609/641/6770/6354/7412/55159/1535/57103/1789/4436/578/867/5788/3383/2140/11200/3735/2138/57817/1788/142/23028/3014/1410/85453/672/6240/3297/675/5591/5371/25896/5810/1785/8091/3428/6422/64240/1432/29086/10010/836/10135/2002/5428/2885/3309/120227/1026/26272/64421/2876/2547/64782/581/79035/339/4221/11073/79073/9025/4193/5883/22976/3265/1936/79184/23514/10276/10269/10413/2074/3364/10524/11011/7040/7520/11277/64710/65123/545/1161/3981/9577/7518/9575/4255/51720/51776/1647/7486/64859/9112/5423/404672/7516/472/598/23411/7158/5562/25836/2067/1196/10206/7157/6794/1958/596/595/55693/6591/210/50507/7056/3861/388/51149/2625
## GO:0007389 5080/6790/9355/4821/65009/2019/5100/712/1482/6491/6496/9289/2297/2296/8092/8557/2253/55079/7545/7473/22943/3549/2138/10220/257/56033/4188/3229/3091/23432/7490/1959/10683/6862/655/10736/25928/5591/5567/9421/2626/10959/55212/25806/6422/162/1649/3975/2926/8928/3170/23648/7547/2637/3237/10006/60529/6091/6656/3239/6434/8828/1399/30062/5081/10371/5046/7855/1954/9350/3227/6722/6608/4281/7477/7479/2348/22955/10409/4617/1044/5727/7475/7289/93/22823/2303/7472/4838/6910/4091/6493/5566/23322/4851/3219/28996/2668/2302/8861/3238/7476/59343/5362/6615/23242/6495/1947/51098/4242/2128/50937/3684/4825/64446/6928/6899/3236/27023/7471/653/26585/3955/3516/5626/5089/7046/8726/4760/2033/10716/3211/22856/10660/2622/1045/657/5681/8022/26146/56983/2016/54475/23509/9968/4010/7080/123872/1906/79728/3235/5986/10637/5075/4089/64853/4087/9573/7849/3224/7528/5090/26005/3226/51668/6497/23770/55764/55329/5663/23237/27019/80173/10159/6604/718/10818/92/204851/80055/55081/3207/54345/3206/650/5308/2736/55036/4618/29880/6781/3200/55130/659/2294/9839/429/9464/5916/63917/3670/80319/6045/8195/56998/6909/80199/9645/2648/4038/7403/8854/9935/4090/2260/54880/4824/7516/2022/5649/57669/64321/6911/23500/472/5076/56603/79176/6015/7703/4762/3218/6939/54903/2719/5991/6405/8481/1856/7026/79600/3280/2263/9620/90/2114/50805/8626/3199/54778/579/4086/80114/54806/5087/1499/3232/9371/7157/23314/2186/23493/4088/2735/1952/4920/4435/7474/4222/4300/64388/8646/23639/7482/444/5311/2246/3087/10252/4208/3212/8829/7048/8642/10370/51626/9742/6469/4681/57728/58495/585/7832/4488/10512/79659/138162/7704/5125/4487/658/2737/4223/1746/2697/6935/367/79971/6926/2018/652/4036/2066/3169
## GO:0008277 3576/333/6352/133/5341/29767/3925/5653/3351/2253/100/409/8601/5996/6004/2870/5149/6001/238/23173/28964/5578/2786/25818/1785/55737/23746/1814/1259/51196/22844/6855/9397/5145/23349/2986/2779/79823/5997/156/1113/1813/4842/9628/7275/7289/6011/4988/10419/6993/6754/23322/7529/5245/43847/2850/5148/54550/2147/4233/5999/11251/2931/5998/1906/2852/1609/2979/10988/9815/493/6010/6093/29978/2339/10267/116/718/5082/1258/2978/9475/8787/799/6900/4987/1759/636/55188/858/6002/55/2771/2696/23032/57406/10636/6295/23295/4836/5475/3000/11343/23236/9455/2788/6622/1407/154/5158/2869/2535/408/10268/7474/10868/9501/187/6003/5064/2868/8786/3357/9737/8490/10266/2922
## GO:0018393 1111/8607/51471/5447/10626/86/55689/9474/54107/11177/8089/80218/672/675/3054/10943/8202/29117/10856/8986/3662/6688/26155/1810/8193/10629/6877/4654/4842/26038/6418/54934/9329/7917/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/8295/10269/10891/55011/6598/10524/10474/9085/55274/79969/7040/2033/1386/50943/11143/8888/6881/8520/9767/10933/8464/4089/27097/55209/6872/8110/6871/51562/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/1487/23326/7291/10902/3976/3670/4204/6880/8850/151050/2648/57634/55167/8473/112869/7703/51230/4297/5187/79903/23411/6879/6622/26053/56848/5595/339287/79960/84148/408/23741/1387/8648/23522/322/9252/26036/23338/201163/6591/4674/4582/2625
## GO:0030811 9688/26330/54541/57103/9631/5223/5208/6396/5210/23165/55706/23636/5027/3692/3091/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/89/8086/405/9883/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5562/9611/9759/7157/957/5563/3643/8604/2203/2819/26137/3479
## GO:0061418 768/5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/7428/10213/23198/7422/5699/5714/6921/5702/9978/5708/5692/3091/5704/5683/5694/5718/5682/5716/5707/54583/5696/5719/5700/2056/5717/7311/10197/8453/5706/5710/4851/5689/5720/6233/7316/5701/9491/6923/5711/5715/3516/7314/9861/2033/5705/22933/4780/55662/8994/405/112399/64344/25994/571/7157/1387/1958/2034/10370
## GO:0071260 1111/4316/51311/1535/578/664/3659/838/6513/2805/8772/5743/4055/1956/3596/834/958/835/4878/8795/4615/5734/8740/4099/7099/943/3553/5781/654/841/5599/355/5879/8915/476/9020/9994/10746/207/7040/3759/7132/4790/8738/54407/183/572/1265/9750/22927/1605/1647/3673/51284/27063/7100/9531/7098/6662/2022/2729/5595/6416/9759/6548/1277/358/4214/477/7481/5138/2697
## GO:1901987 991/1062/10403/79733/9787/11065/22974/4751/983/4085/81620/2146/7272/9212/1111/9319/51514/6790/891/9928/3161/990/5347/701/51512/9700/898/10733/54801/6347/29980/1063/5111/5688/5709/26271/641/1869/6496/1029/5698/55159/5693/8317/7277/5713/9735/5721/2810/5691/1031/79915/995/5685/1019/637/5690/5684/5885/5686/5695/11200/10263/203068/7027/10213/7283/23198/8883/54908/4683/10383/3276/63967/5699/6659/5714/5702/7480/1030/9978/5708/5692/10393/7517/5704/1956/81853/672/55835/1981/8328/5683/22919/1820/9793/23019/1642/5591/5694/7321/55722/835/8454/5371/5889/5718/5682/79577/8091/5716/328/1032/25906/79959/8444/5707/60561/2765/29086/9125/23026/55559/29117/4957/4869/8379/3398/5017/5696/1017/7029/3741/1026/22809/25793/9702/6868/11331/11170/5719/5700/3320/581/199/84861/5717/27183/29883/60672/26057/7756/894/10197/51433/4342/7465/677/55795/4849/7023/4221/10385/56984/23354/5706/5962/131601/9183/5710/55125/55294/4193/10498/6118/5566/22976/10457/1874/1069/59343/5777/7564/7175/996/8451/5689/8766/9555/79184/5720/7015/10121/5701/9510/9491/11319/8636/7324/5518/23476/5711/5715/9662/8655/51499/11258/11190/51343/4848/11116/9184/9587/9861/207/7040/2033/29766/5705/22933/2071/10382/55367/9314/65992/22994/22897/80174/9525/23332/79621/1263/7531/351/1654/8738/5116/1453/6872/493/51451/51143/1021/9577/4850/6604/57472/5048/57165/8555/5728/79441/1778/8450/80321/51347/9337/5934/10540/22995/51720/1647/8881/989/56257/55755/5325/57060/4204/11064/55031/22981/55781/138151/8737/1454/8697/79447/472/5569/56155/5890/1112/9344/7846/4762/23236/8481/54623/5310/1639/8558/3550/8929/10106/5925/2068/5087/8945/80254/25959/7157/79960/26058/95681/9738/6500/51065/2735/29882/28984/55142/4303/3373/7508/3275/8452/1543/80184/1027/1028/596/79858/10217/1843/7840/80169/324/678/595/1781/10142/58190/9814/4194/54820/5311/80279/23194/29997/51339/25949/5108/3306/5577/7832/10769/2273/5988/56892/57551/51149/4582
## GO:0021537 597/259266/5080/2146/9355/9928/7804/6496/6715/4830/5194/9289/8941/2253/1749/1812/64211/284403/55079/664/6513/166614/4771/23287/1943/3251/1020/5992/7143/23028/4781/3014/8013/474/2048/63827/7852/5629/3091/1000/26047/5901/1956/81853/23657/4192/238/8891/55636/2618/2932/79648/63974/5455/3975/2049/836/7101/6091/3398/30837/6434/8851/22809/8828/1399/3362/55236/26050/83696/10371/22903/581/4900/1459/1813/2131/3799/6722/25777/6608/3065/6331/5915/4142/27185/5079/55118/552/471/2902/25987/23322/55558/3361/64919/6343/81565/50937/2044/317762/27023/23035/2316/79969/4760/1600/10716/3084/79143/23224/23380/2016/7080/1436/51199/27089/7531/57142/6497/54407/493/1021/572/5454/5663/5048/6506/8893/5728/4852/8482/387/1398/650/6259/23334/6900/26468/23353/56949/7515/9839/2258/429/8195/8650/2648/220/23135/5649/554/23236/5802/7054/6546/79600/3280/3624/4763/1499/9638/79048/8648/5914/306/3736/6299/7474/2145/4628/5021/7248/54820/3912/3400/9353/1902/8829/4747/358/6469/1281/585/55970/7832/79633/85458/6387/89927/4035/4915/2737/388677/1746/114327/2018/652/2066
## GO:0006970 366/362/8564/6870/706/6513/55144/5603/9076/7124/5743/551/1956/5971/9221/3326/836/23209/8291/231/23308/2547/8531/2056/2326/581/677/9990/3954/339/2185/5602/57468/9943/5020/59341/9181/7520/1386/5609/60676/310/5585/1263/1654/51562/572/9053/9819/624/79085/3673/5170/6652/10367/7098/6517/4638/7054/10725/80131/6326/7157/5269/6558/51719/825/6750/27347/5311/80303/1831/5243/358/3176/3778
## GO:0030808 5163/9688/26330/54541/136/57103/3208/9631/2023/5223/5208/6396/5210/23165/142/55706/23636/5027/5165/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/23279/79849/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/54704/5957/11277/4928/6901/7114/89/8086/405/2979/9883/6774/2103/2978/55022/51341/5903/348995/2981/4846/55746/863/4656/26471/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5563/5164/3643/54209/8604/2954/201163/5166/2203/2819/26137/3479
## GO:1903578 983/891/9688/6472/26330/54541/57103/9631/2023/5223/706/10059/5208/10105/6396/215/5210/23165/142/55706/23636/5027/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/29103/5571/11277/4928/6901/11315/7114/89/8086/405/9883/6774/2103/93974/55022/51341/387/5903/79085/348995/55746/863/4656/26471/23479/201626/538/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5563/3643/54209/8604/201163/2203/2819/26137/3479
## GO:0071219 3627/3576/6352/3934/445/79931/6347/8767/3055/6770/10859/11009/3654/1051/4067/8564/3148/2950/26228/10288/4064/1019/1234/7096/3383/3394/706/923/3929/4793/4360/57817/7128/1244/929/26191/5467/4282/7124/3569/7097/613/23097/5142/2213/1053/6376/9373/834/7133/958/5724/3297/5054/10221/5594/4792/5578/3593/140885/92140/79577/3592/10333/1432/2672/6714/64127/6372/7855/949/5970/80149/3606/10062/23643/9516/10892/7292/3586/7099/23641/3553/1604/654/51510/3146/1440/5599/4795/4843/7001/5976/8754/10891/968/8915/19/5144/207/7040/85363/22933/5581/259230/9450/383/11093/114548/58509/10594/7189/1437/22904/4790/148022/22900/10270/824/7538/79155/387/7431/2693/25/4986/27063/4846/11027/6915/9646/23729/7035/57379/59307/1910/54623/10014/29108/23328/5595/4057/8106/5914/7474/558/948/54209/4208/1511/7494/57088/1524
## GO:0051056 2305/9928/29127/1894/8437/57706/3925/4067/9289/867/9824/5880/2665/8997/54509/117178/23636/9938/2048/345/613/348/50861/23616/10125/2245/23092/1123/6654/5923/10617/117/10603/1785/51291/9267/5662/382/4914/51196/6714/6091/2885/391/23229/1399/393/154796/58504/84033/7077/50649/2056/55200/79109/55160/8878/1124/7410/23094/116984/55114/7409/3707/5962/7074/6993/27352/22821/4650/4851/998/3265/335/10928/396/9909/3845/9138/2889/27128/5879/10276/50937/55843/5516/54848/26230/4168/199731/79658/9181/1435/6014/148/4952/5296/19/23370/3717/3084/27/2664/4233/5881/5894/56882/23433/3688/10565/23526/3633/7984/79933/23380/55785/9826/10564/11214/9901/10982/23101/23096/221472/253980/7204/10672/4649/9266/8874/9754/395/23607/4853/8036/387/1398/9750/5922/8216/6655/4983/9448/9322/25/7126/85360/6494/10144/9927/8729/80243/9912/27237/50618/64411/116985/397/286205/29984/5909/26030/57148/55288/54922/8711/7249/6464/5649/10160/22899/8473/392/2909/10395/9459/8567/399/2150/23263/79822/89941/26053/83478/23108/23189/5921/2/9265/8859/4763/10211/94134/6453/25959/64787/408/26084/8660/398/115703/9922/29/394/8452/604/23221/84986/64283/54869/2149/23550/440073/3675/26037/9743/9162/9639/4803/23268/7042/57493/9649/9353/1902/9411/8829/253959/50650/201163/9855/23365/2057/1281/55701/9886/5863/4254/4653/5159/2203/388/51306/90627/9828/3479/55103/10451/23362
## GO:1990868 3627/6373/6352/10663/1230/11240/1237/1236/2296/10936/1234/2840/9034/7852/3091/1240/2833/5967/2829/729230/1232/23143/1233/6091/3579/80149/64783/643/2185/4352/9943/7737/3577/6366/2859/65125/10019/1906/7066/10803/387/9750/10519/4015/51554/1238/6558/27347/1843/54209/6586/2826/1235/9353/57007/6387/2532/1524
## GO:1990869 3627/6373/6352/10663/1230/11240/1237/1236/2296/10936/1234/2840/9034/7852/3091/1240/2833/5967/2829/729230/1232/23143/1233/6091/3579/80149/64783/643/2185/4352/9943/7737/3577/6366/2859/65125/10019/1906/7066/10803/387/9750/10519/4015/51554/1238/6558/27347/1843/54209/6586/2826/1235/9353/57007/6387/2532/1524
## GO:0016051 3613/5341/3973/50515/26330/10331/6576/2821/5226/7086/5449/5031/7167/5499/8708/2597/5230/2023/467/2539/5223/2525/6513/6888/5106/4190/2542/10993/6484/468/2805/54187/2641/9334/3906/10165/57001/5724/1950/1642/5771/3607/1468/117/7360/2932/79369/55501/2820/51744/2027/54928/5236/10678/2992/231/8445/8789/208/4191/229/81849/2997/5500/2131/8402/2132/4142/2185/226/2806/230/57223/10447/2683/2475/2645/5155/5465/2538/9348/5207/1213/5028/10891/23178/3630/3037/207/60343/7040/2033/3612/5260/2026/5091/2931/4923/5509/3269/2852/4790/10776/1609/51477/10296/140710/2103/3036/64377/6483/5903/5741/55454/4247/8908/2998/6652/9526/8850/51763/2648/283871/55790/57818/8473/55512/23411/5224/2632/6622/178/1407/1196/9486/5261/92579/8660/5164/5745/3643/3340/8604/2308/3953/5950/10580/2530/3952/8864/2203/2819/51363/5167/4485/3667/3479/114899/9370/5105/5507
## GO:0046939 5214/55526/9688/3101/26330/54541/4830/2821/57103/1841/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/51727/6521/23511/83440/226/51085/230/23279/2645/7175/5465/2987/4967/8802/5213/5207/4833/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/2026/3098/10201/89/669/8086/405/9883/203/6774/2103/51341/5903/348995/11284/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/29922/9759/7157/957/5563/3643/4832/2203/2819/26137/8382/3479/26289
## GO:0009185 5214/55526/9688/3101/26330/54541/2821/57103/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/204/23636/5027/3692/3091/3099/9414/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/4354/2027/5211/2646/5236/57122/272/5209/79023/9818/5313/229/8573/6521/23511/83440/226/51085/230/23279/2645/7175/1740/5465/2987/4967/5213/5207/51548/11319/23225/10891/53343/3630/8021/53371/1739/954/5571/11277/4928/2026/3098/89/669/8086/405/9883/203/6774/2103/572/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/9759/7157/957/9583/5563/79873/3643/8604/2203/2819/26137/3479/26289
## GO:2001056 6280/6279/3932/4609/8767/9447/5641/9705/54205/578/3329/9141/239/80758/10541/3965/4210/3336/7124/1509/8772/7415/7186/9131/834/356/3297/10018/1612/5366/5371/10134/7498/3428/885/1611/1512/55655/8795/6091/64065/400410/581/23151/7023/23787/27141/2534/56616/2902/5134/4838/3146/5978/841/2904/9966/51079/355/23786/9451/8915/4217/9994/3717/668/6188/55367/114548/1285/2852/27429/1654/8717/2903/22900/317/5023/572/112399/9026/3491/55081/79594/387/26355/842/27018/10392/8737/10017/4824/10395/9647/23411/51024/29108/6622/3092/10550/22861/408/4088/51065/8743/2149/1490/4804/26999/444/10016/4803/2934/5468/5988/2152/4137
## GO:0009749 1515/4821/6770/4830/2730/114/56943/1535/336/3383/80010/5208/4704/5127/6659/5467/2692/5165/3091/1080/8891/25874/26291/2626/8431/6597/5211/3170/9971/836/5428/2081/56652/6434/5019/3172/65985/5313/7351/3799/6722/2185/3745/4221/65220/51085/5798/1361/51052/93/7074/7447/3651/5566/2645/25828/3956/2850/5879/10891/2044/4825/177/55011/6928/9324/1967/2021/6598/5290/8890/10533/4760/7040/846/5581/5894/3156/5906/1285/51714/1946/8892/2852/4087/2901/9230/4976/572/79727/2822/8893/5728/285/387/2695/9448/8398/2998/4986/55937/23098/2696/6810/7776/2309/26056/2029/6934/7200/5076/1392/7054/6546/1215/2729/51024/7057/5532/5562/51092/5530/8609/408/10497/8660/5563/2752/1027/1958/22841/9024/1490/6844/5799/6717/9854/7048/5176/1581/54795/2281/50507/4023/10628/6720/7494/2621/1292/8938/4035/55638/2697/55107/26137/150/9370/5105
## GO:0034765 3627/6373/4283/4318/23630/81831/3755/6347/3768/4067/1535/56660/3458/1520/5336/11151/8645/51083/5031/3757/3737/779/1812/3753/3208/483/274/2539/8514/6375/10105/6329/3738/55151/3359/930/9456/9022/9474/5027/3765/2048/6262/4644/57214/5142/1536/26251/6376/3596/3786/23415/10021/786/1080/1908/2280/5724/610/88/3756/1612/55636/2257/5923/8811/6769/1785/729230/1394/3739/1814/4878/23204/10971/255057/7533/375346/9002/30820/40/9446/10368/8291/774/3741/2745/1729/1180/79400/9629/3792/208/6786/5997/11331/10063/623/3761/2056/27035/581/1813/4842/6334/3799/6327/5294/6331/6336/773/5621/2185/3745/5335/10089/79073/9472/3748/25932/6323/1192/4988/2534/3763/2902/50944/6271/3787/6569/9943/3762/9001/5566/54413/3785/1756/9948/3746/2475/56659/1181/5777/2904/1740/9312/1188/781/2332/784/3747/8911/10269/10891/785/9368/3744/54800/2631/1739/859/3766/2316/11261/9196/2859/57158/7341/1193/5144/207/2147/7040/23542/4544/3759/5581/1741/54207/6236/778/823/51297/5999/50488/11315/7114/1742/3773/28954/10369/11060/4923/967/7225/81/2852/3754/3770/7531/351/10312/6324/2903/57338/493/3779/1804/6640/183/30819/81033/5774/64924/2893/5663/8913/57165/5728/6328/8787/3064/6332/782/10345/9132/799/3758/2892/4987/3749/8398/25/8912/63892/288/5664/5170/3769/7291/4986/1815/27012/53405/3764/287/23479/3781/8737/538/10768/5649/9722/9992/3760/2040/65018/1392/3772/27075/3750/11280/6546/6335/9104/2890/7057/783/22871/6622/30845/7070/6588/27091/169522/3784/10681/56848/7881/154/777/2702/10550/6326/51719/825/8660/10268/845/6548/2915/2669/3736/27347/54997/7402/29098/7779/51185/482/2149/54209/10142/844/6844/187/79026/5311/4734/2259/4208/3790/3270/6717/3752/481/53373/4747/2281/5243/1393/55799/3306/7220/3751/2946/3778/8864/477/27092/2273/23327/857/775/23171/5350/55800/2697/2891/150/9254/5348/776/60598/5174
## GO:0048588 6790/9355/53335/8437/3897/51083/5459/10507/2539/3475/7473/6696/80128/57817/7422/1020/7143/7852/8904/348/23566/9373/4504/5967/23769/9362/2626/3984/1785/51393/2932/10038/51320/4878/6792/3326/5058/8936/7224/8851/8828/393/7414/5997/10371/84298/5361/4133/3320/1954/1002/10479/6722/6049/8153/2661/27185/4099/9472/3676/7074/8085/51330/54413/2475/11344/5465/55558/23242/8766/9699/1826/6456/51548/57154/9175/81565/2017/4825/8239/23191/4897/9798/148/859/23394/9150/668/2664/3688/5999/8826/186/2931/2016/1906/1946/51199/11214/351/7528/57142/23011/22999/1382/183/5048/1855/23105/79594/10013/8482/5458/10439/6259/659/25/127833/2335/10425/9839/2258/5916/5300/9423/50618/1630/57698/4916/10611/6662/1808/5802/6405/9706/5532/23499/23025/3611/26053/5071/6416/1499/4131/627/23767/6794/29882/22902/3275/55364/7474/5590/23111/2803/6586/26999/4692/9353/8829/7048/80208/8470/9037/9201/6387/23327/56920/2045/4035/6857/10631/214/3913/3479/51760/4137
## GO:0050777 4321/1493/56833/3559/10859/3575/4067/336/3162/11314/10225/25939/5788/9466/30009/2840/6375/64092/409/7128/3965/9111/6318/246/7124/79132/1378/613/5133/5692/2213/3135/5771/54542/11326/3134/3593/3558/5682/729230/3428/3805/23513/259/384/8832/5272/2896/6223/725/3635/684/2876/80149/10062/1813/29883/7292/11221/3586/11126/5987/1604/3718/7301/3598/10906/3133/2302/335/5777/3142/3630/722/284/60343/103/7040/51043/79004/634/11277/50943/383/58509/301/4889/5169/3566/8764/116/56940/4092/79594/1398/149041/2294/3958/79671/7376/9984/966/3440/3077/9173/3456/9655/5532/2/710/6778/29/100507436/604/11005/7042/10039/2241/5468/1281/90865/11213/7043
## GO:0043280 6280/6279/3932/4609/9705/54205/578/3329/9141/239/80758/10541/3965/3336/7124/1509/8772/7415/7186/9131/834/356/3297/10018/1612/5366/5371/10134/7498/885/1611/1512/55655/8795/6091/400410/581/23151/7023/23787/56616/5134/4838/3146/5978/841/9966/51079/355/23786/9451/8915/4217/9994/3717/668/6188/55367/114548/1285/2852/27429/1654/8717/22900/317/5023/572/112399/9026/3491/55081/79594/387/26355/842/27018/10392/8737/10017/4824/10395/9647/23411/51024/29108/6622/3092/10550/22861/408/4088/51065/8743/2149/1490/4804/10016/4803/2934/5468/5988/2152/4137
## GO:0016573 1111/8607/10626/86/55689/9474/54107/11177/8089/80218/672/675/3054/10943/8202/29117/10856/8986/3662/6688/26155/1810/8193/10629/6877/4654/4842/26038/6418/54934/9329/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/8295/10269/10891/55011/6598/10524/10474/9085/55274/7040/2033/1386/50943/11143/8888/6881/8520/9767/10933/8464/4089/27097/55209/6872/8110/6871/51562/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/1487/23326/7291/10902/3976/3670/4204/6880/8850/151050/2648/57634/55167/8473/112869/7703/51230/4297/5187/79903/23411/6879/6622/26053/56848/5595/339287/79960/84148/408/23741/1387/8648/23522/322/9252/26036/23338/201163/6591/4674/4582/2625
## GO:2001236 2537/3574/2730/3148/2950/3162/5499/637/5788/467/3383/81618/7128/6789/7124/29949/8772/4055/11124/7186/6376/672/4118/356/5054/7185/5366/5371/6422/2923/3552/8795/6714/6788/2243/2876/5970/2266/10197/8837/2534/3553/5062/51330/2668/841/4170/7015/355/5518/1540/7001/2017/10413/653/9181/3655/8996/8915/7046/64114/207/5519/5894/2244/80196/4000/51741/11315/10116/186/1437/5196/9821/2623/2852/27429/6672/8717/1613/183/5598/5979/10616/5728/3064/8682/23017/8692/57144/6498/3958/4846/2260/8737/6810/7857/10771/5607/1495/6934/598/55023/2729/90/29108/8567/7057/64798/3624/4763/3082/8743/596/3685/6478/1280/50486/1621/219699/8829/7078/6591/8406/857/658/367/3479/652
## GO:0002573 8544/4318/8792/7037/1230/4609/1236/10859/4830/1051/4067/3458/3930/29887/1880/2207/3600/1943/7422/5457/142/7124/7097/8772/4055/5469/1053/5971/9770/79705/7305/3059/10221/5771/2101/4495/5578/3593/3623/3428/11006/6422/1432/64806/2778/760/3662/6688/8563/3398/2124/920/1050/3635/10456/6363/55509/677/51208/325/5657/2194/5293/972/3665/3658/4627/7099/55294/3565/998/51176/2475/2739/841/8451/1440/5153/27102/975/171392/3605/9398/1435/3516/1969/6988/7040/634/3726/537/302/7189/6886/1437/22904/5196/2623/1436/351/10312/1021/10100/5663/81501/5048/3725/10766/4853/28962/5458/7030/2624/51561/3815/814/1385/8600/3976/56998/863/7098/22985/10538/9935/8737/6670/7071/9644/25979/2242/2719/23411/4286/2150/3624/9846/3204/5925/10401/4763/1499/4057/5295/3567/5914/4920/54997/8840/54209/10272/2488/4208/7048/9855/2353/5468/4254/10202/2200/9607/284266/9370/652/10234/2625
## GO:0061013 5688/5317/5709/1869/5698/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/5686/5695/10213/7534/8761/23198/5699/5714/1994/5393/5702/5708/5692/10492/5704/23404/56915/1981/5683/26986/9704/26135/23019/5694/5578/5718/23589/5682/5716/328/11044/5707/1432/6556/4869/5696/4615/7356/7514/9967/51441/5719/5700/8531/80149/9261/5717/7311/29883/10197/677/6418/1660/55795/339/399664/5706/11187/5710/9567/9238/7529/2668/2475/23367/54855/10236/11340/5689/2332/5720/23016/3183/79072/6233/8125/7316/5701/9491/10605/5976/5711/23112/56829/5715/3192/8021/3184/7314/9861/207/5705/8570/51013/8741/23435/25819/253943/51594/79675/6093/8241/5073/9698/9475/7538/7431/149041/9337/7432/10949/57060/23369/3842/201626/79066/5580/55802/90806/3315/10140/56339/26058/79048/678/6041/167227/22849/22894/79899/7832/79068/1153
## GO:0002690 6278/3627/10563/7941/3576/6352/1230/6351/1236/6354/5641/6375/3735/3929/5880/3965/3569/1240/3071/4192/1908/728/5054/63940/3570/57118/729230/3592/57402/719/811/708/1432/79647/8291/2358/6868/3579/6363/199/8740/2185/23604/6346/972/3146/9943/6366/59341/2660/5879/1435/65125/10488/158747/1906/9750/51561/102/7057/2150/5595/7424/2155/23075/27347/7474/5919/1907/2621/51157/5764/6387/7060/9547
## GO:0014068 6352/4067/867/10507/940/5467/7124/3059/56005/5747/6714/2688/10456/5008/3606/2056/23533/5291/5294/2321/2492/5293/2534/51384/5155/5777/1440/3630/4150/55615/284/5290/3717/2147/5156/2852/5154/183/847/3815/2549/2260/4916/6662/4824/5649/2268/23411/2065/2150/7337/8660/5295/7010/3082/3791/2322/2149/8678/6403/4734/219699/7042/2057/79899/5863/3952/4653/4908/5159/5364/4915/1634/3479/2066
## GO:0006403 55110/22948/9688/10212/56943/11260/10643/908/8607/10576/4600/7884/9631/10644/4116/6396/23165/55706/6427/9775/29107/23636/5901/7203/7263/4927/79902/3297/10574/55505/10762/9793/10575/8480/11097/26019/55308/2091/4686/3267/25909/9972/81929/55651/29118/1977/57122/9908/56648/29074/10856/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/57097/55916/81608/10128/23511/54680/677/11052/1660/9887/399664/10898/65109/29890/2733/22916/11338/23279/54715/6426/9444/7014/10921/10073/6429/10250/10694/59343/57187/7175/51362/2332/51637/10657/26097/23039/23225/5976/6432/55011/3192/8021/53371/84271/22794/64901/24148/4928/8888/8570/23299/80145/6421/79228/8086/545/26993/55135/7013/7528/9883/55421/23237/23180/5073/7538/5903/6209/348995/636/3178/9984/55746/23293/91746/55781/10482/8189/65110/6830/6431/472/6311/9295/29072/4641/9939/8658/51213/5394/55164/220988/51092/10211/6430/9877/8106/5813/9284/7248/3087/167227/7048/9961/3800/54847
## GO:0030010 10403/4085/5080/5347/29899/55612/1058/1236/9585/1794/6624/54908/23625/23616/2011/4478/2047/55083/4139/2932/79648/23513/9267/3834/3326/382/56288/5747/5058/1399/4133/3320/6363/64083/4342/7465/23094/1072/2185/5584/55968/4627/9183/6993/998/2302/7476/6366/10090/9368/9181/10193/284217/57787/2319/5908/10565/9826/23332/64398/6093/4649/5048/5754/889/9475/3064/387/1398/9750/4140/4983/23150/2294/81609/8729/2258/55755/4134/57698/137886/56603/55691/6939/4752/3280/5310/1639/54828/23189/9265/9638/4131/6794/23286/126353/22902/10253/7474/22841/9024/5590/54820/10252/2934/1003/6469/4926/83700/2625
## GO:0060359 890/445/116372/114/26/1789/6870/3351/3066/1812/1132/100/3359/1020/9456/1788/468/7852/8772/1133/5536/6001/5724/5594/2554/2551/2769/5582/1785/1814/1137/3326/836/1141/6531/3309/58530/8851/1729/1399/5309/2562/156/5970/199/1813/2185/2561/2806/4988/7074/2902/4193/6569/1816/2475/5020/1131/2775/2782/3747/2566/6869/3184/10533/5581/5999/159/3269/840/6529/2767/493/5520/1136/375790/9475/8682/8620/2731/25/2560/4986/1815/2771/5179/3356/1392/1268/23236/63826/2354/6609/9455/10014/839/6622/5071/2776/7337/5595/1129/5021/23284/3397/1393/3176/27092/6863/18
## GO:0019935 3627/6373/4283/333/57211/133/3973/136/114/2642/51083/4159/1812/8698/79924/8477/2692/4160/2641/2827/348/23432/4161/1672/4880/997/5578/8811/117/1394/153/113/4158/1814/4878/6344/2778/5732/796/5731/2770/2986/5997/266977/1113/4842/109/8844/2185/10900/9472/4988/6754/79849/5140/2740/1816/3358/5739/9699/3361/2782/3747/6343/2044/9368/6014/23394/6954/19/81285/5144/4544/4157/1979/2931/5196/2852/11214/1609/493/135/5598/51555/7253/10267/116/2978/799/2587/2695/4987/5741/7432/2981/2771/112/2983/11163/2696/23295/6662/10846/1392/4724/1910/115/9693/64784/7057/5141/3375/5139/107/2774/27445/108/10268/4882/7320/5745/5592/948/4887/196/4881/187/1902/10411/358/2691/10203/5138/11069/5350/5744/3357/7349/150/10266
## GO:0038127 4318/2537/5641/867/9542/23636/5329/5801/2886/7039/1956/8440/5795/9770/5149/356/1950/5594/6654/5771/5578/9148/1839/9125/51196/6714/2885/2069/134/55658/4145/8027/6868/55532/685/3320/29924/5335/58513/5284/64762/10254/5781/55294/9001/53358/998/89853/7429/6456/7879/5148/58533/3516/378/5290/1845/207/9146/7040/634/3084/8895/8826/27246/2852/5782/7251/2064/351/84619/57142/183/5774/5663/8874/9026/374/8065/25/5170/23624/79643/27131/2549/116985/10273/2060/6662/6464/2065/3672/5286/26469/9655/55614/11140/79628/3092/55914/5295/10253/819/64285/1796/9252/9185/10252/8527/5753/2241/1012/9961/2202/9052/4653/150/2066/10551
## GO:1901605 3620/29968/6999/26227/875/1503/445/10549/440/8833/65263/6472/6535/8564/2730/80150/8942/5471/5723/4953/23464/30001/6611/191/5831/4507/2673/4522/58478/10247/81034/1158/10993/1312/2805/56922/8985/2653/7915/570/23657/51268/1152/4357/5034/79814/2618/5351/790/5352/5832/9971/56474/54583/3172/3034/6507/5009/4143/4842/51074/4552/1738/4942/189/2806/5625/2744/56954/4524/1610/7299/8659/1743/501/4967/3242/1638/4843/55256/64577/2572/6470/6301/10841/5053/1428/383/11315/159/2356/54529/23569/1491/2639/1160/493/10400/2875/112399/2747/4594/22928/635/23498/5092/2731/58510/10955/10249/26275/4846/4204/3712/89874/1800/538/441024/38/23576/883/256987/4548/56267/63826/7054/3081/587/2729/420/9945/4482/27034/23409/5198/23564/55258/1373/2752/2571/549/2184/2746/3067/27232/2628/8604/3155/2954/4329/56605/80017/5860/50507/275/3176/64087/8528/443/23743/1036/6898/10157/51380/2593
## GO:0099643 23413/60482/136/8564/1138/6572/321/3351/1812/22895/10059/1020/8500/10675/5027/10755/1143/28964/1142/5582/2932/23513/1137/6809/1141/9381/91683/5579/6855/774/8447/5217/2914/8573/1813/8541/64130/55607/8497/9515/41/594855/8618/7476/27163/6865/2332/9699/6853/488/55327/6804/5028/23208/6616/5030/2572/6854/815/148/11255/5908/5906/26059/9783/3060/8867/2852/320/2901/5868/8775/22999/135/5023/6623/5663/1136/1855/27345/3749/1488/8499/9751/22930/8973/114088/5864/9378/5538/55288/1103/3356/1268/9379/783/22871/23025/6622/5071/107/4763/9581/6582/10497/27445/23396/9256/2571/23621/1129/7779/9627/9162/6843/6844/79772/9900/5799/8825/4208/8448/6812/93664/6571/8938/6857/776
## GO:0015849 8140/366/26279/8792/6536/59272/5320/7504/4948/6535/8564/55117/10257/6541/11254/117247/2058/9123/55144/6510/215/81034/1244/6573/6566/5467/4282/6850/9056/9356/8500/4794/5027/2180/348/551/10165/23657/28234/10755/79751/6555/2182/1468/2352/1374/10991/6520/885/5321/8647/9390/1814/23204/3933/9971/6556/1109/55238/134/6507/208/64849/5997/522/9057/6579/30814/6539/5660/94081/1813/8541/8402/10599/2348/8497/189/552/10478/57084/6256/9058/2806/80763/3553/2744/2168/6754/58526/5608/5020/1636/5465/6534/1645/65010/28965/6519/23539/2917/10861/54896/56301/4843/50487/6198/6533/6804/2170/6512/6616/206358/6511/9368/81579/3766/55089/207/846/2912/634/26266/5999/383/54716/186/57030/6540/4923/4889/1906/10630/9962/6529/320/6538/5565/54407/26503/23169/22999/1376/135/183/123/5663/11136/1497/5319/6545/1836/6506/7223/624/2350/11230/55032/9194/8398/22925/8600/8499/1815/1201/1579/22930/11000/9152/9016/89874/5864/788/11046/31/6554/81539/80765/6509/8501/51422/65012/6567/80131/10998/4779/7057/8714/6622/10499/5825/9611/4763/10550/10497/8660/5563/8648/6561/9256/27347/2181/948/5025/11001/6844/9900/27165/8604/64600/10559/159963/5468/6812/10560/5172/3952/8864/477/5244/6542/5205/23428/4915/32/6857/1811/54677/6505/18/2167/4036
## GO:0046942 8140/366/26279/8792/6536/59272/5320/7504/4948/6535/8564/55117/10257/6541/11254/117247/2058/9123/55144/6510/215/81034/1244/6573/6566/5467/4282/6850/9056/9356/8500/4794/5027/2180/348/551/10165/23657/28234/10755/79751/6555/2182/1468/2352/1374/10991/6520/885/5321/8647/9390/1814/23204/3933/9971/6556/1109/55238/134/6507/208/64849/5997/522/9057/6579/30814/6539/5660/94081/1813/8541/8402/10599/2348/8497/189/552/10478/57084/6256/9058/2806/80763/3553/2744/2168/6754/58526/5608/5020/1636/5465/6534/1645/65010/28965/6519/23539/2917/10861/54896/56301/4843/50487/6198/6533/6804/2170/6512/6616/206358/6511/9368/81579/3766/55089/207/846/2912/634/26266/5999/383/54716/186/57030/6540/4923/4889/1906/10630/9962/6529/320/6538/5565/54407/26503/23169/22999/1376/135/183/123/5663/11136/1497/5319/6545/1836/6506/7223/624/2350/11230/55032/9194/8398/22925/8600/8499/1815/1201/1579/22930/11000/9152/9016/89874/5864/788/11046/31/6554/81539/80765/6509/8501/51422/65012/6567/80131/10998/4779/7057/8714/6622/10499/5825/9611/4763/10550/10497/8660/5563/8648/6561/9256/27347/2181/948/5025/11001/6844/9900/27165/8604/64600/10559/159963/5468/6812/10560/5172/3952/8864/477/5244/6542/5205/23428/4915/32/6857/1811/54677/6505/18/2167/4036
## GO:0034333 23603/7422/2824/5795/79834/88/6422/5747/6714/3987/7414/11170/8394/2185/8861/3273/5879/2017/5796/26585/1845/8826/89/6281/3911/1946/23332/4323/87/1613/6093/56940/8874/204851/395/7205/6904/5728/4092/9475/2039/387/9448/25/3673/5170/9270/29984/57669/10395/9647/9344/7057/54828/23499/7070/6385/10420/1499/9748/4088/7010/23396/94/6548/3791/22998/9231/596/7248/10979/23122/8829/2042/10580/4653/10391/4035/54361/347/10266/1307
## GO:1901888 59272/23603/7422/865/2824/9076/7124/5795/79834/6422/5747/6714/3987/11170/4867/7855/5566/8861/1636/6615/2889/3273/5879/26585/1969/1845/5908/5906/8826/6281/1946/23332/4323/1613/6093/183/261734/56940/395/5728/9475/2039/387/9448/25/5583/9270/29984/57669/10395/9647/4641/7082/9693/7057/54828/23499/7070/6385/10211/9748/4088/7010/94/6548/3791/22998/100506658/7248/23122/8829/2042/6591/4653/857/4035/54361/3551/347/2697/7122/1307
## GO:2001169 9688/26330/54541/57103/9631/2023/5223/5208/6396/5210/23165/142/55706/23636/5027/3692/3091/7415/4927/79902/10762/8480/11097/9972/81929/2646/57122/5209/79023/9818/23511/51085/23279/2645/7175/5465/5207/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/6901/7114/89/8086/405/9883/6774/2103/55022/51341/5903/348995/55746/863/4656/26471/3356/8473/65018/51422/5562/56848/9611/9759/7157/957/5563/3643/54209/8604/201163/2203/2819/26137/3479
## GO:0043112 50852/3576/7037/59272/133/10859/5336/5641/3351/3066/3208/3689/2207/22943/409/7422/1020/6850/7124/83737/348/3091/1950/1175/8898/26291/1785/23513/8934/22853/1814/1211/10330/55681/2885/10802/4289/1173/156/3579/10062/1813/3065/10133/64854/3586/5770/43/1948/51100/157/51510/7436/4905/5045/3577/6386/5465/2332/928/6456/57154/6401/1213/975/6616/9463/54550/26585/859/284/8301/7040/634/3084/823/3688/1742/302/967/161/10564/1906/5868/9230/7430/29978/5663/23237/2339/10267/10013/6900/4983/163/3690/1759/30849/1815/8650/22937/116985/7405/55435/2060/22876/6311/125058/26119/4043/9779/2890/6622/30845/50632/1889/55614/9341/27065/54894/6642/54806/29116/10211/408/10268/819/3685/948/8678/3202/4734/26045/5468/57007/11031/2868/10203/2530/4908/857/4035/3357/9737/9863/6424/10266/9370
## GO:0030258 7941/3613/5194/10380/336/341/8435/8525/8708/8877/10449/239/79152/5447/6646/215/55289/1608/5467/6484/8013/54363/348/1133/2108/131/1551/8898/1374/55750/27349/1666/51102/1432/54928/64781/3635/208/10005/3636/3033/8776/5264/55343/51094/8394/1577/337/5305/8395/1892/10478/2168/79837/2475/116285/335/22979/5465/4534/23167/1606/9108/51/1607/9110/2170/2109/10891/55361/23600/8897/5828/5290/207/3612/1962/79602/3633/2583/8867/2639/9107/1891/1609/5297/51179/1376/183/8396/5728/3628/1632/3032/6483/56623/34/7291/9619/51763/3030/3712/6342/38/22876/26063/1576/23417/1268/2110/1558/51422/8526/55825/5562/200576/30/5825/56848/23409/9807/35/8660/5295/284541/23396/37/224/51447/1543/5191/3632/225/3931/80724/11001/9162/33/22908/66036/8527/1384/5468/5166/8310/55198/56898/3952/3295/8611/10455/32/8309/347/185/3667/54677/2053/9370
## GO:0045732 51514/6790/5347/1075/3458/79888/7336/7128/5702/7124/9978/348/11124/7415/5704/580/4478/7133/55741/1950/1642/10221/9532/10134/55212/55737/2932/5716/4898/8975/26263/5747/5886/140462/725/1050/8078/101/25807/3949/5700/9554/3320/6613/23640/3416/2185/29763/27185/5706/5962/26088/7917/3553/55743/55294/27352/11267/4193/4946/4905/5045/4287/22954/2332/51079/5701/51160/7879/57154/975/8754/64110/23163/722/51343/10193/6811/859/754/7341/10533/207/5705/22933/149628/4780/8312/65992/28951/114881/2931/9817/9709/1263/1453/6872/11236/4947/25976/7430/29978/5663/2822/55070/93974/25898/23192/5728/1855/8450/51136/4092/28952/3300/7432/55823/6449/1452/5601/863/26471/8554/10273/1454/6662/64321/9992/9695/2719/2729/9104/9655/5071/6642/29116/1601/1027/7474/54209/324/9810/51686/26234/4734/29997/79589/2308/51339/90865/6653/10769/5988/857/4035/1191/2697/150/4036
## GO:0031532 221692/5341/3055/5898/26228/8477/1020/27032/29780/7226/1525/4192/3059/5911/9535/54857/50848/5058/10456/4289/8394/2185/5770/4627/998/3265/1440/396/59341/2017/2316/7040/27/3645/9294/50488/5156/301/79778/1436/1613/7430/23607/4853/5754/2039/387/84168/8476/3815/25/8572/2549/116985/23043/397/2059/29984/7827/4916/6464/2242/54828/26053/2252/11132/7010/9024/1901/26037/8829/2934/9855/2241/10411/9578/4908/9723
## GO:2001252 9787/4751/81620/9212/891/9700/2237/22948/1789/908/10576/3009/5885/5588/4683/7422/23028/1786/22880/2641/1663/7203/672/10574/5594/10575/5371/7334/29117/10856/3720/8986/65057/8550/5514/3181/26272/5081/23137/55183/4361/79035/4842/10155/59335/3553/22823/22976/81626/10694/55124/7175/9555/2332/26097/51548/9733/3622/23476/10891/55011/3192/6598/5587/3184/94104/9869/8726/22938/7040/51043/7520/50943/11143/4000/5609/51750/6886/6421/545/26993/4089/7013/3981/55729/23558/55719/5073/10270/25865/23168/54904/55196/80349/1487/80351/11284/3976/3178/3670/4204/9646/2648/140609/8473/472/1025/65018/4297/23411/54623/25913/8658/546/25836/26053/10111/2067/56848/5925/57343/5595/1499/54737/7157/408/4602/8452/604/23272/9252/4216/8678/9810/79618/5252/6591/4926/6720/4674/4582/2625
## GO:0002479 6890/5688/5709/5698/5693/1535/5713/4688/5721/5691/5685/5690/5684/5686/5695/2210/10213/23198/4689/6891/5699/5714/5702/5708/5692/5704/1536/3135/5683/50489/5694/3134/1147/5718/5682/5716/811/2923/5707/3106/5696/3107/5719/5700/9554/3105/5717/10197/5706/8517/5710/6892/3133/5689/5720/5701/9491/5711/5715/8673/567/9861/5705/9341/2209/3685/948/8773/3693/3551
## GO:0031100 890/983/2146/6790/133/7298/5111/1051/336/5471/2950/3162/578/1019/3549/23175/3936/57817/5315/9076/8013/1956/570/5469/728/1460/5967/26019/8431/790/1026/7351/1459/7448/3586/5727/1361/471/6156/10419/3651/5245/335/3482/5207/10076/7471/7040/5906/2356/5774/285/3077/9104/5228/2155/4837/6430/2735/3082/306/2322/558/595/7048/5468/2621/6387/2737/7049
## GO:0034614 890/983/2146/4318/1894/3934/2643/5111/51765/1719/3066/51022/8877/664/7295/8807/5831/10280/5603/7128/10105/2395/8013/7124/3569/7226/1956/5536/7186/9131/1421/655/3297/4504/5594/10131/1147/140885/1785/328/1728/6714/1017/9283/695/5970/5660/2861/2176/2113/8837/3586/337/6647/5829/2168/4193/1545/5151/11235/5599/3747/10276/4353/7001/5796/2021/4217/3184/207/6188/4233/11277/9314/4780/383/5156/11315/10494/7225/4358/5074/5598/10645/3725/10013/59338/10935/1398/23334/23064/25/11179/4846/5601/2983/1800/8737/538/23135/2309/5076/65018/7703/55512/5580/55139/4548/23411/9104/5562/5595/6778/5164/10365/3082/4602/55364/558/8644/7168/948/4314/8678/5311/2308/2353/2241/10516/358/51314/7350/4313/51157/1471/388/57332/80310/4137
## GO:0006165 5214/55526/9688/3101/26330/54541/4830/2821/57103/1841/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/2027/5211/2646/5236/57122/5209/79023/9818/5313/229/51727/6521/23511/83440/226/51085/230/23279/2645/7175/5465/4967/8802/5213/5207/4833/51548/11319/23225/10891/3630/8021/53371/5571/11277/4928/2026/3098/10201/89/669/8086/405/9883/203/6774/2103/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/29922/9759/7157/957/5563/3643/4832/2203/2819/26137/8382/3479/26289
## GO:1903510 3161/9435/50515/10331/8372/3697/3600/9806/1464/1463/6484/10675/9334/63827/57214/2588/411/1950/176/79369/55501/54928/10678/5292/6482/8703/2720/23553/3553/9469/8704/2683/79586/5155/54480/3698/9348/8702/50859/64579/10090/1213/3037/284/11261/10057/207/7040/960/22856/23563/10402/4790/9331/23169/10894/8534/3036/3074/29940/6483/8692/55454/56548/8509/2990/3423/2799/11046/55790/3700/55512/11041/64131/3425/64132/23670/55576/3699/6548/3082/3373/3073/3340/79625/26035/4060/7358/5549/2247/80760/1462/51363/633/2331/1634/11081/4958/4969
## GO:0070372 8685/6278/2633/8792/65009/1230/5320/8767/8000/1236/4067/2950/9258/5031/2253/1880/1116/1411/5788/467/3383/3735/409/1652/3965/1445/26191/6504/4282/3061/6850/246/5604/7124/5801/2641/2048/348/1956/10125/6376/4504/728/5771/2651/2047/2264/5578/26291/2626/140885/5345/78986/10048/4914/6714/64127/920/2358/1399/11331/2243/55532/55885/2056/6363/2266/1813/51074/8837/2185/11221/10385/5770/2492/972/7099/64762/4988/3553/5781/7074/55294/10419/6754/673/4838/3146/10457/4851/3358/5245/3265/5155/5777/5151/6098/6366/59341/2889/51231/5028/57053/177/9368/54550/1739/148/284/1969/26281/1845/8661/7040/960/846/5908/634/2244/9314/537/3156/5609/27202/5906/5156/55801/4889/25778/7066/2852/1436/8074/2064/4089/351/2249/55584/5154/7430/4835/116/10818/27020/3725/5728/3491/25865/4853/8482/799/650/27330/10318/25/10519/2335/81848/2324/8600/9464/112464/3976/9270/10347/2771/5300/57447/10392/6237/10636/6464/3356/5322/2263/9693/29108/2150/57556/5595/408/7010/10268/10253/3791/5590/1843/2149/948/1490/54209/2261/55450/10252/8829/201163/23410/7078/2247/1848/50507/57007/2192/2621/5159/11117/2045/8817/4035/9590/7786/3357/1846/9370/652/2066
## GO:0072525 23475/29968/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/57103/8942/3418/7167/2584/2597/5230/9631/2023/5223/8566/5208/6396/5210/23165/5315/55706/23636/5027/3692/5743/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/55328/9972/9390/81929/2027/5211/2646/5236/57122/10135/5209/79023/9818/5313/229/6521/23511/83440/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/10891/3630/8021/53371/5571/11277/4928/2026/5740/3098/89/669/8086/405/9883/6774/2103/55163/51341/5903/23498/348995/54956/54981/55746/863/4656/27231/26471/3356/8473/55739/51422/5224/5562/9611/9759/4837/7157/957/55191/5563/3643/2203/2819/26137/3479
## GO:0032526 952/3294/339479/2707/4067/3066/7473/22943/10626/7480/6862/7525/4277/1032/1512/360/54929/11331/7477/7479/8324/2185/5727/7475/54834/6256/7472/654/8273/6096/11344/9536/5020/51079/3482/10413/4058/6899/19/22938/27/9314/22850/7584/27429/9227/5979/5754/23064/171023/1385/429/5916/4656/8854/4916/6662/472/5076/56603/54332/2263/3199/1196/6532/8322/8648/3371/5914/4602/54997/7474/3490/1843/11211/2042/5176/5753/1277/5950/5468/358/1592/3485/81029/3952/7075/6720/7481/5159/2697/5105
## GO:0030521 898/6943/409/8284/5901/672/6597/8896/8202/6422/8928/2288/3065/6049/4838/5245/1616/10891/9063/10524/2033/6047/11315/1655/55818/6872/26508/9612/10013/51341/387/8031/56937/51389/1022/8554/4824/2274/9604/23411/8289/9611/5925/7337/1499/1601/10521/8648/3275/23426/8204/55128/4246/8611/7041/367
## GO:0032233 5341/22843/4771/8477/6376/3984/5345/6422/5058/5217/55160/5829/2041/998/2475/9530/335/7016/7429/5879/6869/55604/2316/7046/7984/79933/6281/961/29109/9475/387/25/9270/22899/9647/10174/6385/23075/4088/28984/22998/7168/1490/7248/9639/3397/1902/8829/10411/50507/7481/4653/54361/7043/6863/51466
## GO:0071222 3627/3576/6352/3934/445/79931/6347/8767/3055/6770/10859/11009/3654/1051/4067/8564/3148/2950/26228/10288/4064/1019/1234/3383/3394/706/923/3929/4793/4360/57817/7128/1244/929/26191/5467/4282/7124/3569/7097/613/23097/5142/1053/6376/9373/834/7133/958/5724/3297/5054/10221/5594/4792/5578/3593/140885/92140/79577/3592/1432/2672/6714/64127/6372/949/5970/80149/3606/10062/23643/9516/10892/7292/3586/7099/23641/3553/1604/654/51510/3146/1440/5599/4795/4843/7001/5976/8754/10891/968/8915/19/5144/207/7040/85363/5581/259230/9450/383/11093/114548/58509/10594/7189/1437/22904/4790/148022/22900/10270/824/7538/79155/387/7431/2693/25/4986/27063/4846/11027/6915/9646/23729/7035/57379/59307/1910/54623/10014/29108/23328/5595/4057/8106/5914/7474/558/948/4208/1511/7494/57088/1524
## GO:1901136 9582/4321/4521/10855/3161/7378/200315/313/4860/80896/8372/5973/11332/1807/25939/51733/100/7374/191/4759/1464/215/3251/1463/10675/1890/63827/1118/57214/5142/60489/2588/55741/6996/27350/411/57733/176/200316/55577/51071/272/60495/2760/2592/4669/27115/4913/4668/5660/57115/79077/10825/2720/339/10930/23553/23583/26232/5151/55270/8930/5152/8993/5143/53343/3704/56999/978/11261/5144/7040/960/3094/2931/11253/4126/4968/10007/51816/5408/10894/283927/81792/27159/4245/3074/6382/375790/9672/8692/4907/55347/2990/3423/2799/57379/10846/38/55768/23417/6383/9695/5580/3425/2719/10724/2262/5141/56953/23670/6385/2581/1806/138050/9583/8654/55576/22875/79873/6548/2717/3373/3073/2517/2817/81602/8622/80267/4060/5549/2247/6448/5136/1471/3339/1462/5138/2819/23171/633/2239/2331/1634/11081/4958/4969
## GO:0006888 6712/1075/10525/10652/3638/29097/6396/7415/7039/2153/286/25839/10113/9217/10959/51693/22820/60561/54732/1522/26286/9276/56681/27095/5265/10342/6845/10802/23423/83696/9554/8858/829/6710/11316/2348/84516/1314/1780/8615/372/9183/1604/5861/6683/55014/23256/5537/29959/90411/4905/59349/10466/3998/10175/832/10121/64764/8655/3630/51128/81876/10945/55738/1315/11258/55291/10972/22870/26984/6811/378/2801/2147/2158/553115/81555/2159/9871/9570/51272/1783/7109/830/1453/11236/8775/51143/84364/11196/22872/10282/1778/9218/10540/6708/55860/374/288/9632/8729/10671/966/6711/9527/287/10427/79090/6399/2157/22818/60684/1639/51332/9919/2890/10484/2155/51112/64689/11070/53407/23243/8452/375056/2619/29098/5624/81562/65258/51164/22796/1781/2804/10016/91949/6709/57731/5627/64788/6653/1294/2621/51226
## GO:0051783 991/1062/10403/9787/11065/51203/10460/4751/4085/81620/3832/7272/9212/1111/9319/6790/891/990/5347/701/9700/4288/1063/26271/9585/9735/2253/8877/9088/995/1104/79866/5885/940/1761/54908/8260/23636/2827/7517/7039/4733/655/1908/1950/5119/64793/5810/811/25906/1814/3834/3552/9126/8379/2069/1618/23137/11331/685/84861/7756/4342/55795/55968/56984/9183/3553/10419/51510/79598/54998/5155/55124/7175/996/9555/56979/8243/25978/3630/3192/51343/9587/7040/22933/10201/9820/4041/9525/1906/57132/1613/51451/51143/10735/55719/8621/858/55755/3976/5300/26013/55781/5573/137886/8697/10274/472/55023/56155/55512/23363/4762/23236/8658/546/3550/4779/5925/5139/27243/25970/28984/7320/8452/1027/1028/3643/7474/23113/1843/324/8678/10040/4926/146691/4488/79884/5159/4487/54361/3479/652
## GO:0051101 55355/4751/5080/81620/9355/6664/4318/3001/1869/1054/4830/3458/2296/3148/3162/3066/7295/2072/5457/142/23028/4188/5329/8904/51042/1950/1460/4792/9421/8091/3428/1649/3662/65057/64771/5081/6612/6608/10155/7023/55294/2959/3651/3146/51176/28996/64324/5599/10269/171392/177/602/23383/7341/4760/3717/7040/2033/22933/8721/149628/9314/65992/6881/11315/7114/7189/201501/2623/6672/6872/6497/5663/51773/3725/23063/51341/5458/22927/3673/9464/7291/3976/3670/56998/84444/3280/8658/4317/25836/5071/5925/2068/1499/3005/23493/4803/23462/6717/5468/8864/4488/4487/3479/2625
## GO:0001933 2305/55872/5080/891/5347/2633/7453/7345/4609/8000/6317/1029/54541/4067/23603/2950/11314/2810/1031/578/10507/1411/5788/467/22943/22843/64092/409/1852/4771/7128/1445/26191/4690/1030/23636/5027/5801/2048/83737/348/54920/3301/5536/8440/54900/5795/9770/26973/79705/9021/1981/655/11171/10221/5591/5771/64793/8651/140885/3558/7498/5716/9535/1032/152559/6422/259/78986/1849/63904/5575/10048/57761/56288/836/4869/6690/1050/11072/1026/54431/25793/1399/5997/2873/623/55885/80149/581/1813/4142/5621/11221/7023/4221/11329/10385/5770/7099/64780/3486/5987/51085/3553/5062/5611/11137/2041/55924/4091/1756/2475/50855/5245/51654/3843/9113/5777/9555/7016/2675/51637/5528/2889/10114/51231/5518/10527/4298/1540/10891/57053/171392/4616/9368/199731/58533/1739/26585/55243/11116/4040/859/284/11261/5296/65125/5144/1845/207/8661/103/7040/22933/634/9314/3156/23530/28951/5999/11315/2764/10019/6895/26146/58509/5998/4041/54386/23435/5585/55870/2852/7251/4089/64853/1609/84619/55584/51562/23770/8841/135/7430/64754/5663/104/56940/5048/3725/5728/1855/55022/4092/5470/51347/2039/3642/624/27330/5515/8692/2122/1605/10318/1647/25/10519/25937/5576/81848/5170/7291/3976/23624/9270/79643/56937/5300/57447/8850/51763/25998/5573/1850/10636/4916/54922/10771/5859/7249/2022/22876/2218/5569/65018/9647/5580/79893/8613/5187/51422/23411/64081/7026/6609/9104/29108/9655/6879/2150/3611/6622/57556/7070/64798/5071/200734/2874/9611/3315/10106/5925/2776/4763/408/3476/7320/3082/10253/1027/1028/55364/54997/5590/1942/10217/1843/324/58190/55450/10464/80279/22863/3087/10252/57493/9353/2308/753/201163/23410/5753/51339/7078/79899/1848/9961/10614/2192/5577/116496/6653/9052/3480/4908/11213/11117/857/5783/23171/5167/1846/9370/2167/652/11122
## GO:0071466 890/1978/26227/445/200315/5111/1869/6770/6715/54541/114/26/1789/4176/2950/64757/779/6283/1557/3383/11200/5447/1244/55151/11335/2180/6262/1956/570/27284/1573/3297/874/6261/1551/3326/1728/1977/9446/80777/9049/3172/1544/2326/199/1562/8837/10728/7023/1577/8856/4988/2902/218/54576/1545/116285/5155/1645/2660/54490/10891/1555/1559/2052/10533/1565/7040/1727/54905/383/186/6263/405/670/64754/4835/13/8824/5446/8574/2327/2941/314/10249/842/10/6095/1572/4258/1800/23491/1576/56603/1571/6777/1392/1558/9101/10858/6546/5742/4025/5925/2328/9915/6799/1553/2908/7366/845/1543/1958/6776/29104/54996/196/1429/590/2308/6817/22977/5176/1393/358/1592/2948/2946/2944/6097/2690/5138/8639/1036/2947/2053/51380/9
## GO:1903050 27074/55872/6790/5347/1075/79016/7336/10213/51377/5702/7480/9978/348/7415/5704/55741/10755/1950/57805/10221/5371/5582/9532/10134/55212/2932/5716/8975/26263/3326/5747/5886/6599/1050/8078/2043/55432/2876/5700/1459/6613/23640/10197/51009/2185/27185/9097/9683/9349/5706/80011/51322/7917/55743/3093/55294/2768/4193/51035/5566/28996/9113/6386/4534/4287/55270/2332/6201/5701/29761/9491/57154/11146/64110/7471/51465/11011/859/7314/7341/207/5705/22933/149628/4780/8312/65992/28951/114881/11315/369/2931/7327/9817/9709/7874/1263/23376/1453/6872/11236/11345/29978/5663/55070/93974/25898/5728/1855/51136/4092/28952/10869/10956/3300/64844/6449/1452/5601/56893/5887/6135/6880/863/7110/3077/26471/8554/10273/23274/1454/9529/8473/9992/9695/65018/2729/5310/9104/4779/9655/4130/5071/7337/2295/8945/1601/23429/819/64285/9024/1942/2272/54209/9810/29997/210/6469/90865/10769/5988/857/1191
## GO:0031503 332/55110/9688/10212/56943/11260/3208/7884/9631/4116/6396/23165/117178/55706/6427/9775/29107/23636/5901/4927/79902/7305/10762/8480/11097/26019/55722/4686/55737/3267/23513/9972/81929/1814/3797/29118/1977/79989/2288/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/81608/23511/9887/7275/64854/10898/5602/65109/29890/2733/1948/8976/22916/11338/23279/6426/7014/1627/10921/4218/6429/10250/3265/57187/7175/1740/51362/83658/26097/51098/80852/8636/23225/6616/5976/11020/6432/57576/8655/3192/8021/53371/1739/84271/22794/4928/8888/5906/1742/26146/22994/80145/22920/22883/8417/6421/79228/8086/545/26993/7013/51668/9883/55764/23096/9903/7430/56899/23237/80173/27020/90410/4092/55081/22858/2693/5903/4983/163/28981/6209/3690/348995/54468/1605/102/23059/11127/5899/1815/9912/9984/55746/8650/9211/23293/3842/91746/55781/6103/10482/8189/138151/2060/5649/6830/6431/472/9321/9295/29072/9939/403/22871/50632/27065/3092/9371/56912/6430/9877/8106/5813/201134/5590/23426/7248/3087/64792/8100/51626/5108/9742/57728/6444/79659/55112/2239
## GO:0009308 3620/6999/262/5688/5709/5698/8564/7412/5693/5713/8942/4953/6870/5721/5691/1812/15/5685/3689/5690/5684/5686/5695/6611/10213/1644/23198/1244/3251/5699/5714/5702/1312/6723/5708/5692/5704/23657/27284/54498/5683/1119/5694/6303/79814/5718/5682/55737/5716/438/5707/1728/9971/1141/5696/6531/51582/10394/5719/5700/2861/5717/10197/5706/5710/4946/5689/27163/5153/5720/196743/501/5701/9491/6819/3684/5711/5715/3630/9861/5705/11315/2639/493/4947/1757/635/23498/1815/4204/1725/538/883/51573/6622/5071/23409/6799/1543/3350/3067/4929/51686/6817/3176/23446/8639/4128/7166/18/4129
## GO:0042593 5080/6770/4830/2730/114/4938/56943/28999/1535/2642/2171/2867/3383/80010/5127/6659/6566/2692/5165/3091/6755/1080/25825/5771/3607/25874/6927/51167/2264/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/3172/1050/65985/7351/3799/6722/51094/3745/4221/65220/5727/7425/51085/5798/1361/5781/7074/9515/7447/3651/8048/5566/5443/2645/6194/2538/59341/3956/2850/51548/5879/10891/2044/177/3630/55011/9324/2021/6598/859/5296/5290/4760/207/846/4544/5581/5894/3156/64710/5906/11315/79602/51714/1946/2844/2852/55777/2901/9230/6774/4976/572/79727/2822/1584/9448/8398/4986/51763/6814/3488/57818/6810/7776/6517/2309/26056/6934/5076/1392/1268/79058/23411/7054/1215/2729/51024/5532/5562/1407/51092/5530/8609/408/10497/8660/5563/5295/6794/5164/5547/283450/3643/22841/7466/9024/5836/8840/4804/1621/80024/9501/5799/221395/6717/2308/56605/9854/5176/1581/54795/3953/5950/2281/5468/5166/50507/55198/3952/7494/2621/8938/4035/55638/55107/26137/3667/9607/150/9370/5105/3169/1408/7021
## GO:0006644 57110/7941/26279/3613/4597/5320/5341/1236/80339/9388/10380/4067/336/341/5336/8525/3422/79888/55697/2171/9791/30968/2224/5359/27293/23175/9600/55151/930/5467/246/8813/8904/1133/7915/79887/9021/9373/887/1119/1460/9588/9362/8811/9468/8898/8651/56895/3417/55750/5444/3631/5321/79644/54928/8733/2784/9971/51365/5747/6305/54545/6714/56910/64127/27132/30837/377/3635/2358/29124/55326/5833/1622/3949/949/30814/3636/6363/1459/8776/23533/84720/5291/5130/7410/5294/5277/1071/2321/248/2055/8394/2185/116986/5335/9306/27329/660/43/5293/337/5305/8395/55500/4598/83394/9489/8818/9663/79837/93210/58488/9711/3358/64419/335/5155/22979/2627/6610/4534/23167/1606/6366/23659/9108/5337/50487/9110/2170/975/55361/10554/8503/8897/54979/55626/81579/22845/5587/4952/160851/51099/5296/5290/57171/10558/7040/10908/254531/3612/79947/10162/259230/9314/54344/79143/8895/51552/6901/5156/3633/8867/9517/9107/81537/7080/10390/1436/27315/56894/5408/29062/1609/51477/5330/8871/5868/8443/5298/5297/5154/5289/347735/10400/9487/2822/8396/5319/51227/5048/63874/3074/1040/51604/5728/2879/10026/824/3628/10555/80055/5288/9926/59338/3032/59339/56623/3815/8398/26751/8760/10955/30849/5338/1201/5281/4204/9651/51763/3030/9896/283871/57406/55224/3990/1103/10654/3356/22876/57664/472/1154/64850/5168/55512/256987/5322/5580/23236/2268/51573/5287/80235/5333/9091/114884/10423/23682/5286/6609/80230/8526/9655/200576/6622/56848/113791/9453/9807/54872/11145/1120/56994/23259/5295/7010/23396/51447/9488/79153/129642/5920/2322/2181/81490/55650/3632/65258/23556/5283/3931/171586/2261/22908/51205/114882/8605/57515/22863/221395/66036/64600/2247/8835/4023/5159/23446/2819/5783/23171/8821/3357/3667/27124/10451/80736
## GO:0070098 3627/6373/6352/10663/1230/11240/1237/1236/2296/10936/1234/2840/9034/7852/3091/1240/2833/2829/729230/1232/1233/6091/3579/64783/643/2185/4352/9943/7737/3577/6366/2859/65125/10019/1906/7066/10803/10519/51554/1238/27347/54209/6586/2826/1235/9353/57007/6387/2532/1524
## GO:0051260 6999/2633/1894/5888/7083/3934/3755/5551/2643/3768/79734/917/6472/641/362/919/915/114/6247/5471/440193/10562/3162/79139/974/3737/1807/25939/5024/637/51733/916/2207/55856/3028/10059/10280/54442/6510/8989/5315/3251/3276/3738/1994/8115/9076/4282/9356/79187/1410/348/23210/10938/7226/7415/7186/7915/8192/10721/26251/3135/8739/3297/1365/5967/6261/88/10018/7052/9641/1374/735/55737/5830/3739/1666/3834/56302/9908/973/6714/56652/58530/3741/9818/359/9033/9702/7408/5009/4143/3710/581/1366/9361/79077/4082/51074/361/5621/241/3416/3954/3745/226/8001/3748/51129/6256/6683/3508/2744/41/57192/3787/2683/6569/9885/3746/9312/1677/1645/3747/2521/23208/9043/55006/54793/23373/56341/9451/3744/53371/79792/8915/6767/25776/4284/978/1409/6470/27348/2801/22953/30844/3759/6881/5893/383/25814/79047/1491/23023/114897/6263/1783/2741/27429/10600/3754/4089/6529/4355/79054/6497/6580/10015/9127/1861/317/29082/81858/5023/64375/253980/23237/93974/3299/6506/6847/8780/9750/847/5195/5414/3749/5092/222663/7126/8600/55/5066/9211/27012/54974/10367/55054/309/8854/138151/8737/220/22890/31/51181/38/2040/55512/3750/63826/80741/56947/51332/51024/64784/29108/22871/7158/8626/30845/80740/169522/3375/27243/6532/10211/7157/23510/2703/2752/2878/8799/3736/3615/7450/51185/5025/27232/324/1429/115207/33/5311/1809/3790/3752/54795/8527/210/55198/3751/638/84869/51133/11117/857/2203/23627/1191/32/5350/6857/81035/51466/6505/9370/79689
## GO:0032092 4318/8767/79139/119/9618/6789/1020/2641/348/5901/7186/2280/22919/3297/2932/3326/382/57761/6788/2043/2035/4931/51068/25805/7448/4221/7074/28996/1636/1440/54552/7015/4242/5516/22924/567/3955/2033/23228/11315/267/302/9709/5986/351/6872/64400/148022/5663/9026/650/5515/4140/6708/3200/25/3958/5899/5300/6135/3077/23032/57669/6934/23129/5310/9693/5071/118/10211/627/408/7474/51185/5334/65981/4208/8829/51339/10769/857/4035/10418/652
## GO:0045621 3559/8767/3574/3575/4860/864/3458/942/8876/10288/5788/100/3600/3549/939/3965/9308/865/6850/10125/3071/3135/8808/4192/54440/3593/8651/3558/9760/3592/11006/3635/695/101/941/3606/6363/10892/7292/55795/11221/10385/972/7535/3707/3565/9092/9840/8943/1540/3142/7040/51043/50943/114548/301/4323/572/2323/3566/3594/387/2736/51561/5896/22890/8546/57178/6777/9655/1960/5914/4602/604/558/5590/4179/7048/6469/7494/2621/7704/2737/2625
## GO:0048285 55143/991/9493/1062/4605/10403/7153/23397/259266/9787/11065/51203/22974/10460/4751/27338/4085/81930/81620/3832/7272/64151/9212/1111/9319/9055/3833/6790/891/24137/9928/1164/11004/4603/990/5347/29127/701/11130/10615/79075/9700/4288/2175/91646/994/9918/1063/26271/64180/9650/9585/9735/23310/2253/8877/9088/995/10051/79703/1104/79866/83990/5885/664/11200/940/1761/10059/84722/54908/10592/8260/55706/23212/23636/54514/3619/10096/2827/7517/7039/5901/4733/7273/80218/116138/655/1908/3297/1950/675/5119/64793/5810/5889/55737/11044/811/25906/29781/81929/1814/3834/3552/9126/54471/10097/80179/56159/29893/201254/3835/8379/11144/56647/3837/3796/2069/1618/57820/10005/23137/11331/10734/5719/4361/685/84861/49856/27183/1723/10300/7756/4342/23626/55795/55968/79998/56984/79003/23244/9183/7917/54708/3553/55125/51547/6683/10419/29947/51510/79598/8900/54998/5155/55124/7175/996/8766/9555/56979/6795/8243/25978/1352/5518/3622/10891/9985/55844/9897/3630/3192/23383/51343/9184/9587/2316/91137/7314/2801/9150/7040/11022/22933/23172/5892/64423/10201/9820/4041/9525/8086/1906/23332/10600/26993/7013/91782/57132/1613/29082/51451/51143/4976/10735/6152/56154/55719/10270/79594/152185/387/6773/8621/6847/23353/27030/29988/858/642636/55755/3976/4292/79643/5300/26013/2059/55781/5573/137886/8697/192670/10274/472/56603/55023/65018/56155/5890/55512/23363/4762/23236/54332/56947/8658/546/51024/3550/4779/25836/23304/5071/5824/10111/10388/5925/5139/27243/9371/25970/23259/28984/7320/126353/8799/3791/8452/1027/1028/3643/7474/23113/23047/1843/676/324/10609/8678/10040/65084/10464/9639/23122/9665/100130958/3306/4926/23126/146691/4488/79884/5159/4487/54361/8800/643376/1634/3479/652/4137
## GO:0070252 23630/1824/7111/7136/3757/8557/3753/58/4626/9631/274/4624/4606/6262/5142/7273/88/2257/2626/7135/3741/134/6327/6331/7170/7137/7140/6323/7171/4635/3762/1756/4703/1674/140465/781/4634/7429/7125/4625/1739/476/859/2316/7341/5318/5144/3759/89/4633/1829/4632/10630/7134/6324/4621/4607/6640/6093/8913/3728/7431/10052/6781/4637/3764/57698/287/1832/3781/70/9722/57669/9992/3760/7169/783/4604/7139/3784/2702/2013/7138/6548/29119/7168/6717/3752/54795/55742/477/6444/23327/857/775/23171/5350/55800/2697/776/23704
## GO:2001234 4102/4318/2537/8326/3574/2730/3148/2950/3162/79915/8876/292/10449/637/2023/3383/10525/409/7128/10105/23028/4282/2395/7124/29949/5329/8772/5743/3091/551/3301/7186/6376/672/356/2907/57805/5054/10131/10625/7417/2626/5716/1032/80237/54929/3552/8795/6714/4841/26155/4722/2243/2876/8531/5970/2056/581/2266/1459/51025/3065/10197/8837/2773/5770/972/2534/3553/4193/3651/2668/841/4170/6615/22954/51079/7015/355/54978/79886/3622/7001/2017/3630/10413/4150/51499/55011/28978/653/9181/3655/8996/754/7046/64114/207/10488/960/23542/5894/2244/80196/4780/4000/11315/8725/1491/54475/1437/9709/5196/9821/2623/27429/1654/8717/4976/5598/7009/5663/54700/3064/8682/23017/624/64844/7178/57144/25994/3958/4846/2771/6880/55031/8737/9529/7857/10771/5859/5607/1495/6934/598/55023/65018/7703/23411/4335/2729/90/7057/5071/3315/5925/1499/627/3082/90993/7466/51616/8743/596/3685/6478/1280/4929/219699/8829/6591/57007/7494/6387/1191/54361/367/4582/3479/652/1524
## GO:0030111 259266/6663/1001/55612/8326/1482/5688/5709/6496/5698/5693/79412/5713/5721/5691/5499/1749/8607/5685/8549/5690/5684/5686/5695/7473/22943/10213/7088/23198/2254/865/56033/6789/5699/6659/5714/4188/5702/7480/9978/7097/5708/5692/348/1000/7415/5704/1956/8796/23240/79705/54994/4192/5683/2300/1950/57805/25928/5694/5718/5682/79577/55737/2932/6597/5716/6422/1649/5707/1432/10297/64750/55681/6714/10856/5696/6788/1857/8323/5719/5700/10042/5717/3065/10197/9679/25805/8324/2348/51704/2010/27185/5706/3484/5710/7074/25987/3090/10146/51176/8629/59349/9113/59343/8724/4772/5689/5720/6657/7015/10076/2889/5701/9491/5518/1540/5711/527/5715/2887/10413/331/6928/9368/23072/26585/3516/25776/4040/9861/65125/6907/5705/8932/23399/50943/8312/51741/1896/2931/54475/23213/57680/83439/8994/4790/351/4163/1654/1453/1613/6497/5494/27130/5663/261734/6425/10159/55182/1855/51701/90410/5754/3728/79718/650/5515/29969/55366/25/25937/27121/9839/80351/51366/1452/3670/80319/5300/80199/55031/4038/5800/10927/1454/6662/64321/2309/23500/6934/8613/81847/406/54903/2719/9101/1856/8658/5218/2263/23499/3611/8434/5071/23189/8321/2776/80114/54894/166/1499/8945/1601/79960/4776/4088/22881/6794/5204/2735/7320/10023/8452/4920/4435/1958/6299/7474/4300/6478/8840/27303/11197/9736/324/3675/7089/25960/27122/3087/65981/8418/2308/54795/1277/51339/6591/6469/3485/9037/81029/3489/85458/1501/2099/7481/857/4035/2737/2487/63923/27123/3487/79971/6424
## GO:0043487 5688/5709/1869/5698/4904/5693/5713/10643/54512/5721/5691/5685/10644/5690/5684/5686/5695/10213/7534/8761/23198/5699/5714/1994/5393/5702/5708/5692/10492/5704/23404/56915/1981/5683/7133/26986/26135/5694/5578/5718/23589/5682/5716/328/11044/5707/1432/6556/4869/5696/4615/7356/7514/9967/51441/5719/5700/8531/80149/9261/5717/7311/10197/677/6418/1660/55795/339/399664/5706/5710/9238/7529/2668/2475/23367/54855/10236/11340/5689/2332/5720/23016/3183/79072/6233/8125/7316/5701/9491/10605/5976/5711/5715/3192/8021/3184/7314/9861/207/5705/8570/51013/8741/23435/25819/253943/79675/6093/8241/5073/9698/9475/7538/7431/149041/7432/1797/10949/57060/23369/3842/201626/79066/5580/55802/90806/3315/56339/26058/678/6041/167227/22849/22894/79068/1153
## GO:0043200 53335/445/440/5111/1051/4067/2730/1535/2950/3208/3383/58528/1788/1786/7124/1956/1536/9131/3297/8651/26291/1147/9148/2742/836/57707/5970/84861/1723/1072/2937/2534/2902/1282/3651/4524/2475/3843/6495/10542/28956/10891/64121/9804/3184/383/10670/5156/2741/1906/23376/26012/10458/5289/64506/4976/572/10400/7009/6506/824/387/2695/1385/538/598/2729/23304/8649/51520/2155/1373/1291/10325/6750/1027/1490/22849/1278/1277/210/1281/1290/4313/56034/23677/7494/5764/4915/1036/6935/80310/1307/5105
## GO:0034620 3576/440/6347/79139/3068/30001/578/10130/10897/467/10525/10954/2673/4690/468/1663/58477/7415/8440/116138/10987/3297/5610/56005/5771/10018/10113/9217/26291/9114/811/1649/7184/6745/11015/3309/2081/55432/1965/51768/581/9797/26608/6734/10133/51009/5770/3484/2134/5611/22926/1388/5526/64764/1616/439/55738/9451/23645/2033/10488/4189/4780/4000/9570/267/55161/9820/1491/2931/51283/9709/55033/8720/11153/7009/27230/22872/7094/7709/2135/51360/1200/30827/2137/54956/55062/9531/10273/135138/6464/9695/1639/5071/10106/118/5295/37/90993/7466/595/80279/7494/26353/64061/8614/10551
## GO:0042698 4316/5111/5806/409/1956/3814/4192/835/836/6714/3309/2069/2113/2661/2492/4988/5798/7301/5608/2660/9510/2796/3037/23394/4808/8879/5156/4889/9612/3036/59338/4987/4327/2560/4986/4846/5066/56729/2309/6777/23411/2516/3624/408/8322/268/8648/1958/558/6586/8204/5021/7042/9353/5176/2620/3952/2099/5764/7079/174/658/7043/5241
## GO:1902652 1717/4597/6319/6713/29881/6770/51302/341/8435/3422/3930/9420/1594/2224/10449/10682/2539/50814/5447/3638/6646/39/5467/79071/348/5901/1080/4504/3157/2230/8431/5444/1056/2784/9971/6721/1593/6307/3837/1050/120227/8542/10948/3949/949/10577/54982/4800/1071/2055/2194/23780/27329/337/6718/6647/6256/4598/3565/4802/7436/335/9784/2222/47/1583/4047/19/1727/10613/3156/7555/8578/8720/351/6820/1609/4864/3069/847/51360/9619/22937/4801/2260/319/338/3990/31/10654/1576/6667/8029/10858/51141/26119/6609/4779/5562/7108/11160/9453/1718/5563/37/51478/55911/3931/33/114876/2246/2232/6309/1581/3953/64788/3952/6653/51474/6720/3991/32/23541/2053/3158
## GO:0055123 891/6664/3576/4821/6663/445/639/7298/6943/57103/2304/56913/100/3549/2254/6522/7124/5697/3091/688/1956/887/2300/10736/5967/2626/55212/6422/2049/7547/60529/3398/3239/1026/1399/64220/5009/1954/6608/5915/51208/3274/93/4838/3651/2627/3691/23242/6343/3142/6928/3655/1600/7040/6932/1045/5156/57680/123872/4087/286451/5979/6425/9026/4852/2736/55036/2695/55366/3815/2294/429/6909/8854/9139/60485/6293/57669/64321/6474/1910/3280/2263/5310/8626/25836/579/5925/54806/1499/2295/1373/4088/2735/1543/1028/6299/3643/7474/596/3202/5021/7042/5919/7048/8642/51339/6469/1281/57728/58495/79633/56034/7494/7481/5125/25803/2737/7043/79971/652/10551
## GO:0050773 991/2146/53335/7804/54149/3066/10507/10059/8997/1020/348/84079/655/238/50674/57118/5911/3558/4139/2932/9856/5597/9148/6792/7533/382/10097/1141/7101/11178/50807/7224/8851/1399/2043/6845/84298/9762/1072/3196/55607/27185/4076/7074/2902/50944/10498/54413/1627/2475/7436/23242/23316/2332/5063/56965/3706/23373/23191/653/1523/8536/577/8826/9820/7225/816/26012/23011/10458/4976/5663/23237/54664/1136/5048/5728/23105/387/1398/23613/102/11141/23271/10152/1630/23098/23043/10611/5649/6383/5789/23363/5802/26052/9693/22871/3611/7337/5530/6453/4776/64689/115703/6794/29882/9231/1942/26037/80823/4734/65981/3397/4208/22849/1902/64284/10769/5764
## GO:0042594 1978/1515/1824/7378/440/133/6751/55630/6715/51765/26/2642/867/467/6513/58528/57817/158/468/1312/4141/9681/3920/6753/5610/5594/3607/5366/10991/3428/790/1611/6422/81929/1649/26263/6721/3309/5019/1026/65985/80149/1965/7351/4654/1723/26608/51100/10985/56270/26100/2475/8493/23367/10634/79726/5599/5207/355/81631/10514/27102/8735/10891/9463/64121/9451/8897/55626/4217/5587/8428/29103/10533/4780/10670/10919/54407/8443/54474/4149/5289/11133/8131/116/3725/7538/23334/2695/79567/54468/659/11152/25994/30849/7486/3178/5899/55062/23378/3077/23032/23274/7071/8408/38/2309/5287/23411/9706/9779/5562/51520/5595/7157/1373/5563/55846/2752/440738/6752/10325/55364/596/8644/8678/7482/22863/3155/2308/10641/5468/5166/11167/93664/3625/6720/7494/2621/27244/54361/213/9607/57535/5105
## GO:0006283 5984/5111/5435/5982/5424/2072/5983/5440/9978/5425/5433/6119/10987/1642/10450/3978/5985/5437/8533/5439/10714/2873/5431/6117/2968/7311/5436/3150/3980/6118/6917/27339/5438/5432/8451/10980/6233/7316/2074/7314/2033/2071/50813/64708/5434/7874/1161/51138/9318/4331/8450/2965/56949/7515/2073/10920/1022/404672/5981/5430/902/2967/5441/2067/2068/9716/57804/7507
## GO:0048771 952/8792/7037/8200/3574/2296/29887/3351/2253/578/54849/3600/3549/5880/1464/7128/1943/1445/6850/9474/4160/5027/3569/9545/613/3091/1956/9770/79705/4192/7052/55636/5578/3593/3558/729230/6422/3552/760/6714/796/3635/5340/101/3606/581/51208/2185/7421/93/2303/4193/3146/10457/51384/1636/1999/23154/3273/5879/10461/171392/177/8996/26585/3516/1969/64114/9842/51430/7040/634/59067/3988/537/823/383/186/301/7189/4323/1436/10312/6093/183/81501/4853/9475/51561/55366/1200/3200/3690/5741/659/7076/2324/8600/9464/3976/4846/3488/538/4286/3375/154/5530/2702/4763/1499/7157/94/29/5745/182/558/1901/2034/2149/1621/10609/2488/4208/6694/3953/5166/50507/3952/1513/5764/1471/857/10512/53832/633/2697/7043/4982/9607/7060/7166/284266
## GO:1902905 5341/3055/1236/11151/274/57180/3383/22843/84722/4771/8477/4690/246/79709/10095/10096/5629/7454/348/4733/8440/5216/3071/6376/22919/6356/88/1496/3984/5345/6422/382/10097/5058/8936/10092/2885/402/8851/5217/7408/57175/2876/10109/10094/55160/10300/1072/2185/79998/9873/10093/5987/8976/6683/5829/10178/2041/998/2475/9530/335/1440/7016/6366/59341/7429/5879/2017/27302/6869/9463/10787/23191/55604/1739/55243/859/2316/7046/6188/4233/5581/7984/79933/6281/6369/961/1906/23332/29109/51199/351/5663/9026/9475/387/4868/25/6249/10152/55755/9270/4204/55435/22899/9647/2242/11034/91807/4641/1639/29108/10435/10174/2150/6385/5925/4131/23075/4088/28984/22998/1027/7168/1490/10142/7248/9639/3397/11075/1902/8829/2934/2241/10411/50507/89795/54551/4926/9037/85477/7481/23116/4653/1191/54361/10788/7043/6863/51466/25802/4137
## GO:0046660 2175/6715/1051/8372/2296/578/3383/5806/409/2189/7422/7490/675/1588/55636/835/9468/117/3623/3417/6422/3975/9757/836/57122/6714/11144/3309/2069/64220/10184/581/23626/2661/269/2492/6647/7425/5798/7301/5245/9510/10461/2796/3955/9210/7314/8890/668/8879/5156/8892/4323/4089/91/25976/116/8893/59338/3815/4327/4846/26471/56729/1495/2309/472/6777/598/23411/8626/2516/3624/7337/408/8322/268/3643/7474/558/596/6586/8204/84159/9353/283/5950/2620/3952/3625/4254/2099/174/658/23414/54361/6926/1602/4036/5241
## GO:0043687 10232/51514/79075/8139/6502/1356/5688/5709/219595/5698/1122/5693/336/5713/5721/79016/5691/54972/10130/5685/5690/5684/813/5686/5695/7428/10213/6696/23198/8883/23287/5699/899/5714/6921/5702/9474/9978/3569/5708/5692/348/3091/1000/3053/5704/2153/9021/10987/51088/5683/55336/5034/1642/29106/5694/10489/265/7347/4240/8454/5954/5718/5682/5876/4052/80067/56955/5716/10970/26263/5707/7184/5931/2346/5696/140462/80204/8533/7018/5265/64410/8542/462/25793/26272/2243/2873/5719/4738/140460/5700/10238/55832/1758/2266/84861/5717/144699/10197/8453/11320/9040/4221/9306/4241/5875/5706/51156/3484/7425/3486/5862/55884/5710/5861/5611/55294/26100/4218/79672/26232/140459/335/54165/8451/3698/5689/10980/8766/5720/26043/3956/150726/5701/9491/51666/5929/6923/5711/26235/5715/51725/81876/5589/80176/258/1435/80344/55175/9210/23463/9861/55827/5705/50813/197/64708/10116/9616/9820/80028/9817/8720/8074/351/1161/51138/1121/5868/9230/51451/9903/63894/2822/334/9318/718/51665/9039/3491/8450/28952/54876/64175/54850/8065/23014/64344/102/26190/2335/7076/4924/1114/10920/27252/5872/5864/23038/3488/55958/64856/338/10618/25879/7857/3895/23291/5179/53339/1154/79176/6383/3827/4008/23363/2719/140461/23682/64122/9655/57104/3915/56929/26268/26118/5768/1643/8945/6500/8073/50717/56995/3371/8452/375056/23113/7466/90864/5624/3490/2034/6468/26094/79754/10272/26234/26249/23194/3912/3270/6694/51280/201163/9836/11275/285231/8835/79269/11167/10324/91851/2621/1471/1462/7704/174/213/11098/54587/3913/3487/8404/2200/652/4148/8614
## GO:0019233 10874/6347/7345/2171/3737/5024/409/8989/1020/1312/5027/7852/2906/5743/5724/5594/2047/3593/729230/885/1137/4914/1141/152/134/23349/2063/623/2911/6336/3586/59335/6323/80763/4988/2534/2902/1269/85446/2475/5020/1740/784/5028/6869/4157/10893/4923/1906/59344/2903/116/2695/4987/8620/3673/55/4986/4204/56925/3231/5179/3356/11343/1268/3218/11280/1910/6335/4985/3375/5595/6548/23621/3736/2149/5025/4887/54463/4692/4311/3751/55273/4856/6387/55800/4886/58503/55107/6863
## GO:0052548 6280/6279/27074/332/9232/4102/4318/7980/3932/2537/4609/8767/1475/330/6590/6317/9447/5698/4067/5266/5973/5641/9705/11047/2810/54205/578/3329/9141/8530/2597/5271/274/5684/239/3697/10213/5447/409/1469/1944/9806/1476/80758/10541/939/3965/51377/4210/7422/6406/3336/27344/7124/1509/5329/1378/1410/8772/5743/551/7415/7186/25816/9131/834/27290/356/3297/4504/5054/10049/10018/1612/5366/5371/10134/7498/3428/885/4898/1032/1611/1512/259/23204/10816/3933/55655/8795/6714/26998/6690/5272/6091/5696/6197/64065/2043/5275/684/2876/65264/400410/581/3065/8837/23151/8740/5858/55795/7448/7023/23787/6195/9097/64780/27141/2534/56616/5062/1447/2902/5134/2168/4838/4193/3146/51176/5978/10653/841/5045/2904/3698/9966/51079/6657/10542/7429/50859/355/9491/23786/90199/1474/79886/329/58189/177/51499/55011/331/9451/8996/8915/4217/10047/8301/9994/207/3717/668/960/6188/55367/5894/80196/9314/4155/11315/114548/1285/54475/9709/6692/2852/27429/7531/351/1654/8717/2903/22900/317/6774/135/23400/5023/572/112399/334/718/9026/3491/55081/9475/79594/387/10935/5037/4255/26355/7076/842/27018/56925/10392/55031/5896/7035/1800/8737/10017/4824/3700/5607/5076/10395/6407/9647/23411/51024/29108/7057/8626/8434/6622/2/1992/3092/26952/10550/22861/1718/5269/408/4088/3476/4057/51065/3699/3082/1470/831/10406/8743/1942/1472/6478/2149/1490/4804/4018/11005/26999/444/10016/4803/6694/2934/9812/7078/5627/727/1293/5468/80760/6695/358/10879/51232/4671/6653/1294/2621/5988/1471/2045/3730/58503/2152/1473/4137/7021
## GO:0071897 4751/9212/51514/79075/9636/7083/9768/22948/5984/7298/4609/1063/5111/23649/5982/908/8877/10576/5424/7027/7353/409/5983/5588/9100/9246/5425/54107/54433/7415/3776/6119/10721/7203/10574/55505/4880/5594/10575/27000/2264/3978/79977/5985/1032/3326/55651/6714/65057/5428/55226/8550/1026/3181/26272/10714/23381/4931/6117/4361/3320/25849/5426/5478/7311/55666/2185/10728/4221/7706/11232/3980/7014/6118/5245/10694/5155/5063/54552/3183/7015/1791/6233/7316/3192/26585/3184/5422/7314/7520/11277/9314/5609/54386/545/2658/55135/143/7013/3981/7011/25898/5073/56158/25865/6847/659/80351/11284/7486/3178/27063/23293/79991/51455/5980/5423/5429/27343/26277/22890/140609/5981/472/55512/4015/23411/25913/8658/9104/5394/10111/5595/1499/7157/25970/56897/28984/94/3082/7084/4216/57804/1843/1490/80169/79618/167227/10039/2247/5468/50507/27434/5159/11201/2697/9370/1602
## GO:0031214 9636/54959/1230/8326/26271/1051/29887/1594/3381/1834/5552/6696/266/55151/2824/468/246/7480/5027/5743/3091/655/265/56955/9313/249/752014/6786/5251/1758/9350/2185/5818/7475/93/654/10457/4851/3347/5465/6574/55787/2201/10269/51374/9451/6899/258/26585/4146/433/7040/4745/197/657/22904/2623/8074/10312/6093/9562/92/3491/9475/650/55366/5741/659/3346/7291/9270/4846/24144/1893/9923/54880/6662/7071/79176/55512/4015/2268/2719/6546/2263/7020/90/7286/154/2068/4921/23493/4088/490/26504/4057/5745/4920/6779/1901/2261/4256/23462/84059/4208/4322/2308/1278/4077/54795/56172/1277/9365/3952/4488/2621/7481/5764/116039/658/54361/5167/5744/2697/7043/3479/4958/1311/652/54829
## GO:0002819 7037/8767/91543/10859/3575/4436/79915/3329/7468/5788/9466/962/30009/2207/6375/100/3659/940/64092/7128/5588/246/7124/5027/3569/4049/1378/2208/8772/7454/5817/7186/2213/3135/7133/958/54542/3134/54440/3593/3558/729230/3592/51571/113/6556/725/920/695/55183/941/7855/80149/3606/6363/10666/10892/7292/11221/3586/11126/3665/5987/3553/3718/3146/6885/22976/3565/8809/3133/2302/5777/975/3142/177/722/567/23529/7040/51043/634/50943/383/114548/301/7189/1178/8741/8417/5585/3566/8764/56940/718/4092/3594/54537/149041/51561/4292/9984/3440/3077/9173/22890/5819/6830/3456/23411/29108/9655/5532/7158/8631/6778/604/3554/81545/5590/4208/10039/54795/90865/3263/3572/2625
## GO:0007088 991/1062/10403/9787/11065/51203/10460/4751/4085/81620/3832/7272/9212/1111/9319/6790/891/990/5347/701/9700/4288/1063/26271/9585/9735/2253/8877/9088/995/1104/79866/5885/940/1761/54908/8260/23636/7517/7039/4733/655/1908/1950/5119/64793/25906/1814/3834/3552/9126/8379/2069/23137/11331/685/84861/7756/55795/55968/56984/9183/3553/10419/51510/79598/54998/5155/7175/996/9555/8243/25978/3630/3192/9587/7040/22933/10201/9820/4041/9525/1906/57132/1613/51451/51143/10735/55719/8621/858/55755/5300/26013/55781/137886/8697/10274/472/55023/56155/55512/23363/4762/8658/546/3550/4779/5925/27243/25970/28984/8452/1027/1028/3643/23113/1843/324/8678/10040/4926/146691/79884/5159/3479/652
## GO:0022406 4751/983/5347/10733/54801/65009/5341/7412/7277/3383/203068/10652/7283/10383/55835/4478/1080/22919/10814/9793/10640/55722/79959/6809/55559/4957/9702/4867/3320/9657/8541/3745/23354/55125/55014/23256/80776/5566/23322/4218/79598/79867/1069/8724/9342/8766/10121/7879/8636/6804/5518/6616/9662/8655/8673/11258/26276/11190/10490/815/11116/11261/57787/10382/65082/10244/23344/22994/22897/51134/23332/7531/5116/1453/26005/9409/6093/7430/261734/5048/79441/1778/80321/10540/22995/11311/858/5664/27077/1488/55755/9751/5899/11064/22981/26123/6814/1454/6813/23233/7846/54903/8481/79600/118987/1639/146057/9341/54806/80254/95681/9738/55142/80184/7840/1781/10142/9814/54820/22863/54843/5108/6812/347240/22832/5577/6857
## GO:0043524 9928/2019/6347/8326/2020/8200/6770/1051/2730/11151/3162/4436/5641/2253/7336/16/10525/409/5457/2558/8013/8882/3091/6376/4192/4504/728/10617/5582/3326/4914/4841/2896/10763/101/2562/55532/9244/581/6418/2185/5584/116986/2561/4099/6647/2534/2902/7301/28996/2668/1271/3265/6495/3845/7015/10891/27023/55626/58533/23394/23529/284/5290/26281/3717/4544/6620/11315/2898/3981/135/6093/5663/3725/387/23017/8846/5803/5170/55074/3670/5300/1201/4204/1270/5538/7516/598/65018/2065/2729/3611/6622/5071/5921/6416/6453/4776/408/4435/7466/558/596/79625/2149/80823/54463/4929/219699/4208/8829/4747/6812/7832/4671/4035/4915/10752/7786/7043/27324/1524/7021
## GO:0034341 2633/6352/445/6772/6347/3126/2643/10437/3055/6770/7412/4938/4940/3458/8942/1594/8638/4502/2597/2058/3383/4939/3394/2210/3659/2634/4360/3965/9111/4210/9076/7097/10096/7454/10492/3119/5469/3135/9021/834/23580/958/5724/5771/1612/3134/10379/5371/3593/8651/29927/140885/7294/3663/3326/10097/6556/3122/3106/3662/3107/684/3105/10062/199/3799/4281/361/7726/7706/3665/7099/11074/3133/3459/65010/3113/4843/4261/55647/567/10346/815/7341/3717/85363/960/3661/7791/818/383/3115/11093/3660/965/961/71/6737/1906/816/6672/1613/10475/3594/55337/3120/7431/3460/4684/7376/7098/8519/8554/201626/6814/55223/6813/6810/3716/10241/5580/4641/10435/6622/55614/3664/11140/9341/7157/2209/9482/4435/7474/10410/55128/2934/5468/81603/6812/10581/2317/3263/51466/3117
## GO:0051897 50852/10855/29851/3932/1236/9258/942/2253/1116/7295/940/2251/409/5880/2254/9542/930/7124/27006/8904/85453/7039/1956/5795/6376/1950/3059/56005/2651/2264/92140/708/1839/3326/5747/6714/2885/6788/2069/391/10456/101/5008/2876/941/685/3320/3606/6363/23533/8822/5291/5294/5293/7409/2534/5781/2475/2250/9530/5155/1440/6366/1646/5879/3630/4150/9518/284/5296/5290/26281/7046/4486/7040/3084/4233/4157/3688/10565/2159/5156/11315/114897/55801/7066/8823/8074/2064/2249/57142/5154/79727/5979/2248/10818/799/374/3815/8600/9270/2549/3488/2260/2022/6934/65018/2065/2263/7057/3611/3375/3092/2155/6453/2252/8660/5295/7010/10268/3082/10253/3643/8644/5025/2261/114882/2246/2247/50507/9037/9365/3952/4254/2621/2099/4653/5159/8817/2152/3667/2066/1524/2625
## GO:0019722 50852/6364/2633/3576/5026/5341/6351/7412/5336/5031/9454/8877/3208/5024/5788/1234/916/100/55151/6850/7124/5027/7852/2906/6262/4644/7226/1956/1240/5795/2280/1672/10134/2932/375346/51196/9446/5534/920/8445/55784/2358/695/27040/58529/4842/11123/5725/4761/5621/10523/2185/5335/7137/566/7535/9472/1827/552/2902/57192/9001/5566/1756/10316/2475/2904/4772/6401/10269/9451/6014/11261/57158/1193/22953/5144/3094/3084/683/11251/89/83988/1906/2903/57338/493/63928/5598/10645/2039/3064/10345/7462/933/10519/5170/51778/8600/4935/11163/5533/2905/287/2274/1910/2065/6546/10725/9455/9104/51024/5532/5562/22859/2516/5530/9759/5164/10231/845/6548/2915/3791/54209/5025/29995/5737/844/79772/1235/5311/6403/3270/6717/1907/481/2494/54795/51643/2281/1012/2946/55273/477/6444/775/5350/185/3357/576/23261/3479/3708/4137
## GO:0019359 23475/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/57103/8942/3418/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/5743/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/55328/9972/9390/81929/2027/5211/2646/5236/57122/10135/5209/79023/9818/5313/229/6521/23511/83440/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/10891/3630/8021/53371/5571/11277/4928/2026/5740/3098/89/669/8086/405/9883/6774/2103/51341/5903/23498/348995/54956/54981/55746/863/4656/27231/26471/3356/8473/55739/51422/5224/5562/9611/9759/4837/7157/957/55191/5563/3643/2203/2819/26137/3479
## GO:0019363 23475/5214/4199/55526/9688/3101/26330/54541/4860/8564/2821/57103/8942/3418/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/23636/5027/3692/5743/3091/3099/4927/79902/10762/8480/55753/3607/11097/3939/5232/55328/9972/9390/81929/2027/5211/2646/5236/57122/10135/5209/79023/9818/5313/229/6521/23511/83440/65220/226/51085/230/23279/2645/7175/5465/4967/5213/5207/51548/11319/23057/23225/10891/3630/8021/53371/5571/11277/4928/2026/5740/3098/89/669/8086/405/9883/6774/2103/51341/5903/23498/348995/54956/54981/55746/863/4656/27231/26471/3356/8473/55739/51422/5224/5562/9611/9759/4837/7157/957/55191/5563/3643/2203/2819/26137/3479
## GO:0072006 8842/6772/4609/6943/28999/2297/2296/2253/2138/8710/7422/7490/100133941/79902/655/9500/10736/1286/55083/3570/29927/5455/3975/4643/57122/51196/3237/9788/6608/8837/7477/10409/5727/7475/2303/23279/793/2668/2302/5155/6495/10413/6928/7471/1739/4854/26585/284/7040/5156/8826/7369/1285/186/23213/3911/4089/4358/7849/2028/26508/183/5979/3217/285/3207/4868/650/55366/25937/3976/55746/56998/5420/5800/7827/6662/38/59/5076/2828/2719/4070/3280/5310/3611/5175/54806/5228/5087/1499/80000/7010/4811/182/4435/1958/6299/596/947/3675/7482/5311/26249/2246/4208/8642/2247/6469/79633/7481/5159/54361/2737/3913/9863/80310/9370/652/2625/7021
## GO:0033500 5080/6770/4830/2730/114/4938/56943/28999/1535/2642/2171/2867/3383/80010/5127/6659/6566/2692/5165/3091/6755/1080/25825/5771/3607/25874/6927/51167/2264/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/3172/1050/65985/7351/3799/6722/51094/3745/4221/65220/5727/7425/51085/5798/1361/5781/7074/9515/7447/3651/8048/5566/5443/2645/6194/2538/59341/3956/2850/51548/5879/10891/2044/177/3630/55011/9324/2021/6598/859/5296/5290/4760/207/846/4544/5581/5894/3156/64710/5906/11315/79602/51714/1946/2844/2852/55777/2901/9230/6774/4976/572/79727/2822/1584/9448/8398/4986/51763/6814/3488/57818/6810/7776/6517/2309/26056/6934/5076/1392/1268/79058/23411/7054/1215/2729/51024/5532/5562/1407/51092/5530/8609/408/10497/8660/5563/5295/6794/5164/5547/283450/3643/22841/7466/9024/5836/8840/4804/1621/80024/9501/5799/221395/6717/2308/56605/9854/5176/1581/54795/3953/5950/2281/5468/5166/50507/55198/3952/7494/2621/8938/4035/55638/55107/26137/3667/9607/150/9370/5105/3169/1408/7021
## GO:0042737 23475/80896/80150/5973/23464/1557/1807/6783/100/5447/5052/10247/219/10993/1312/54363/50506/221/2653/1118/131/27284/51268/54498/4504/1512/55577/272/6531/5019/1544/2876/4842/7511/6822/3416/8288/1577/43/337/8856/1610/55270/1743/196743/3242/4353/7001/1555/1559/1565/1369/622/5053/23530/51816/27159/10935/847/4907/5092/2731/53905/217/2329/38/883/1576/3425/1558/3081/222/4025/6622/1889/1806/6799/64064/2878/7173/3043/3240/2184/1548/1621/7837/2954/6817/5860/275/8292/4128/6898/10157/4129/1580
## GO:1902275 1111/891/3159/4288/11240/1789/3009/7422/23028/1786/9474/22880/2641/672/7334/55611/25842/9757/2672/29117/10856/3720/8986/6688/26155/5081/5927/55183/4842/10155/6418/339/5079/59335/55201/3553/22823/5253/22976/4524/10664/55124/7175/9555/2332/64324/5599/63925/26097/51548/9733/3622/23476/10269/10891/55011/3192/6598/10474/11011/5587/94104/9869/8726/22938/7040/23133/51043/50943/11143/4000/6886/9320/55818/26993/4089/55209/6497/55729/23558/10270/25865/23168/2624/54904/9739/55196/80349/1487/51366/7291/3976/3670/4204/9646/2648/57379/54880/6830/10782/8473/472/1025/65018/4297/23081/23411/54623/9874/546/6879/25836/6622/26053/56848/57343/5595/1499/54737/7157/408/23741/7320/4602/604/23272/9252/26036/55693/9810/5252/201163/6591/6720/4674/7349/4582/2625
## GO:0051651 259266/29899/706/5552/7295/3638/1020/5905/348/3099/580/5371/55171/8733/3309/920/402/64714/64083/25777/50944/1627/11344/23568/602/3192/6014/207/23224/3098/11315/7114/487/2901/6672/2495/7430/7094/5048/3728/10956/9913/23353/1605/10210/288/51490/7405/2548/65018/23515/5756/2516/23136/83660/6500/10142/6717/2934/57731/23345/2317/585/6653/85477/857/213
## GO:0003002 5080/6790/9355/4821/2019/5100/712/1482/6496/9289/2297/2296/8092/8557/2253/55079/7473/22943/10220/56033/4188/3229/23432/7490/1959/10683/6862/10736/25928/5591/5567/2626/10959/25806/6422/1649/3975/2926/8928/3170/23648/7547/2637/3237/10006/60529/6091/6656/3239/6434/8828/1399/5081/10371/5046/7855/1954/9350/3227/6722/6608/7477/7479/22955/10409/4617/1044/5727/7289/93/22823/2303/7472/4838/4091/5566/23322/3219/28996/2668/2302/8861/7476/59343/5362/6615/23242/6495/51098/2128/50937/3684/4825/6928/6899/3236/27023/7471/26585/3955/3516/5626/5089/7046/8726/4760/2033/10716/3211/22856/1045/657/8022/26146/56983/2016/54475/23509/9968/4010/7080/123872/1906/79728/3235/5075/4089/64853/4087/9573/7849/3224/7528/5090/3226/51668/6497/23770/55764/55329/5663/23237/10159/6604/718/10818/92/204851/80055/55081/3207/3206/650/5308/2736/4618/3200/659/2294/9839/429/5916/3670/80319/6045/56998/80199/2648/4038/7403/8854/9935/2260/4824/7516/5649/57669/64321/6911/472/5076/56603/79176/6015/7703/4762/3218/6939/54903/2719/6405/1856/7026/79600/3280/2263/9620/90/2114/8626/3199/54806/5087/1499/3232/7157/2186/23493/4088/2735/1952/4920/7474/4222/4300/64388/8646/7482/2246/3087/10252/4208/3212/8829/10370/9742/6469/4681/57728/58495/7832/4488/10512/79659/7704/5125/4487/658/2737/4223/1746/367/79971/6926/2018/652/4036/3169
## GO:0097530 6280/6279/6278/2921/3576/6352/56833/1236/6354/11314/6283/3689/6375/3735/3929/5880/6357/6850/51192/1240/5142/3071/1525/4192/1908/728/6356/57118/30817/57402/719/708/1432/4354/79647/8291/6372/84818/101/3579/6363/5734/5294/5657/8288/23604/5293/972/7409/9948/3680/6366/59341/2660/1441/5879/3605/1435/5144/27202/683/158747/7369/301/6369/3269/1906/23765/5319/9750/51561/8729/3958/51135/7857/3672/7057/5175/5595/23396/3554/7042/5919/9353/1907/57126/83700/7060/10451
## GO:0002705 3902/7037/91543/136/4436/79915/3329/7468/3689/5788/259197/4068/9188/30009/2207/6375/8807/940/23586/7124/5027/3569/4049/56253/2208/8772/5817/7186/10125/3135/164/3596/958/5724/3134/54440/3593/3558/3592/51571/3805/4878/64127/695/6845/55183/7855/3606/10666/10892/7292/11126/7409/3553/6885/22976/3565/8809/3133/1653/8723/975/3684/8673/567/3916/23529/7040/50943/59067/383/114548/7189/8741/8417/148022/3566/718/3594/54537/2624/51561/23705/4292/6810/22890/5819/6777/2268/7158/2150/56848/9846/57506/6778/3554/81545/5590/57126/6812/3263/2625
## GO:0071346 2633/6352/445/6772/6347/3126/10437/3055/6770/7412/4938/4940/3458/8638/4502/2597/2058/3383/4939/3394/2210/3659/2634/4360/3965/9111/9076/7097/10096/7454/10492/3119/5469/3135/9021/834/23580/5724/5771/1612/3134/10379/5371/3593/8651/140885/7294/3663/3326/10097/3122/3106/3662/3107/3105/10062/199/3799/4281/361/7726/7706/3665/7099/11074/3133/3459/65010/3113/4843/4261/55647/567/10346/815/7341/3717/85363/960/3661/7791/818/383/3115/11093/3660/965/961/71/6737/1906/816/6672/1613/10475/3594/3120/7431/3460/4684/7376/7098/8554/201626/6814/55223/6813/6810/3716/5580/4641/10435/55614/3664/11140/9341/7157/2209/9482/7474/55128/2934/5468/81603/6812/2317/3263/51466/3117
## GO:0044106 3620/6999/262/5688/5709/5698/8564/5693/5713/8942/4953/6870/5721/5691/1812/15/5685/3689/5690/5684/5686/5695/6611/10213/1644/23198/1244/3251/5699/5714/5702/1312/6723/5708/5692/5704/23657/27284/54498/5683/1119/5694/6303/79814/5718/5682/55737/5716/438/5707/1728/9971/1141/5696/6531/51582/10394/5719/5700/2861/5717/10197/5706/5710/4946/5689/27163/5153/5720/196743/501/5701/9491/3684/5711/5715/3630/9861/5705/11315/2639/493/4947/1757/635/23498/1815/4204/1725/538/883/51573/6622/5071/23409/3350/3067/4929/51686/3176/23446/4128/7166/18/4129
## GO:0050866 3902/3620/6664/3149/1493/80380/3559/10859/1051/864/27242/3162/51083/11314/10288/8530/5788/239/30009/6375/3659/3549/64092/7128/3965/671/865/26191/83737/613/348/2213/54900/23240/3135/6376/4192/7305/55024/5771/54542/11326/57162/3134/8651/3558/6441/729230/3623/7940/6422/6693/384/836/8832/8379/3398/2896/7356/4332/3635/695/25793/25807/3949/80149/10062/2266/5621/7292/9306/3586/10385/972/3718/1269/7301/3146/3598/10457/2302/5155/5777/928/7001/3142/10461/11146/2796/1739/1845/2147/7040/51043/634/50943/383/2267/5156/5270/10019/301/114897/5585/2852/2064/284021/5169/5074/5154/135/3566/56940/4092/149041/9750/64844/2294/3958/10077/4846/9984/3440/3077/5573/472/1268/5580/3456/2729/9655/4345/3624/6385/8654/29/100507436/604/558/9231/57045/5592/10464/221395/10039/79679/2241/6469/7056/11117/2737/2615/18/652
## GO:0030534 6712/2019/7345/2515/1138/7111/3066/1812/7545/409/1476/8997/1020/9456/2395/8013/2906/8772/26047/525/23657/1143/238/55636/2257/123803/1814/1137/3170/1141/3398/1267/2043/26050/2636/1813/680/64854/5079/4097/372/6323/4988/2902/85446/50944/54413/28996/2668/51286/5465/434/2566/10269/3236/3766/22941/1600/11315/4923/2741/1949/3235/27429/23385/351/27253/5090/4864/6623/1497/1136/5048/6506/5728/9698/4852/2693/6900/2695/55074/80243/4986/1815/4204/2059/9378/5538/3356/22876/7200/9379/3218/9455/53616/6622/5071/4985/23544/26058/181/1621/7248/4929/57731/1140/1393/3952/585/477/9369/6387/10752/9607/2743/18/57502
## GO:0032392 8318/7153/9837/51659/4171/3159/8438/5888/3149/4175/4173/84296/9401/641/1763/4176/3148/8607/83990/4683/142/9978/1663/1106/1642/10973/9557/7978/10856/56652/6832/3181/2547/4361/2968/7311/1660/5965/3508/3146/10146/1108/1069/8451/1653/6233/7316/2074/7314/7520/2071/11277/22907/51750/57680/1161/1654/4331/8450/2965/23064/254394/7486/5887/50485/404672/25913/2967/1105/10111/2068/1107/1643/7157/7508/5813/7507/6594
## GO:0007052 991/9493/1062/4605/10403/22974/10460/3832/7272/9212/9055/3833/891/24137/5347/29127/57405/29899/6491/3925/55726/1104/284403/79866/11200/84722/23636/79187/5901/4733/5119/8480/9126/6905/2770/56647/3837/3796/49856/7756/25777/79998/55125/6683/51510/79598/7175/8766/6795/8243/25978/1213/3192/2316/2801/23172/9525/8086/23332/57132/5116/10735/1778/152185/387/4134/4204/10274/10579/8658/5310/1639/2009/27243/6867/9371/126353/10464/9639/23122/10039/4926/79884/10769/114327
## GO:0070588 3627/6373/4283/23413/3932/1236/55503/4067/1535/63933/5336/11151/5031/30001/779/1812/30968/3208/5788/1234/274/2539/6375/491/8989/55151/930/9474/5027/2906/6262/4644/7226/57214/5142/6376/3596/786/356/2280/10730/6261/55636/6769/29927/51393/1394/24145/1649/4878/255057/56302/375346/9002/9446/10368/8291/7224/774/1729/9033/9629/55013/55486/6786/11331/57113/623/140803/6363/581/1813/4842/10343/7416/79568/5294/773/5621/26133/10939/3954/10523/2185/5335/9472/23203/4308/4988/2534/2902/6271/41/22821/57192/9001/5566/1756/3358/5245/5777/2904/781/2332/6366/492/59341/784/488/7222/8911/57053/785/2631/55283/8996/859/2859/57158/7341/1193/5144/2147/7040/5581/308/6236/778/6687/80228/302/28954/10369/304/6263/4923/7225/80036/2852/7531/2903/79054/57338/493/55584/4976/5663/8913/57165/7223/3064/54499/782/10345/799/79085/4987/8065/8398/11141/25/8912/63892/5664/5170/1815/10367/2905/309/287/25998/9512/9722/3356/9992/6543/27075/3709/6546/5310/9104/783/6622/30845/7070/6588/27091/10681/221154/777/825/490/10268/845/6548/2669/3685/2823/2149/5025/80024/844/187/79026/5311/2259/27039/3270/93129/6717/481/54795/53373/2247/2281/55799/3306/7220/2946/477/27092/2621/775/5138/5350/3357/150/9254/776/3708
## GO:0043087 10563/2146/29127/55635/1894/54959/8437/5365/1236/57706/1122/23603/5902/9712/10507/1794/3383/92154/9824/10059/409/2665/8601/8477/8997/23076/5996/5905/9938/613/6004/50861/9681/3996/23616/10125/3071/2245/84079/9462/23092/1123/6001/958/9744/10762/28964/6356/6654/10113/5923/10959/2932/3267/11033/153/23513/55854/6422/51291/60682/23143/50848/6792/2049/4914/10297/5747/6305/50807/26286/1857/402/3987/391/1399/2043/393/8853/208/154796/58504/5997/2873/55200/6363/55160/9605/9628/1124/3993/7410/23094/116984/5657/8394/2185/5147/116986/55114/7409/6647/259173/5962/10483/7074/9515/663/25780/6993/27352/22821/4650/2041/79890/2475/6000/2302/3265/3843/7813/10928/6366/396/9138/2775/2889/26000/10276/81565/55843/2044/23654/26230/55738/6102/79658/3655/4952/1969/8301/65125/2664/3268/577/56882/3688/10565/5999/5906/9610/8826/55803/23348/23526/7984/6281/23380/6369/5998/55785/9826/10235/1946/2064/26130/9815/1121/1983/9901/23527/10982/23161/84364/221472/11153/6251/8131/51495/4649/116/8874/5048/9754/395/116987/3725/6904/4594/375790/8787/1398/5922/5903/4983/9448/64786/4301/85360/55188/6494/10144/858/6002/80243/9270/9912/27237/8195/5300/55619/64411/22930/116985/397/9827/23637/5909/79090/10636/57148/4916/23329/54922/7249/10188/60626/22899/392/2909/10395/23236/1856/9459/8502/79874/9693/9104/29108/399/8498/54828/10435/2150/79822/7070/83478/23108/5921/2874/10681/51520/9732/10484/2776/4763/94134/55616/408/398/163486/115703/4739/9922/55357/29/10253/394/604/84986/7474/22841/1901/9905/5592/2149/11211/26037/9743/7248/9162/5799/9639/10252/1793/9353/54453/9411/8829/253959/2042/10641/23365/26575/10411/216/585/23677/8786/7481/4908/5364/4915/51306/54361/9135/90627/10788/3357/55296/8490/10451
## GO:0051236 55110/9688/10212/56943/11260/10643/4600/7884/9631/10644/4116/6396/23165/55706/6427/9775/29107/23636/5901/7263/4927/79902/3297/10762/9793/8480/11097/26019/55308/4686/3267/25909/9972/81929/29118/1977/57122/9908/56648/29074/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/57097/55916/81608/10128/23511/677/11052/1660/9887/10898/65109/29890/2733/22916/11338/23279/54715/6426/9444/7014/10921/10073/6429/10250/59343/57187/7175/51362/2332/51637/10657/26097/23039/23225/5976/6432/3192/8021/53371/84271/22794/64901/4928/8888/8570/23299/80145/6421/79228/8086/545/26993/7013/9883/55421/23237/23180/7538/5903/6209/348995/3178/9984/55746/23293/91746/55781/10482/8189/65110/6830/6431/472/6311/9295/29072/4641/9939/8658/51213/220988/51092/10211/6430/9877/8106/5813/9284/7248/3087/7048/9961/3800/54847
## GO:0007045 23603/7422/2824/5795/79834/88/6422/5747/6714/3987/11170/8394/2185/8861/3273/5879/2017/5796/26585/1845/8826/89/6281/3911/1946/23332/4323/87/1613/6093/56940/8874/395/7205/5728/9475/2039/387/9448/25/3673/5170/9270/29984/57669/10395/9647/9344/7057/54828/23499/7070/6385/10420/9748/4088/7010/94/6548/3791/22998/596/7248/10979/23122/8829/2042/10580/4653/10391/4035/54361/347/1307
## GO:0046849 952/8792/7037/8200/3574/29887/3351/54849/3549/5880/7128/1943/1445/6850/4160/5027/3569/9545/1956/9770/79705/4192/5578/6422/760/6714/796/3635/101/51208/2185/51384/23154/5879/171392/26585/1969/9842/51430/7040/537/7189/1436/10312/81501/4853/55366/1200/3690/5741/8600/4286/3375/154/4763/1499/5745/1901/10609/2488/6694/3953/5166/50507/3952/1513/5764/53832/2697/7043/4982/9607/7166/284266
## GO:0048041 23603/7422/2824/5795/79834/88/6422/5747/6714/3987/11170/8394/2185/8861/3273/5879/2017/5796/26585/1845/8826/89/6281/3911/1946/23332/4323/87/1613/6093/56940/8874/395/7205/5728/9475/2039/387/9448/25/3673/5170/9270/29984/57669/10395/9647/9344/7057/54828/23499/7070/6385/10420/9748/4088/7010/94/6548/3791/22998/596/7248/10979/23122/8829/2042/10580/4653/10391/4035/54361/347/1307
## GO:0021987 597/259266/5080/9355/9928/7804/6715/5194/9289/8941/284403/664/6513/1020/23028/3014/474/3091/1000/26047/1956/81853/4192/2618/2932/79648/5455/7101/6091/30837/6434/8851/8828/1399/3362/83696/10371/22903/581/1459/25777/6608/27185/5079/471/2902/81565/50937/317762/2316/1600/10716/79143/23224/23380/2016/7080/7531/57142/54407/572/5454/5663/5048/4852/387/1398/26468/23353/56949/2258/429/8195/5649/23236/5802/7054/4763/1499/8648/7248/54820/3912/9353/8829/4747/1281/585/55970/79633/85458/89927/4035/4915/2737/388677/114327/2018
## GO:0030968 3576/440/6347/79139/3068/30001/578/10130/10897/467/10525/10954/2673/4690/468/1663/58477/7415/8440/116138/10987/5610/56005/5771/10018/10113/9217/26291/9114/811/1649/7184/6745/11015/3309/2081/55432/1965/581/9797/26608/6734/51009/5770/3484/2134/5611/22926/1388/5526/64764/439/55738/9451/23645/2033/10488/4189/4780/4000/9570/267/55161/9820/1491/2931/51283/9709/55033/8720/11153/27230/22872/7094/7709/2135/51360/1200/30827/2137/54956/55062/10273/6464/9695/1639/10106/118/5295/37/90993/7466/595/80279/7494/64061/8614/10551
## GO:0015837 366/59272/8564/51458/3351/3737/1812/1644/5027/551/10991/885/151/1814/23204/1137/1141/152/134/5997/156/1113/1813/3745/552/2668/5020/6865/2917/6804/5028/5865/26281/5999/383/186/4923/4889/6529/1861/135/183/6623/5663/1136/2693/4986/1815/22930/8973/3356/65018/1392/1268/7054/6622/5071/10550/27347/4887/5021/9900/6812/3952/8864/477/6387/9607/150/18
## GO:0042310 952/59272/133/3351/3383/5743/551/1956/1908/5724/5910/151/40/152/3741/3792/2243/2266/3274/80005/1816/1636/1131/80852/3352/6869/148/207/846/2244/3269/1906/183/5023/387/624/27345/659/8195/59/3356/1910/6546/3363/10242/5286/1889/9732/2702/6532/490/3350/2149/1621/1907/54795/3952/8864/477/857/1909/2697/185/3357/150/1311
## GO:0051952 59272/8564/3351/3737/1812/5027/551/10991/885/151/1814/23204/1137/1141/152/134/5997/156/1113/1813/3745/552/2668/5020/6865/2917/6804/5028/5865/26281/5999/383/186/4923/4889/6529/1861/135/183/6623/5663/1136/2693/4986/1815/22930/8973/3356/65018/1392/1268/6622/5071/10550/27347/4887/5021/9900/6812/3952/8864/477/6387/9607/150/18
## GO:0070664 3620/6355/6664/1493/80380/3559/10859/1051/4067/27242/2950/51083/11314/10288/6375/3549/7128/3965/83737/2213/23240/3135/7305/11326/57162/3558/6441/7940/6693/384/836/8379/7356/4332/3635/695/5621/3586/10385/10457/2302/5777/11146/2796/1739/26585/7040/51043/50943/383/5585/2064/5169/5074/149041/64844/5573/472/6385/8654/9231/57045/79679/6469/2615/652
## GO:0061387 3897/10507/3475/7473/6696/80128/7422/1020/7143/348/23566/4504/3984/1785/51393/2932/6792/5058/7224/8851/393/10371/4133/1954/1002/6722/6049/8153/27185/4099/51330/11344/55558/8766/1826/9175/81565/2017/4825/23191/4897/9798/23394/2664/1946/57142/23011/1382/5048/23105/8482/5458/10439/6259/659/25/2335/2258/9423/1630/57698/4916/1808/5802/9706/23499/3611/4131/627/29882/22902/7474/23111/2803/8829/9037/6387/56920/2045/4035/4137
## GO:0051048 10874/7850/2633/51311/91543/10859/56943/336/27242/3418/3162/11314/3351/9466/5552/100/7128/3965/8997/26191/1312/7124/613/29091/348/2213/6376/7133/1950/55024/9734/3134/5371/729230/3623/3589/10333/151/6422/1814/255057/5211/384/9971/8832/152/79651/84830/134/5008/522/80149/7351/10062/1113/3033/1813/64111/5734/353500/3745/55607/3586/10385/972/5987/80763/4988/3553/5781/9515/41/7447/3598/4851/5978/5020/335/6865/2332/2917/7879/5028/23208/5715/3630/8673/10961/353514/80223/284/65125/9727/5908/634/4544/3084/7132/50943/3156/27202/5906/7114/114548/80772/186/301/9525/4889/1906/6992/8074/22900/7430/7009/933/2693/9448/55366/8620/11141/2294/2335/22925/3976/4986/1815/2771/3440/114088/307/6814/26525/26056/83452/1392/55691/1268/4762/554/2065/2150/6622/4345/5071/3624/1407/1992/9341/5530/23409/8609/4763/28984/29/27347/64285/7779/947/2149/4887/5021/26297/2281/1393/90865/23005/3952/1149/3625/4856/6720/2621/2615/3667/7349/9607/150/114899/18/4129/9370
## GO:0070374 8685/6278/8792/65009/1230/5320/8767/1236/9258/5031/2253/1880/1116/5788/3383/3735/409/1652/3965/26191/6504/4282/3061/246/5604/7124/2641/348/1956/10125/6376/4504/728/2651/2264/5578/26291/2626/5345/4914/6714/64127/920/2358/1399/11331/2243/55532/2056/6363/2266/1813/8837/2185/2492/972/7099/64762/4988/5781/55294/6754/673/4838/3146/10457/4851/3358/5245/3265/5155/5151/6366/59341/2889/5028/177/54550/148/284/26281/7040/960/846/5908/2244/537/3156/5609/27202/5906/5156/55801/4889/25778/7066/2852/1436/8074/351/2249/5154/4835/116/27020/3725/5728/25865/4853/8482/799/650/25/10519/2324/8600/9464/112464/10347/2771/10392/6464/3356/5322/2263/9693/29108/2150/5595/408/7010/10268/10253/3791/5590/2149/948/1490/54209/2261/8829/2247/50507/57007/2621/5159/8817/4035/9590/7786/3357/652/2066
## GO:0034101 9636/6772/1054/54892/4067/3148/3162/9258/2539/5052/7422/3276/9991/4151/3091/23210/5469/3071/3059/51621/5771/10661/3623/8444/60682/1432/836/272/6688/10320/3398/6223/3635/2056/94081/6521/2113/6722/677/7067/80739/3658/3313/212/28996/8861/6194/7564/1777/3050/6005/567/3717/103/29766/2038/23543/10019/6886/669/2623/6208/10107/405/10296/91/6229/6774/1021/93974/5316/92/4891/51341/2039/54977/7538/2624/3815/2116/22985/9935/4090/6670/2309/6777/4779/3624/5925/2068/118/5926/10365/604/558/2034/3202/3216/221395/54681/7049/652/25893/2625
## GO:0042542 983/2146/8061/1894/3934/6772/5111/6770/51765/3162/3066/51022/578/8877/664/7295/100/8807/5831/10280/5603/8989/7128/10105/2395/8013/3569/1410/4151/7226/5536/9131/3297/10131/140885/328/1728/836/6714/9283/3741/2876/5970/5660/2861/2113/2185/3586/6647/2534/2168/4193/1545/5151/11235/2775/3840/10276/5516/8754/2021/4217/8428/54840/6188/4233/9314/4780/383/11315/10494/7225/5074/5598/572/3725/824/6382/10013/59338/10935/1398/374/23064/25/1938/11179/8737/23135/2309/5076/65018/7703/55512/5580/55139/23411/6546/5562/7337/6778/10365/3082/4602/55364/3043/558/3240/596/1843/8678/2308/1277/2281/358/10628/51157/5159/1471/388/57332/80310
## GO:0043467 983/891/9688/6472/26330/54541/57103/2642/5499/63976/9631/7262/664/5223/5208/55847/10105/6396/215/5210/23165/55706/23636/5027/3692/3091/7415/4927/79902/80183/10762/10131/8480/11097/2932/9972/81929/2646/57122/5209/79023/8445/9818/208/11331/10063/5500/23511/3416/51085/23279/5443/2475/2645/7175/5465/59341/5207/51548/4843/11319/23225/10891/23178/3630/8021/53371/29103/5290/207/5571/11277/4928/11315/89/2931/5509/8086/405/9883/6774/2103/51341/387/5903/79085/5741/348995/112464/55746/863/51763/4656/26471/23479/201626/538/3356/8473/65018/51422/5562/6622/56848/9611/9759/7157/957/5261/8660/5563/3643/8604/29997/201163/10580/2203/2819/5167/26137/3667/3479
## GO:0046578 2305/9928/1894/8437/57706/3925/4067/9289/867/8997/117178/23636/2048/345/613/348/50861/10125/2245/6654/5923/10617/10603/1785/9267/5662/382/4914/51196/6091/2885/23229/1399/84033/7077/50649/2056/55200/79109/55160/8878/7410/7409/3707/5962/7074/6993/27352/22821/4650/4851/3265/335/396/9909/3845/9138/2889/27128/5879/10276/5516/54848/26230/4168/199731/9181/1435/6014/148/19/23370/3717/3084/27/4233/5894/56882/3688/10565/7984/79933/55785/9826/10564/11214/10982/23101/23096/221472/253980/7204/9266/8874/4853/8036/1398/9750/5922/8216/6655/4983/9448/25/7126/9927/8729/80243/27237/50618/397/286205/26030/54922/8711/6464/10160/22899/8473/2909/10395/9459/8567/2150/23263/26053/23189/5921/9265/8859/4763/10211/6453/25959/64787/408/26084/8660/9922/29/8452/604/64283/54869/2149/23550/440073/3675/9162/9639/4803/23268/7042/57493/9649/1902/8829/50650/201163/9855/23365/2057/1281/55701/5863/4254/4653/5159/2203/9828/3479/55103/10451/23362
## GO:0009952 5080/6790/2019/5100/6496/2296/8092/8557/2253/55079/7473/22943/10220/56033/3229/7490/10683/6862/10736/5591/2626/10959/6422/1649/3975/2926/8928/3170/23648/7547/2637/10006/60529/3239/1399/5046/7855/9350/3227/6722/6608/22955/10409/4617/1044/7289/93/2303/7472/4838/3219/28996/8861/5362/23242/50937/6928/6899/3236/27023/7471/3955/3516/7046/4760/2033/3211/1045/657/56983/54475/23509/9968/79728/3235/5075/4089/4087/9573/3224/7528/5090/3226/6497/5663/23237/10159/10818/92/204851/80055/3207/3206/650/2736/4618/659/2294/9839/5916/6045/56998/80199/2648/7403/8854/4824/7516/57669/64321/6911/472/6015/7703/4762/3218/6939/2719/7026/3280/9620/2114/5087/1499/3232/7157/2186/23493/4088/1952/4920/7474/4222/4300/7482/3087/3212/6469/7832/4488/10512/7704/5125/4487/2737/4223/79971/6926/2018/652
## GO:1903305 23413/136/55503/4067/1138/8941/8372/3162/321/11314/3351/1812/3689/2207/10059/5880/3965/1020/6850/10675/9545/613/2213/164/3596/10755/5724/28964/3134/57102/1142/5582/30817/729230/2932/4878/255057/1137/1141/8832/5579/6855/8447/5217/6845/8573/1813/3745/192683/5873/64780/9515/3598/5978/594855/7476/2332/6853/488/8723/6804/5028/3684/5030/8673/3916/815/148/5908/376267/634/5906/9783/320/2901/5868/135/5023/3566/1855/2624/2294/5170/2771/22930/8973/114088/5864/6814/6813/6810/3356/1268/2242/2268/783/22871/2150/56848/9846/107/9581/10497/23621/29/1129/9501/9162/6843/57126/8448/6812/8938/6857/150/776
## GO:0051250 3902/3620/6664/3149/1493/80380/3559/10859/1051/864/27242/51083/11314/10288/30009/6375/3659/3549/64092/7128/3965/865/26191/83737/2213/54900/23240/3135/4192/7305/55024/5771/54542/11326/57162/3134/8651/3558/6441/3623/7940/6422/6693/384/836/8379/3398/7356/4332/3635/695/25793/25807/80149/5621/7292/9306/3586/10385/972/3718/7301/3146/10457/2302/5777/7001/3142/10461/11146/2796/1739/1845/7040/51043/634/50943/383/2267/301/5585/2064/5074/135/3566/56940/4092/149041/9750/64844/3958/9984/3440/3077/5573/472/3456/9655/3624/6385/8654/100507436/604/558/9231/57045/10464/10039/79679/6469/2737/2615/652
## GO:0002695 3902/3620/6664/3149/1493/80380/3559/10859/1051/864/27242/3162/51083/11314/10288/8530/5788/30009/6375/3659/3549/64092/7128/3965/671/865/26191/83737/613/2213/54900/23240/3135/6376/4192/7305/55024/5771/54542/11326/57162/3134/8651/3558/6441/729230/3623/7940/6422/6693/384/836/8832/8379/3398/2896/7356/4332/3635/695/25793/25807/3949/80149/10062/5621/7292/9306/3586/10385/972/3718/1269/7301/3146/3598/10457/2302/5777/7001/3142/10461/11146/2796/1739/1845/7040/51043/634/50943/383/2267/301/5585/2852/2064/284021/5169/5074/135/3566/56940/4092/149041/9750/64844/2294/3958/10077/9984/3440/3077/5573/472/1268/3456/9655/4345/3624/6385/8654/29/100507436/604/558/9231/57045/10464/221395/10039/79679/2241/6469/2737/2615/652
## GO:0045185 706/5552/7295/3638/1020/4188/4794/5905/11124/3099/580/4792/5371/4052/5716/8733/9908/4796/3309/920/402/64714/9350/64083/25777/3586/50944/1627/7529/11344/9113/2201/4795/23568/602/3192/6014/2316/207/23224/3098/11315/7114/2901/6672/7430/7094/28952/3728/10956/9913/23353/1605/10210/288/65018/23515/5756/5310/4601/2516/23136/83660/6500/22873/5311/6717/2934/57731/23345/4681/2317/585/6653/85477/857/2200
## GO:0070542 891/445/1236/1869/4830/5031/2867/15/1019/9076/5165/7097/2180/5743/5536/5724/1374/5444/6422/9971/5732/6714/65985/3949/80149/7351/6363/7292/3651/5020/6366/1646/2782/6602/2170/5030/10891/2796/81285/207/7520/5581/1906/7528/8443/572/10270/55022/847/2731/1385/112/2696/338/31/51141/5562/4776/5729/1373/3399/5563/3371/8644/948/1490/5737/3155/210/5468/5166/4023/7350/6720/3667/7049/9370
## GO:1901532 5688/5709/5698/5693/5713/2296/5721/5691/5685/5690/5684/5686/5695/10213/23198/865/5699/11051/5714/5702/5708/83737/5692/5704/54517/5683/5610/6654/5694/4004/5718/5682/5716/5707/5696/51441/5008/5719/5700/5717/10197/5706/3313/5710/5134/4851/5977/8861/5689/5720/5701/9491/5711/5715/10413/6929/9861/5705/4780/6886/2623/1021/2624/7161/9739/25/22890/4297/3280/56339/4602/4005/201163/6938/4254/10443/2625
## GO:0060828 259266/6663/1001/55612/8326/1482/5688/5709/5698/5693/79412/5713/5721/5691/5499/1749/8607/5685/8549/5690/5684/5686/5695/22943/10213/23198/2254/6789/5699/6659/5714/5702/7480/9978/5708/5692/348/1000/7415/5704/1956/8796/23240/79705/54994/4192/5683/1950/57805/25928/5694/5718/5682/55737/2932/5716/6422/1649/5707/1432/10297/64750/55681/6714/10856/5696/6788/1857/8323/5719/5700/5717/3065/10197/9679/25805/8324/2348/51704/2010/5706/3484/5710/10146/8629/59349/9113/5689/5720/6657/10076/2889/5701/9491/1540/5711/5715/10413/331/9368/23072/26585/3516/4040/9861/65125/6907/5705/23399/8312/1896/2931/54475/57680/8994/4790/4163/1654/1453/1613/5494/27130/5663/261734/6425/55182/1855/90410/5754/3728/79718/650/55366/25937/27121/80351/51366/1452/3670/5300/80199/55031/4038/5800/6662/64321/2309/23500/6934/81847/406/54903/2719/9101/1856/8658/5218/2263/3611/8434/5071/23189/8321/2776/80114/166/1499/8945/1601/79960/4088/6794/5204/2735/7320/10023/8452/4920/1958/7474/4300/6478/27303/9736/324/7089/25960/27122/65981/2308/54795/1277/51339/6591/6469/3485/9037/81029/3489/1501/7481/857/2737/2487/63923/27123/3487/79971/6424
## GO:0022037 2146/9928/6712/2019/6751/8941/2296/64211/916/16/23287/1020/5604/5629/2213/401/4192/6753/1152/2618/23513/3975/23026/5058/3309/2895/8851/1399/4669/199/6608/6331/4761/10978/372/5781/471/8704/2902/9001/23322/3746/8861/7476/869/54910/10891/7471/3184/4760/1600/3211/58155/5270/186/27089/23385/8455/8443/5663/1398/23017/2736/4983/25/7515/473/429/8925/4204/6095/2648/51150/10427/538/25861/79934/5802/146057/7157/23544/22891/8322/8648/2735/6752/596/4628/1902/1272/5764/65250/18/57502
## GO:0099003 23413/57706/136/1138/321/3351/1812/3208/10059/80128/1020/9829/10675/5027/10755/28964/10228/1142/5582/1785/55737/2932/23513/1814/1137/382/6809/1141/9381/91683/5579/6855/8447/5217/8573/4133/1813/8541/64854/5602/5873/1948/9515/60/4218/594855/8618/7476/8411/8766/2332/9699/6853/8943/488/6456/80852/6804/5028/23208/6616/5030/815/148/821/5908/6620/5906/26059/1176/57030/9783/6455/22883/8867/71/320/2901/1609/5868/1861/8775/22999/135/6093/5023/2580/2647/5663/23237/1855/8120/29058/4983/163/3690/1759/1488/8674/9751/1815/23285/8650/22930/8973/5533/114088/5864/2060/8546/6517/3356/65018/1268/783/22871/5532/6622/50632/5071/107/10947/27065/9581/1499/6453/10497/27445/23396/23621/1129/23426/9162/6843/6844/9900/8825/8448/6812/5874/80208/93664/6857/776
## GO:0033238 5688/5709/5698/5693/5713/4953/6870/5721/5691/1812/5685/3689/5690/5684/5686/5695/10213/23198/3251/5699/5714/5702/1312/5708/5692/5704/23657/5683/5694/5718/5682/55737/5716/5707/1728/9971/1141/5696/6531/51582/5719/5700/2861/5717/10197/5706/5710/4946/5689/5153/5720/196743/5701/9491/3684/5711/5715/3630/9861/5705/11315/493/4947/635/1815/6622/5071/23409/3350/4929/51686/18/4129
## GO:0031334 4312/10563/81620/8061/7453/1482/5341/3055/1236/9447/3458/11151/637/274/57180/3383/2072/84722/6624/3936/7422/142/8115/4690/246/10095/7480/7124/9978/10096/7454/11124/7415/4733/8440/5216/6119/3071/4478/1981/8739/22919/23019/6356/1642/10018/6927/5366/9557/1496/2932/885/9780/10333/382/10097/9908/5058/8936/6714/10092/2885/402/8851/5217/7408/57175/10109/6117/3320/2968/581/55832/10094/6722/3416/2185/79998/9873/10093/7099/51100/5987/8976/2959/10178/6118/22976/1015/10146/2475/9530/5526/8451/1440/6366/7429/23514/5879/2017/9463/10787/55011/6928/23191/55604/1739/4848/55243/23379/859/7341/79969/7040/2071/6188/4233/5581/7984/6369/6886/3512/1437/23332/545/51199/7013/6872/9774/57472/55719/9026/3725/8450/10013/387/4868/2965/23064/6249/1385/10152/55755/2073/7291/5601/4204/10273/55435/404672/54922/472/65018/2242/4286/4641/1639/29108/2967/10435/81857/2067/2068/1643/1499/7157/4131/8631/10497/3567/1027/948/4314/10142/11076/9924/7507/2934/2241/89795/54551/4926/638/85477/2099/23116/1191/10788/51466/25802/4137
## GO:0007249 55765/1894/10549/6772/51311/79931/8767/1236/51026/330/3654/2950/3162/6283/54503/9188/11040/7088/6285/7128/3965/9100/929/27032/7124/23636/7097/8772/6398/4055/8904/64170/843/5536/7186/6376/834/356/2280/958/4792/57162/7052/9641/7334/1147/140885/92140/10333/10010/9971/8795/64127/5579/4615/10758/920/79753/10342/695/684/28511/5970/80149/6363/7311/23643/9516/8878/26057/10892/3065/8837/10133/51704/7706/972/8517/7099/124583/2534/3553/6885/23085/841/6574/22954/1936/6366/1653/3956/6233/6275/7316/54862/10454/329/23476/80833/171392/602/8915/5587/10346/9020/2316/284/7314/207/85363/6284/3661/7132/7329/55367/5581/5495/65992/1896/1491/7189/54386/55870/11214/8717/29110/10475/148022/22900/4919/81858/6093/5494/51495/10616/9218/24138/9475/79594/28952/79155/387/8780/23118/56957/7105/10318/25/5966/5170/51284/51135/8600/4215/1893/6095/7098/64343/10392/11043/55223/8737/10771/65018/554/5187/23411/29108/399/2150/54469/5071/56848/3315/1499/8945/10206/56674/57506/825/4057/23390/7474/8743/80762/2149/948/7188/1902/81603/23005/80216/10769/2099/57161/3551/2697/3357/79971/9370/1524
## GO:0010822 3002/4318/1869/2810/578/30968/9141/637/664/7027/10059/7534/5880/10105/7159/5329/3091/3099/10055/8739/57602/10018/5366/55737/2932/10971/10962/54471/7533/7332/6721/5534/7029/25793/7855/581/1459/10133/51100/54708/27141/59286/55294/7529/841/10075/5599/7323/9776/57154/10891/11315/2931/79778/2852/27429/7531/8314/4976/572/93974/10645/9026/79594/10013/3064/89781/7161/9520/26355/8398/9927/10425/55823/23368/5533/54832/4836/65018/54741/56947/51024/29108/5562/8626/5071/11140/7157/23259/55187/7755/3791/8743/596/54209/64112/638/3305/1634/22885
## GO:0014031 4902/6664/23603/2296/8092/3091/9221/655/1908/5594/6949/2637/8828/202018/10371/6608/1072/2348/2303/4851/2668/59349/1947/6899/3084/553115/657/1906/3911/65979/26508/5979/5308/2335/9839/9464/7291/3670/8854/6662/1910/6405/3280/90/8929/5595/23493/182/596/10016/8829/6591/6469/58495/83989/4254/10512/1909/3357/652/2066
## GO:0007051 991/9493/1062/4605/10403/259266/22974/10460/4751/3832/7272/9212/9055/3833/6790/891/24137/5347/29127/57405/10615/9700/54801/29899/6491/26271/3925/55726/1104/284403/79866/11200/203068/79000/84722/7283/23636/79187/5901/4733/81027/5119/9793/8480/55722/9126/6905/55559/2770/56647/3837/3796/49856/7756/25777/4342/79998/23354/4627/55125/6683/51510/55521/79598/7175/8766/6795/8243/25978/1213/5518/9897/3192/1739/2316/2801/23172/6188/6047/9525/8086/23332/57132/5116/1453/8841/10735/7430/79441/1778/152185/387/26112/4292/4134/4204/7405/10636/140609/10274/10579/8658/5310/1639/546/2009/9611/27243/1107/6867/80254/9371/55142/126353/26054/10464/9639/23122/10039/4926/79884/10769/55857/114327
## GO:0071236 983/2146/1894/3934/5111/6770/51765/6354/114/3066/8877/664/7295/8807/5831/10280/5603/7128/10105/8914/1788/2395/8013/3569/1663/7226/5536/1536/9131/1080/3297/10131/2230/140885/113/328/5321/2742/1728/10097/6714/6688/2770/3309/9283/5970/80149/5660/2861/2113/109/3586/9349/2168/4193/23367/1545/5155/5151/11235/10276/1616/2021/4217/6188/4233/5581/9314/4780/383/11315/10494/7225/2741/1946/5074/3779/5598/5728/10013/59338/23064/25/11179/3178/112/8737/538/23135/2309/5076/65018/7703/55512/5580/55139/23411/3709/5562/107/7157/3399/108/6778/10365/6548/3082/4602/1027/55364/1958/558/196/8678/4208/2308/358/51157/1471/1396/388/57332/1191/80310
## GO:1903900 7153/27074/3669/6355/3576/9636/6352/4599/200315/3838/91543/3429/6590/4938/4940/8638/8547/5359/5479/5806/940/2219/3434/3965/6732/8815/7124/22880/5629/60489/79720/26986/27350/5034/5610/1642/10450/9217/5371/8091/3428/200316/10465/9126/89870/6780/5886/5481/920/684/80149/5478/27183/29883/10155/7726/325/7706/972/3609/5987/11074/23633/11267/8468/23367/8724/22954/2332/3956/25978/56829/9869/103/85363/64710/5091/6895/6733/1655/9525/6737/5586/10107/7251/1654/10475/7113/51495/104/8812/9218/55337/24138/55196/10318/858/51763/3440/8519/201626/11043/55223/5819/64848/7155/2040/3456/5071/27243/10206/54737/57506/4057/63901/23272/596/10410/6041/2934/2494/81603/10581/25827
## GO:0008203 1717/4597/6319/6713/29881/6770/51302/341/8435/3422/3930/9420/2224/10449/10682/2539/50814/5447/3638/6646/39/5467/79071/348/5901/1080/4504/3157/2230/8431/5444/1056/2784/9971/6721/1593/6307/3837/1050/8542/10948/3949/949/10577/54982/4800/1071/2055/2194/23780/27329/337/6718/6647/6256/4598/3565/4802/7436/335/9784/2222/47/1583/4047/19/1727/10613/3156/7555/8578/8720/351/6820/1609/4864/3069/847/51360/9619/22937/4801/319/338/3990/31/10654/6667/8029/10858/51141/26119/6609/4779/5562/7108/11160/9453/1718/5563/37/51478/55911/3931/33/114876/2246/2232/6309/1581/3953/64788/3952/6653/51474/6720/3991/32/23541/2053/3158
## GO:0007200 3973/5031/4159/1812/4829/3062/9456/23566/3814/887/88/7052/8811/2769/719/9002/51196/796/4883/2357/2911/3579/1113/1813/4988/886/1816/10316/3358/80045/2850/51764/2782/5028/23620/5030/6869/9368/2925/2147/846/3060/3269/1906/1241/183/4987/636/4986/3356/1910/4985/2915/5745/1129/1901/2149/5029/1902/2099/185/55107/150/2922/1524
## GO:0010977 53335/952/3066/3475/7473/22943/6696/81618/80128/1020/7143/2048/348/11202/4504/9856/152559/8934/7533/2672/382/1716/2288/5747/50807/1522/7224/8851/2043/393/10371/4133/6049/3196/4099/1948/4193/10498/54413/55558/396/59341/3956/9860/567/4168/6014/1400/1600/2664/23251/5780/7225/1949/57142/2580/5663/5048/5728/23105/387/7431/6259/9448/10519/2258/4974/9423/112/1630/4038/5800/9139/9529/22876/6911/5802/7025/26052/9706/9693/22871/7070/23108/23189/7337/5530/29116/29956/4776/22891/64689/22902/23258/7474/23111/1942/4804/66008/7248/1809/3397/11075/9353/1902/8829/6695/5793/9037/10769/56920/2045/5376/4035/27124
## GO:0051100 4751/9212/6790/9355/6664/23560/3001/1869/6590/3925/3162/3066/5499/11040/22943/2072/409/3434/8751/3433/23028/4188/9775/8904/1663/51042/6996/4792/9421/9532/8091/2932/3428/1649/6368/10856/1522/3309/64771/10763/4133/6612/1965/581/6608/7023/27185/3586/55118/3676/80011/5792/55294/60/10498/51176/5155/59343/1636/5465/5599/54552/5028/171392/567/3080/1400/23394/2801/7341/1565/207/3717/8536/4233/11315/7114/2623/6672/6872/6093/7009/5663/51773/3725/1855/23063/9750/3300/5195/22927/56257/9464/9270/5899/3670/24144/5300/56998/81494/3077/23032/10273/8189/1454/4824/9044/57669/56155/5580/8658/4043/5824/6588/154/146057/57343/5530/5595/166/1601/4776/23493/2962/23462/3397/6717/51339/8864/4488/6653/857/4487/5350/9370
## GO:0099504 23413/57706/136/1138/321/3351/1812/1644/10059/1020/9829/10675/8224/5027/1000/9373/10755/28964/10228/1142/5582/2932/23513/1137/5575/382/6809/1141/9381/91683/5579/6855/8447/8851/5217/8573/1813/8541/57084/9515/60/54413/594855/8618/7476/8411/2332/9699/5337/6853/488/6456/6804/5028/23208/6616/5030/5865/6854/23191/815/148/821/5908/6620/5906/26059/57030/9783/6455/8867/71/8927/320/2901/1609/27253/5868/1861/8775/22999/135/6093/5023/2580/5663/5728/1855/1759/1488/5338/8674/9751/23285/22930/8973/5533/114088/5864/9378/8546/6517/3356/1268/26052/7054/783/22871/5532/6622/107/9581/1499/6453/10497/27445/23396/23621/1129/9024/9162/6843/6844/9900/2259/8448/6812/5874/93664/79953/6571/11069/6857/9863/776
## GO:0090150 3002/1869/64108/81693/85377/2810/3753/3208/9141/637/3689/7027/56993/7534/1445/1020/8266/7159/6731/57214/1956/100133941/4118/10018/5366/29927/10139/55737/55750/25813/5830/6227/6132/10971/54471/7533/6745/56288/5058/5534/6142/22844/3309/7029/6202/6223/8851/134/6845/208/3320/10434/581/7311/79568/64083/11231/6746/6734/5621/10133/5584/3745/26003/5602/9349/26519/26088/7917/23471/2534/6181/55670/6156/673/4218/64422/7529/6217/841/11224/6206/3265/6194/6728/6386/8766/6235/51079/26520/6230/5599/6175/6158/23062/784/6201/6233/80852/6747/6187/6616/3684/439/23163/6729/6170/6143/6134/8548/6176/11261/23463/6188/2664/6192/51125/51762/22883/10369/6193/6129/6147/6222/6208/6210/6232/2064/6204/7531/1121/6726/6229/9230/4864/6228/9409/29082/6167/6155/6128/572/6152/6171/6161/6133/6160/23180/6141/3308/51308/2039/4736/9697/6191/6234/6169/6146/6165/6203/7161/6122/6136/6209/4301/6249/7485/10519/288/6727/25873/6449/9270/6164/9912/23368/6231/6205/6135/22930/6168/51763/5533/6711/4836/5913/7095/6157/2040/6138/9344/8504/4641/56947/51024/9919/9045/23499/8626/6159/5824/9341/27065/7157/64689/63971/25945/2181/596/81854/2803/23426/3875/25837/6844/64112/29928/23255/9847/481/11031/582/65055/8292/5174
## GO:0034764 3627/6373/4283/23630/6347/28999/3458/1520/5336/51083/5031/3757/1812/3753/483/2539/6375/3359/930/8013/5027/2048/6262/57214/8218/6376/3596/1080/1908/5724/88/8811/6769/26291/1785/729230/4878/23204/1432/375346/9002/760/9446/10368/2688/51582/2745/4205/208/6786/10063/623/581/4842/3799/5584/5335/9472/5781/6271/673/6569/9001/54413/1756/3746/65010/781/7015/784/3747/3630/9368/2631/2316/11261/57158/7341/207/2147/3759/4780/23433/5906/11315/7114/79602/10369/4923/7225/81/2852/10776/3779/183/30819/5663/718/6506/57165/8787/3064/10345/5458/799/2695/5741/25/288/5170/4986/1815/287/5649/9722/9992/65018/2719/9104/783/6622/30845/7070/26060/3784/154/825/8660/11132/5295/10268/6548/3736/27347/3643/54997/482/2149/54209/10142/844/6041/187/114882/5311/1389/2259/9847/6717/481/10580/5243/25999/3306/7220/2946/27092/3667/3479/5348/9370/5174
## GO:0002244 7153/55526/5341/5688/5709/5698/5693/5713/2296/55008/5721/5691/5685/5788/5690/5684/5686/5695/8514/10213/23198/865/5699/11051/6659/5714/23212/5702/5708/83737/5692/5704/1106/54517/5683/9119/5610/5591/6654/5694/4004/5718/5682/5716/6422/5707/23648/6688/5696/51441/55326/5008/5719/5700/5717/6722/10197/23094/4291/5706/3313/5710/5134/4851/5977/5978/8861/5777/1636/5689/5720/5701/9491/26108/5711/5715/10413/6929/9841/9861/103/7040/7520/5705/11277/4780/1052/6886/2623/64428/3981/1021/5663/2624/8692/7161/9739/3815/25/1938/23335/5803/10538/22890/55512/4297/3280/2009/3624/2068/56339/7157/4602/4005/2322/91298/4222/596/10272/3213/51205/201163/6938/6469/83700/79819/10468/54502/4254/10443/652/2625
## GO:0071621 6280/6279/6278/2921/3576/6352/1236/6354/6283/3689/6375/3735/3929/5880/6357/6850/51192/1240/5142/3071/1525/4192/1908/728/6356/57118/30817/57402/719/708/1432/4354/79647/8291/6372/84818/3579/6363/5294/23604/5293/972/7409/3680/6366/59341/2660/1441/5879/1435/5144/27202/683/158747/301/6369/3269/1906/23765/5319/9750/51561/8729/3958/7857/3672/7057/5595/23396/7042/5919/9353/1907/83700/7060/10451
## GO:0021761 2146/9928/7804/6715/4830/8941/1812/64211/55079/166614/4771/1020/8013/63827/5629/26047/5901/4192/238/8891/2932/63974/836/7101/10092/8851/8828/1399/30062/55236/10371/581/1813/2113/3799/6722/6608/3065/4142/190/9001/55558/3361/6343/2044/27023/23035/5626/7314/79969/4760/1600/10716/7080/27089/7531/493/1021/5454/5048/8893/5728/6658/1398/7515/9839/2258/8195/22930/2260/220/23135/5649/1392/5802/2263/4763/9638/8648/5914/306/3736/2145/7248/3400/8829/4747/585/7832/2737/1746/6926/2018
## GO:0002369 91543/30009/6375/8807/3569/7186/7133/3134/54440/3593/729230/3592/6556/7855/3606/10892/7292/3553/1604/6885/3565/8809/975/10945/567/1739/50943/383/114548/7189/1178/4092/3440/3077/3456/163486/3554/5590/54795/2625
## GO:0001818 7850/3902/3620/5004/2633/9636/1001/80380/55353/51311/10859/51191/336/3458/27242/2950/3162/2841/9454/64135/1991/1411/10225/23547/5788/9466/30009/706/6375/5552/7353/23586/3929/409/7128/3965/9308/9111/215/1445/4210/671/26191/6504/945/9246/7124/79132/3569/83737/63906/1240/2213/5971/3071/6376/100133941/3596/7305/3297/55024/9734/11326/3134/9641/5371/3593/140885/6441/3623/3592/113/10333/54/708/10293/3326/384/9971/6556/8832/8986/7356/3635/64771/695/684/80149/5734/50856/55666/5621/7292/8288/7706/3586/10385/7099/5987/3718/3146/10457/5443/51176/2302/54476/5045/335/5777/2627/4795/5879/1540/23208/10461/177/602/353514/10524/284/1969/2147/7040/79004/3661/634/6301/50943/9314/4157/5495/27202/28951/383/7114/114548/80772/26146/58509/301/4790/6992/29110/7528/22900/7430/51665/27020/23607/10270/4092/79594/7538/2693/8887/51561/55366/56957/5966/2335/7291/79671/5300/57447/3440/3077/307/5094/9173/2260/5607/26525/59307/3456/5802/11334/9455/4317/29108/7057/9655/7072/2150/4345/3624/1992/23405/57506/408/55914/490/4057/28984/10365/3082/5914/51564/604/558/57045/947/225/9252/54209/54941/10464/7042/79589/7318/55198/89795/90865/23005/1149/3625/2621/7481/11213/90355/2615/347/7043/3479/114899/9370/1524/2625
## GO:0000280 55143/991/9493/1062/4605/10403/7153/23397/259266/9787/11065/51203/22974/10460/4751/27338/4085/81930/81620/3832/7272/64151/9212/1111/9319/9055/3833/6790/891/24137/9928/1164/11004/4603/990/5347/29127/701/11130/10615/79075/9700/4288/2175/91646/994/9918/1063/26271/64180/9585/9735/23310/2253/8877/9088/995/10051/79703/1104/79866/83990/5885/11200/940/1761/84722/54908/10592/8260/55706/23212/23636/54514/3619/10096/2827/7517/7039/5901/4733/7273/80218/116138/655/1908/3297/1950/675/5119/64793/5810/5889/11044/811/25906/29781/81929/1814/3834/3552/9126/10097/56159/29893/201254/3835/8379/11144/56647/3837/3796/2069/1618/57820/23137/11331/10734/5719/4361/685/84861/49856/27183/10300/7756/4342/23626/55795/55968/79998/56984/79003/23244/9183/7917/3553/55125/51547/6683/10419/29947/51510/79598/8900/54998/5155/55124/7175/996/8766/9555/56979/6795/8243/25978/5518/3622/9985/55844/9897/3630/3192/23383/51343/9184/9587/2316/7314/2801/9150/7040/11022/22933/23172/5892/10201/9820/4041/9525/8086/1906/23332/10600/26993/7013/91782/57132/1613/29082/51451/51143/10735/6152/56154/55719/10270/152185/387/8621/6847/23353/27030/29988/858/642636/55755/3976/4292/79643/5300/26013/2059/55781/5573/137886/8697/192670/10274/472/56603/55023/56155/5890/55512/23363/4762/23236/8658/546/3550/4779/25836/23304/10111/10388/5925/5139/27243/9371/25970/28984/7320/126353/8452/1027/1028/3643/7474/23113/23047/1843/676/324/10609/8678/10040/10464/9639/23122/9665/100130958/3306/4926/23126/146691/4488/79884/5159/4487/54361/643376/3479/652
## GO:1903531 7850/2633/51311/91543/10859/56943/336/27242/3418/3162/11314/3351/9466/5552/7128/3965/8997/26191/7124/613/29091/348/2213/6376/7133/55024/9734/3134/5371/729230/3623/3589/10333/151/6422/1814/255057/5211/384/9971/8832/152/79651/84830/134/5008/80149/7351/10062/1113/3033/1813/64111/5734/353500/3745/55607/3586/10385/5987/4988/3553/5781/9515/41/7447/3598/4851/5978/335/6865/2332/2917/7879/5028/23208/5715/3630/8673/10961/353514/80223/284/9727/5908/634/4544/7132/50943/3156/27202/5906/7114/114548/80772/186/301/9525/4889/1906/6992/8074/22900/7430/7009/933/2693/9448/55366/8620/11141/2294/2335/3976/4986/1815/2771/3440/114088/307/6814/26525/26056/83452/1392/55691/1268/2150/6622/4345/5071/3624/1407/1992/9341/5530/23409/8609/4763/28984/29/64285/7779/947/2149/26297/2281/1393/90865/23005/3952/1149/3625/4856/6720/2621/2615/3667/9607/150/114899/18/4129/9370
## GO:0050818 10855/5341/4067/7103/239/5588/6850/5329/348/2160/5054/5578/5345/7006/3170/2161/84830/462/5340/2243/3848/5328/2266/7448/2811/7099/1361/5055/79001/5155/928/3273/7001/2147/634/2244/4780/5156/5270/10019/114897/1906/10630/5154/5663/2039/3818/4846/6915/7035/10544/3827/5580/7057/2150/350/710/2155/22875/5624/947/5592/2149/948/6403/5627/7056/2191/857/2152/5327/18
## GO:0030038 221692/3925/22843/4771/221061/8477/8500/7454/5216/5345/6422/5058/6714/5217/55160/5734/6722/2185/55607/5829/2041/998/2475/9530/335/7016/5879/6869/55604/7046/4233/7791/7984/79933/6281/961/23332/29109/6093/253980/10163/395/9475/387/25/7126/9270/8195/116985/51763/22899/10395/9647/4070/10174/6385/55616/408/4088/5295/28984/6548/22998/8452/1901/7168/1490/7840/7248/9639/23122/1902/8829/10580/10411/50507/585/3693/7481/4653/10391/54361/7043/6863/51466/2006
## GO:0043149 221692/3925/22843/4771/221061/8477/8500/7454/5216/5345/6422/5058/6714/5217/55160/5734/6722/2185/55607/5829/2041/998/2475/9530/335/7016/5879/6869/55604/7046/4233/7791/7984/79933/6281/961/23332/29109/6093/253980/10163/395/9475/387/25/7126/9270/8195/116985/51763/22899/10395/9647/4070/10174/6385/55616/408/4088/5295/28984/6548/22998/8452/1901/7168/1490/7840/7248/9639/23122/1902/8829/10580/10411/50507/585/3693/7481/4653/10391/54361/7043/6863/51466/2006
## GO:0055067 56833/51458/3757/4159/50617/483/7380/55858/6338/533/1312/506/9296/551/525/1080/356/887/5594/9114/1814/6556/760/2896/3741/7274/134/54982/528/27035/23545/1813/6521/9777/4097/51606/25932/552/80763/479/529/523/1585/526/5020/65010/7879/527/55647/6869/478/476/3766/11261/65082/3759/155066/537/84679/186/51382/1906/9550/10312/135/183/1182/6332/8992/27131/2771/1201/1579/5538/4879/535/554/1910/534/6546/766/23682/5595/5164/1203/6548/6337/596/482/4881/481/6340/64699/5166/5172/3778/477/23327/185/1811/6863/66002/10699/730/7021
## GO:0051668 3695/914/8326/5898/3208/1794/3689/5788/3638/6396/1020/55706/348/1000/23657/100133941/4118/7305/55737/23513/1814/56681/1399/10802/3683/64854/4593/5602/5284/3676/1948/5861/2119/1627/4218/3265/1740/9093/80852/8636/5879/975/6616/9463/54434/1739/2316/7040/5906/1742/9871/10243/22883/8417/2898/8174/2901/55764/51304/23096/56899/23237/2339/22872/23180/27020/1855/51308/375790/2693/4983/163/3690/1605/102/6249/9632/9270/1815/9912/8650/9211/11079/4038/9378/10427/2060/5649/9379/22871/7070/50632/27065/10484/3092/375056/201134/5590/23426/2934/481/1012/57728/5764/8292/2239/9863/2743
## GO:0050657 55110/9688/10212/56943/11260/10643/4600/7884/9631/10644/4116/6396/23165/55706/6427/9775/29107/23636/5901/7263/4927/79902/3297/10762/9793/8480/11097/26019/55308/4686/3267/25909/9972/81929/29118/1977/57122/9908/56648/29074/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/57097/55916/81608/10128/23511/677/11052/1660/9887/10898/65109/29890/2733/22916/11338/23279/54715/6426/9444/7014/10921/10073/6429/10250/59343/57187/7175/51362/2332/51637/10657/26097/23039/23225/5976/6432/3192/8021/53371/84271/22794/64901/4928/8888/8570/23299/80145/6421/79228/8086/26993/9883/55421/23237/23180/7538/5903/6209/348995/3178/9984/55746/23293/91746/55781/10482/8189/65110/6830/6431/6311/9295/29072/4641/9939/8658/51213/220988/51092/10211/6430/9877/8106/5813/9284/7248/3087/7048/9961/3800/54847
## GO:0050658 55110/9688/10212/56943/11260/10643/4600/7884/9631/10644/4116/6396/23165/55706/6427/9775/29107/23636/5901/7263/4927/79902/3297/10762/9793/8480/11097/26019/55308/4686/3267/25909/9972/81929/29118/1977/57122/9908/56648/29074/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/57097/55916/81608/10128/23511/677/11052/1660/9887/10898/65109/29890/2733/22916/11338/23279/54715/6426/9444/7014/10921/10073/6429/10250/59343/57187/7175/51362/2332/51637/10657/26097/23039/23225/5976/6432/3192/8021/53371/84271/22794/64901/4928/8888/8570/23299/80145/6421/79228/8086/26993/9883/55421/23237/23180/7538/5903/6209/348995/3178/9984/55746/23293/91746/55781/10482/8189/65110/6830/6431/6311/9295/29072/4641/9939/8658/51213/220988/51092/10211/6430/9877/8106/5813/9284/7248/3087/7048/9961/3800/54847
## GO:0046782 6352/6351/5435/5440/23076/5702/51497/5433/6882/9830/8091/6597/5437/904/5439/5431/3065/5436/1660/7023/5987/11074/2959/51176/5978/5438/5432/22954/51193/6827/6598/2963/6829/9150/22938/2033/64710/6895/5434/23435/6737/25920/51773/3725/7538/29969/51763/11043/25833/55223/5430/1025/6667/1105/5441/10206/2962/10410/81603/3249
## GO:0033077 1236/3575/915/8876/1794/5788/916/100/3549/940/9474/8772/23210/10125/23240/8456/5591/6654/5771/29781/101/6868/7855/6722/677/8324/972/7535/1209/3707/6647/5897/2302/6194/9093/9840/64919/567/7471/50943/2064/3981/1021/2736/814/5896/9935/22890/3714/6777/8325/1499/7157/1960/6794/596/678/1235/6469/54361/2737/6935/652/2625
## GO:0050673 5080/4321/6664/2173/6352/1001/54959/55612/6772/6347/4609/9982/5365/8200/79805/5268/4830/1051/864/57152/1535/5613/3148/3162/9420/2810/55840/1749/8549/3549/2138/7128/10247/2254/7422/5467/4781/5604/7480/8013/7124/1030/5629/348/3091/7039/1956/26298/5469/8456/11202/4192/11171/79084/9500/728/675/6356/56005/5967/5591/5594/5578/4893/7498/79577/1232/6422/5068/64127/3851/6091/3164/3398/8291/2896/2081/2069/79400/8828/9788/6868/11331/2876/8573/949/581/5291/6608/6331/80004/8837/26257/677/2321/9255/8324/11221/4221/5335/6195/3586/5727/3676/1948/5617/3486/5798/1361/3150/7421/55294/7472/654/4838/2683/3146/2475/7476/3265/51384/335/5155/11235/6657/6495/51098/51548/498/3849/64919/58189/5796/4825/6869/10413/6928/6899/653/1739/3037/5587/1969/5828/10765/7046/81285/207/7040/55109/634/1386/26051/657/27202/51146/383/2267/83481/6239/6369/55801/23213/2658/4323/2064/23385/4163/405/57142/57599/6774/55764/1021/572/7051/5663/93974/80173/10818/92/3725/5728/25865/4853/889/55081/7538/2301/2693/650/2624/55366/374/3815/3690/10000/659/858/2324/5170/599/8600/7291/9270/3670/1893/26471/8854/60485/3488/2260/538/26277/6662/7857/4824/5607/1750/6431/6934/5076/6667/2719/1910/23411/64081/4070/7026/3280/2263/9104/7057/55145/8626/687/3915/350/1992/5925/57343/3664/55679/51092/4763/1499/8945/1960/2252/4088/22846/10522/4017/6794/7010/6778/2752/2735/28984/94/51162/3082/3373/3791/1027/1028/5813/7474/6776/947/4804/595/3202/64743/2488/187/5797/2246/10016/7042/3912/3397/4208/8829/5176/283/2247/1295/6591/5468/1012/57608/6469/58495/9037/3952/4856/7494/2191/2099/51157/5764/6387/857/116039/6678/1296/3249/5654/2152/2697/185/3357/3487/367/7049/7060/3479/652/2625/5241
## GO:0030203 10855/3161/9435/50515/10331/8372/2296/3697/3600/9806/1464/1463/6484/27087/10675/9334/63827/57214/2588/411/1950/9957/2651/176/79369/55501/54928/10678/60495/4669/5292/6482/54982/2131/57115/2132/8703/9394/2720/23553/9955/3553/9469/8704/2683/79586/5155/54480/3698/9348/8702/8993/50859/64579/10090/1213/3037/284/11261/10057/207/7040/960/22856/23563/10402/4790/9331/9953/23169/10894/8534/3036/3074/6382/375790/29940/9672/6483/8692/55454/56548/8509/2990/3423/2799/26229/11046/55790/3700/6383/55512/11041/64131/3425/2719/11285/9956/2262/64132/23670/6385/138050/55576/3699/6548/3082/3373/3073/3340/79625/2517/26035/2817/4060/7358/5549/2247/80760/6448/5159/3339/1462/51363/633/2239/2331/1634/11081/4958/4969
## GO:0009132 5214/55526/9688/3101/26330/54541/4830/2821/57103/1841/7167/2584/2597/5230/9631/2023/5223/5208/6396/5210/23165/5315/55706/204/23636/5027/3692/3091/3099/9414/4927/79902/10762/8480/55753/3607/11097/3939/5232/9972/81929/4354/2027/5211/2646/5236/57122/272/5209/79023/9818/5313/229/8573/51727/6521/23511/83440/226/51085/230/23279/2645/7175/1740/5465/2987/4967/8802/5213/5207/4833/51548/11319/23225/10891/53343/3630/8021/53371/1739/954/5571/11277/4928/2026/3098/10201/89/669/8086/405/9883/203/6774/2103/572/283927/51341/5903/348995/55746/863/4656/26471/3356/8473/51422/5224/5562/9611/29922/9759/7157/957/9583/5563/79873/3643/8604/956/4832/2203/2819/26137/8382/3479/26289
## GO:0045582 3559/8767/3574/3575/4860/864/3458/942/8876/10288/5788/100/3549/939/3965/9308/865/6850/10125/3071/3135/8808/4192/54440/3593/8651/3558/3592/11006/101/941/3606/6363/10892/7292/11221/10385/972/7535/3707/3565/9092/9840/8943/1540/3142/7040/51043/50943/114548/301/572/3566/3594/387/2736/51561/5896/22890/8546/57178/6777/9655/1960/5914/4602/604/5590/4179/7048/6469/7494/7704/2737/2625
## GO:2001020 2305/10635/1111/5888/55010/4609/5111/26271/1054/55159/57103/79915/7468/637/7398/7336/2140/11200/2072/79000/2138/8914/7913/142/23028/4282/3014/5531/7454/1663/1956/10721/672/3297/57805/5591/5366/5371/5582/7334/8091/5716/1032/80237/55611/8444/151987/60561/54929/29086/10097/8563/387893/5514/26272/9521/55183/10155/1660/972/9025/4193/56950/3146/3090/7014/6118/5883/22976/4170/9400/6615/8451/22954/79184/2332/23514/51548/2521/3622/10269/64110/2074/51499/1859/23347/754/960/6188/149628/5893/51750/10116/1655/54386/9320/4968/545/79621/55135/64210/9774/9577/56154/55719/8870/51588/54537/4255/51720/64844/25/7178/6498/7515/842/22925/51366/7291/27063/9984/24144/56893/6880/4862/55031/5429/138151/54780/4824/55702/472/1025/598/5580/23411/29072/7158/200734/2067/1407/23201/7157/22891/6787/322/51616/596/55693/54465/6419/10039/55086/6591/57007/6387/57332/79624/4487/1191/51149/4582/4137
## GO:1904062 3627/6373/4283/4318/23630/81831/3755/6347/4067/1535/3458/1520/5336/11151/51083/5031/3757/1812/3753/3208/483/274/2539/8514/6375/10105/55151/930/9456/9474/2048/6262/4644/57214/5142/6376/3596/786/1908/2280/88/1612/55636/2257/5923/8811/6769/1785/729230/1394/1814/4878/255057/7533/375346/9002/30820/9446/10368/8291/2745/1729/79400/3792/6786/5997/11331/10063/623/2056/581/1813/4842/3799/6327/5294/6331/5621/2185/5335/9472/4988/2534/2902/50944/6271/3787/9943/9001/5566/54413/1756/3746/5777/2904/1740/781/2332/784/3747/10891/785/9368/54800/2631/1739/859/2316/11261/2859/57158/7341/1193/5144/2147/7040/23542/4544/3759/5581/1741/6236/823/51297/5999/50488/11315/7114/1742/28954/10369/11060/4923/967/81/2852/7531/351/10312/6324/2903/57338/493/3779/1804/6640/183/30819/5774/64924/2893/57165/5728/8787/3064/782/10345/799/2892/4987/8398/25/63892/288/5664/5170/7291/4986/1815/287/23479/3781/538/5649/9722/9992/2040/65018/1392/27075/6546/9104/2890/783/22871/6622/30845/7070/6588/27091/3784/10681/56848/7881/154/51719/825/10268/845/6548/2669/3736/27347/54997/7402/29098/7779/482/2149/54209/10142/844/6844/187/79026/5311/4734/2259/4208/3270/6717/481/4747/2281/1393/3306/7220/2946/477/27092/2273/23327/857/775/23171/5350/55800/2891/150/5348/776/5174
## GO:0046165 3613/1717/4597/2643/5341/6319/6713/3973/29881/1719/3458/3422/5449/3930/5031/1594/8877/2224/10449/10682/2539/50814/5447/3638/39/79071/2805/7124/348/5901/1080/5724/3157/117/51744/54928/2672/6721/1593/5805/6307/231/3837/120227/4800/4142/2185/2194/3707/6647/4598/3553/7421/654/4802/5978/1585/1181/2222/5028/3706/47/4047/653/10558/1727/3612/10613/3156/80271/11315/7555/9517/4923/3269/2852/8720/4790/1609/51477/1584/650/51360/5092/5741/8912/9619/22937/283871/4801/6697/338/31/10654/1576/6667/51141/5562/7108/6622/56848/11160/9453/9807/1718/5563/51478/51447/5745/427/2246/27122/6309/1581/2247/3952/6720/32/54361/23541/5105/3158
## GO:0006937 10874/1824/59272/1482/136/7136/6870/8877/2023/274/100/6329/147/55151/5743/6262/5142/10021/5724/1143/2626/151/4878/7135/51196/9446/152/134/5997/156/80149/1113/4842/6722/5294/6331/6336/7137/7140/6647/80005/80763/5566/1756/5020/9312/6865/4634/1131/488/2017/27302/6869/4625/1739/476/148/859/2316/7341/1193/5318/5144/3759/89/4633/1829/487/1906/2852/7134/1613/4607/5023/1136/4092/387/3728/2693/6781/3815/3673/2258/6915/4660/287/1832/84193/9722/2982/6546/30845/7139/3784/1760/9732/4608/2702/9759/4636/7138/8654/490/845/6752/6548/29119/3736/126393/29098/5592/7168/2149/1490/5025/4887/5021/10142/844/3270/6717/1907/481/54795/2281/10398/10203/2946/477/857/775/5350/1264/7349/150/18
## GO:0030183 3149/56833/8326/1054/3574/22806/7412/959/5336/5449/4436/1880/578/5788/100/939/930/6850/2213/5795/3071/1380/5591/5771/9734/3175/3623/3589/931/6422/4914/973/3398/1316/3635/695/64421/6868/581/10892/677/55795/2185/3586/3676/3718/5897/1015/3565/7163/222487/5777/3956/4242/5452/1540/602/6929/3955/3516/23529/2033/4189/3688/23228/4323/10312/572/4853/51341/3815/25/55619/5896/57379/6670/22890/472/6777/29760/9730/10014/3624/2874/9759/7157/5295/55846/54856/4066/604/2322/596/678/9452/3087/27434/7494
## GO:0001504 1812/3177/2824/23657/1814/23204/6531/6507/5997/1813/4842/6581/2030/2668/6512/6616/5865/6511/3766/5999/11315/4923/6570/1861/5663/6506/1815/9152/81539/6622/5071/6532/10550/10211/2752/8864/477/6571/6505
## GO:0010771 2633/23603/3475/7473/6696/80128/1020/7143/2048/4504/7533/5747/7224/8851/393/4133/6049/3196/4241/4099/54413/55558/396/4168/1600/2664/7225/1949/1946/81/57142/5663/5728/23105/2039/387/6259/2258/9270/4974/9423/1630/4038/5800/55435/5802/26052/4070/9706/9693/22871/7070/23189/7337/5530/4776/64689/22902/7474/23111/1942/4804/66008/3397/9353/8829/2192/9037/56920/2045/10631
## GO:0070585 3002/1869/23788/2810/9141/637/706/7027/56993/10059/7534/5880/10440/10469/10531/7159/10452/3099/3301/10055/100287932/57602/10018/5366/55750/9868/10245/25813/1649/10971/7533/26521/7332/26517/6721/5534/7029/9049/10456/25793/55486/7855/3320/581/1459/79568/51025/10953/26519/51100/54708/23203/59286/55294/7529/9530/841/293/10075/3998/51079/26520/5599/7323/9776/9804/207/3098/2931/79778/27429/7531/8314/572/93974/3308/89781/7161/9520/26515/9927/10425/55823/23368/9531/5533/4836/130916/65018/54332/54741/56947/51024/5562/8626/5071/54546/23409/7157/665/596/64112/29928/6720/3305/22885/4137
## GO:0001892 79733/10733/133/639/79805/2709/1051/430/7262/50814/6789/6768/4188/5604/3091/1956/5469/9021/655/3297/5594/10049/9421/79977/10959/54583/2885/6788/1050/7274/7855/677/10155/7477/9394/3586/7472/4838/10653/841/1046/5155/59343/6615/653/3516/207/3726/1045/1437/3856/6692/405/3491/2624/3976/6670/8521/79893/5333/7026/29072/3280/2263/5310/7942/3880/2186/23493/22846/8648/1028/4435/2034/5311/23462/51294/58495
## GO:0019748 875/1001/6770/4948/57103/57016/5223/1644/1652/1244/4644/23657/10755/4357/1109/231/1544/10327/2326/54576/1545/7299/1645/1646/434/1638/1565/4157/54905/4780/1491/23474/6490/1497/5446/8574/2327/400/7306/9839/58472/5066/6667/7054/9693/26060/1553/51151/1543/4435/7474/29104/596/8644/1548/22977/56898/7220/84869
## GO:0033209 8792/6772/5688/5709/330/9447/5698/4050/8970/5693/608/959/5713/2950/9705/5721/5691/8877/5685/5690/5684/5686/5695/10213/3735/23198/939/7128/5699/5714/6850/5702/7124/4049/5708/4055/5692/8904/5704/7186/834/7293/5683/7133/958/5694/5771/4792/7185/1147/5718/5682/5716/5707/10293/9971/5696/970/3987/6868/5719/5700/5970/5717/8744/10197/7292/8740/51208/2185/10913/5706/8517/943/5710/51330/29965/9825/9530/841/335/5689/22954/9966/5720/5701/9491/837/1540/329/5711/171392/5715/60401/3604/8996/56928/9020/9861/3717/5705/7132/7114/1896/944/8741/3856/7187/81/8717/22900/81858/8764/204851/10616/8718/51588/8887/8995/8600/8737/2309/23495/29108/8567/2150/3611/5071/2874/10401/79092/3875/83483/25999/2621/3551/4982/9370
## GO:0061136 27074/55872/6790/5347/79016/7336/10213/51377/5702/7480/9978/348/7415/5704/55741/10755/57805/10221/5582/9532/10134/55212/2932/5716/8975/26263/3326/5886/6599/1050/8078/55432/2876/5700/6613/23640/10197/51009/9097/9683/5706/80011/51322/7917/55743/3093/55294/2768/4193/51035/5566/6386/4534/4287/55270/2332/5701/29761/9491/11146/51465/11011/7314/7341/207/5705/22933/4780/65992/28951/114881/11315/369/2931/7327/9817/9709/7874/1263/23376/1453/6872/11345/29978/5663/55070/25898/1855/51136/4092/10869/10956/3300/64844/6449/1452/5601/56893/5887/6135/6880/863/7110/3077/26471/8554/10273/23274/1454/9529/8473/9992/9695/65018/2729/5310/4779/9655/4130/5071/2295/8945/1601/23429/819/64285/9024/2272/54209/9810/29997/210/6469/90865/10769/5988/857/1191
## GO:0016311 9787/1844/1033/993/3613/26472/3932/994/53347/221692/5341/28227/10380/64943/3458/57103/9258/11314/54205/5496/5499/9088/995/4626/5778/10288/10507/2070/5788/2140/22843/23175/1852/5208/2138/58478/5210/4624/22978/60385/9829/26191/945/4690/23076/7124/5531/5801/284352/1133/5536/5795/3071/2280/5610/5771/52/8732/250/8898/2932/5444/3631/328/5775/54/22853/151987/57718/78986/1849/63904/7184/3326/54928/55197/5521/249/6305/8178/5794/5534/51400/5209/11156/11072/8789/3635/134/5514/7803/53/201562/23381/3636/79178/80316/55313/58529/5511/2139/5500/1813/55012/8776/11123/5725/6418/5523/248/9887/5501/11221/27328/5770/10842/1827/3486/261726/5798/5792/55125/5781/57223/5529/9663/10199/63935/92609/5537/7529/2475/8493/9530/8446/64419/5777/1740/5526/4534/23141/2538/27071/27068/9108/5207/5528/10076/10454/9110/51231/5518/5527/5516/55844/5796/5784/54434/51657/23645/8897/55291/1739/22870/476/8612/64062/11261/51020/65125/54840/9150/1845/3717/7040/251/5519/51559/54866/3612/11266/54704/26051/23399/23307/818/5495/1741/5504/8826/186/5524/3633/8725/5780/8867/5509/9107/81537/4249/5782/65979/7531/10776/57460/23523/8226/4621/80034/26012/5525/63928/80895/6093/51207/9562/5774/5494/5520/58497/2822/1847/9749/56940/8555/5728/8036/9475/5470/3064/81566/650/5515/5510/5446/56623/4907/3673/5803/3958/11284/55/10421/2771/5300/23504/23293/9989/51763/4659/5533/5800/9896/26229/283871/8189/5423/1850/57818/6295/79871/5475/23291/7179/22876/10160/2029/10395/65018/5789/9647/5580/5786/8613/64077/5802/11099/3672/6609/9104/26469/5532/56953/4642/1760/10106/5530/8945/63898/55258/5791/23075/55105/92579/4088/8556/3476/8073/6794/10231/57082/9858/596/3632/10217/1843/58190/9814/7248/22908/51205/5799/80279/5797/7042/4208/66036/9665/54843/54961/1848/2281/5787/5793/761/5502/9891/8611/5764/5159/2203/5783/8821/3551/9863/23261/23371/2053/1846/5507/8483/1408/11122
## GO:0030282 9636/1230/8326/29887/1594/3381/5552/55151/2824/246/7480/5027/5743/3091/655/5251/9350/2185/93/654/10457/55787/2201/10269/51374/9451/26585/4146/433/7040/4745/197/657/22904/2623/8074/9562/92/3491/650/55366/5741/659/7291/1893/9923/54880/6662/7071/79176/55512/4015/2268/2719/6546/2263/7020/90/7286/154/2068/4921/4088/490/4057/5745/4920/6779/1901/2261/4256/84059/4208/4322/1278/4077/54795/56172/9365/3952/7481/5764/116039/658/54361/5167/5744/2697/7043/3479/4958/1311/652/54829
## GO:0002706 3902/7037/91543/10859/3575/4436/79915/3329/10225/7468/5788/259197/9466/4068/30009/2207/6375/8807/940/409/3965/6318/7124/5027/3569/4049/56253/1378/2208/8772/7454/5817/7186/2213/10125/3135/164/7133/958/9437/3134/54440/3593/3558/729230/3592/51571/3805/5272/725/695/55183/7855/3606/10666/10892/7292/3586/11126/7409/3553/3146/6885/22976/3565/8809/3133/2302/5777/975/177/722/567/3916/23529/7040/634/50943/59067/383/114548/7189/1178/8741/8417/56940/718/4092/3594/54537/1398/51561/23705/4292/9984/3440/3077/22890/5819/6830/6777/3456/5532/7158/6778/100507436/604/3554/81545/5590/10039/54795/3952/3263/2625
## GO:0030218 9636/6772/1054/54892/4067/3148/9258/2539/7422/3276/9991/4151/3091/23210/5469/3071/3059/51621/5771/10661/3623/8444/60682/1432/836/6688/10320/3398/6223/3635/2056/94081/6521/2113/6722/677/7067/80739/3313/212/28996/8861/6194/7564/1777/3050/6005/567/3717/103/29766/2038/23543/10019/6886/669/2623/6208/10107/405/10296/91/6774/1021/93974/5316/92/4891/51341/2039/54977/7538/2624/3815/2116/22985/9935/4090/6670/2309/6777/4779/3624/5925/2068/118/5926/10365/604/2034/3202/221395/54681/7049/652/25893/2625
## GO:0008286 1978/2888/51237/50617/1019/5588/533/4690/9296/525/6654/5771/8651/10603/9114/9971/6121/5058/6714/5579/2885/30837/6599/208/5970/528/23545/896/3416/51094/5770/51606/3484/3553/5781/2303/8048/529/523/526/2660/6198/81565/527/2887/3630/5290/207/51043/155066/3645/537/1979/23433/197/64710/1176/51382/2931/2844/9550/10312/10458/140710/4976/183/2822/55022/8992/29988/858/2771/2549/23235/51763/7249/6464/8473/55023/535/5580/5786/534/23411/5286/5562/23189/26060/5791/8660/5295/5164/4303/3643/5590/324/114882/5919/9847/2308/2241/10580/5166/9365/3952/6720/3480/5167/3667
## GO:1905477 3002/1869/3458/2810/3208/9141/637/3689/7027/7534/1020/7159/7124/2048/57214/1956/245812/5366/6769/10971/54471/7533/382/6809/5058/5534/7029/8851/391/208/8878/3799/5621/5584/3745/2534/7529/841/3265/8766/5599/7429/784/975/3684/54434/54550/1739/11261/1969/207/7040/5581/3688/9495/5780/10369/2852/2064/7531/572/7430/7161/163/10519/288/5583/5170/3958/9270/27237/23368/11079/5533/4038/6711/6810/4836/2040/4641/56947/51024/8626/5071/7157/5295/10268/5357/22841/2181/29098/596/54209/3675/23255/9847/2042/10580/25999/5764/4035/5174/10551
## GO:0030177 259266/1001/8326/5688/5709/5698/5693/5713/5721/5691/1749/8607/5685/8549/5690/5684/5686/5695/7473/22943/10213/23198/2254/5699/6659/5714/5702/7480/7097/5708/5692/7415/5704/1956/8796/79705/54994/5683/1950/57805/5694/5718/5682/79577/55737/6597/5716/6422/5707/64750/6714/5696/5719/5700/5717/10197/9679/25805/51704/27185/5706/5710/8629/5689/5720/7015/5701/9491/5711/527/5715/10413/331/3516/9861/65125/6907/5705/8932/23399/8312/1896/54475/23213/4790/1654/1453/1613/6497/5494/10159/55182/5754/3728/79718/650/55366/25/9839/80351/51366/5300/55031/10927/1454/23500/81847/406/2719/9101/8658/2263/23499/3611/8434/23189/1601/4088/22881/7320/10023/4920/6299/7474/4300/8840/9736/25960/3087/65981/54795/1277/51339/6469/9037/85458/857/27123/79971/6424
## GO:0016125 1717/4597/6319/6713/29881/6770/51302/341/8435/3422/3930/9420/2224/10449/10682/2539/50814/5447/3638/6646/39/5467/79071/348/5901/51700/1080/4504/3157/1588/2230/8431/5444/1056/2784/9971/6721/1593/6307/3837/1050/8542/10948/3949/949/10577/54982/4800/1071/2055/2194/23780/27329/337/6718/6647/6256/4598/3565/4802/7436/1585/1545/335/9784/2222/47/1583/4047/19/1727/10613/3156/7555/8578/8720/351/6820/1609/4864/3069/1584/847/51360/9619/22937/4801/319/338/3990/31/10654/6667/8029/51422/10858/51141/26119/6609/4779/5562/7108/11160/9453/1718/5563/37/51478/51706/55911/3931/33/114876/2246/2232/6309/1581/3953/64788/3952/6653/51474/6720/3991/1589/32/23541/2053/3158
## GO:0016073 6884/2957/5435/79650/55726/5440/5433/6617/6882/25896/4686/2960/5437/80237/2958/904/55656/55197/8178/81556/5439/5431/6877/79035/4654/5436/2961/22916/6619/2959/5438/5432/80789/5452/2963/23379/51593/57117/5434/65123/6878/26173/7702/8812/6618/10302/22936/56257/26512/6908/6880/64859/1022/5451/54973/23248/64852/79871/6621/79664/5430/10208/1025/6667/79066/905/55756/114034/5441/2962
## GO:0046686 983/4521/4318/5111/6770/4496/1841/3162/4501/4494/2805/1956/5536/1536/3297/4504/4493/5594/4495/1147/1544/4520/2937/6647/6569/5599/7015/7323/1616/567/7341/207/383/4968/4864/3725/847/3815/23498/5741/6652/5601/538/2729/2067/5595/1027/7779/8644/1528/2934/2353/210/6678
## GO:0030278 6664/9636/1230/8326/26271/1051/79412/1594/10507/5552/22943/2824/7480/7124/5027/3569/3091/9770/1959/4192/655/10736/4880/5594/2101/3570/6422/54857/1432/2778/5747/3398/1050/5734/7477/2185/4221/5727/1192/93/654/4091/5566/4851/6096/5978/5020/55787/2201/57154/10269/6869/51374/1435/26585/4146/3516/5587/51430/7040/4745/3727/22856/537/197/23051/657/79697/1052/1655/4041/9249/8994/25819/2623/2658/8074/10312/6497/1021/92/3491/10766/650/374/5741/659/9260/9464/7291/56998/1893/4038/8519/3488/4090/54880/6662/6546/2263/7020/90/8626/3611/25836/3199/154/10140/4086/5595/9759/5087/1499/4921/4088/3399/490/4057/860/2735/2662/3082/51564/182/4435/7474/57045/596/6779/1901/8840/8646/4256/7042/3397/84059/4208/3400/4077/54795/56172/6591/9365/4488/5764/116039/7704/658/54361/5167/2737/2697/63923/7043/6863/3572/7166/3479/4958/1311/652
## GO:0034446 3695/9928/2633/23603/10562/10675/79834/4192/1785/811/708/2049/5747/6714/57091/3987/1399/2243/10109/2266/8324/4241/3676/80005/5861/7301/2041/998/335/5879/10461/55604/3037/2316/5881/2244/6281/23380/6239/10630/79778/3911/1946/81/8874/2039/84168/1398/3690/25/10519/2335/11078/9270/56672/55435/8516/4070/3611/3915/23189/9341/8322/7010/4739/558/3685/1942/10979/3912/1793/8829/2241/55742/2192/4653/10631
## GO:0010876 366/26279/8792/5320/80830/29881/9388/336/341/8435/51083/10257/24/2867/30968/3783/10650/2058/23250/29923/706/6696/10280/3929/6646/9600/215/1244/2172/5467/4282/6850/7124/79135/5027/3569/345/2180/348/4363/10938/5406/28234/1080/1119/1950/1588/5771/4792/6555/2182/9641/1374/23760/1394/5360/5444/57476/5321/8647/1056/1814/64240/3933/9971/6721/1109/8291/2760/7274/8542/6845/64220/208/522/10948/3949/6579/949/10577/30814/80149/5660/80831/10062/1813/27183/4481/26207/114885/1071/10599/2055/2661/23780/27329/337/5727/51228/10478/6256/2806/80763/3553/5781/55294/2168/6754/654/51054/81575/58488/9885/58526/5608/26154/8694/7436/5020/64137/335/1636/5465/1645/28965/4833/4843/50487/6198/2170/23200/5306/80833/51499/81579/9399/26031/51099/10765/19/10877/207/634/1401/55754/114881/80772/23344/186/302/2583/9525/114897/4923/81537/10079/1906/4790/738/5565/4864/9227/1376/183/123/5319/3069/718/3074/20/950/5007/23673/55852/624/2587/4547/23762/3690/8398/57194/5972/22925/8600/7376/1815/10347/9619/1579/11000/55937/7110/23120/6342/788/319/338/3990/4824/31/56729/10396/6554/6777/1392/80765/5580/51422/23411/26119/114884/118987/10998/7057/51761/8714/57104/5071/10499/114883/3624/350/5825/374868/2874/1407/9611/57205/8660/5563/8322/26020/8648/6578/4602/2181/3685/10087/2169/948/51454/5025/55911/3931/8204/4018/11001/114882/114876/64600/9854/5950/5243/5468/23461/6469/4023/7357/3952/1149/79068/6653/5244/51474/857/5205/54762/4035/1191/32/5167/161291/347/185/6863/5104/54677/9370/2167
## GO:0072163 4609/6943/2297/2296/2253/4072/2138/10220/7422/7490/655/9500/10736/55083/6422/3975/384/3237/6492/9244/9350/6608/5915/10409/5727/7475/2303/4091/793/2668/2302/6495/6928/7471/1739/26585/7040/186/3911/4089/4087/7849/183/5979/3217/6382/4092/3207/847/650/55366/56998/4090/2260/6662/5076/2719/4070/3280/2263/5310/3611/6385/4086/5228/5087/1499/80000/4088/5914/4435/6299/596/7482/5311/2246/10252/9353/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0072164 4609/6943/2297/2296/2253/4072/2138/10220/7422/7490/655/9500/10736/55083/6422/3975/384/3237/6492/9244/9350/6608/5915/10409/5727/7475/2303/4091/793/2668/2302/6495/6928/7471/1739/26585/7040/186/3911/4089/4087/7849/183/5979/3217/6382/4092/3207/847/650/55366/56998/4090/2260/6662/5076/2719/4070/3280/2263/5310/3611/6385/4086/5228/5087/1499/80000/4088/5914/4435/6299/596/7482/5311/2246/10252/9353/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0050772 3897/10507/7473/7422/5604/23566/3984/51393/6792/5058/6091/7224/1954/1002/6722/8153/27185/7074/51330/11344/8766/396/1826/9175/81565/23191/9798/23394/2664/10494/1946/51199/1382/347733/5048/8482/387/5458/659/6498/2335/9839/9423/57698/4916/6474/23499/79006/3611/4131/627/6794/29882/22902/4804/2803/4803/9353/8829/4747/9037/22906/6387/4035/4915/4137
## GO:0072347 890/114/1789/6870/3351/3066/1812/3208/100/3359/1020/9456/1788/7852/8772/5536/5582/1785/1814/3326/1141/6531/3309/5309/5970/199/1813/2185/2806/4988/7074/2902/4193/1816/2475/5020/2775/6869/10533/5581/5999/6529/5520/8682/8620/4986/1815/5179/3356/1392/1268/63826/2354/6609/9455/10014/6622/7337/2155/5021/23284/1393/3176/27092/6863/18
## GO:0051896 50852/10855/29851/3932/1236/9258/942/2253/1116/1411/7295/940/2251/409/5880/2254/9542/930/7124/27006/8904/85453/7039/1956/5795/3135/6376/1950/3059/56005/55024/2651/2264/2626/92140/7498/1649/1814/708/1839/3326/57761/5747/6714/23239/2885/6788/2069/391/10456/101/5008/2876/941/685/3320/3606/6363/1813/23533/8822/5291/5294/10385/5293/7409/2534/5781/2475/2250/9530/5155/5526/4534/1440/6366/1646/2660/2889/5879/5527/3630/4150/9368/9518/1739/10193/23035/859/284/1969/5296/5290/26281/7046/23252/207/4486/7040/3084/4233/9314/4157/3688/10565/2159/5156/11315/10019/114897/55801/7066/8823/2852/8074/2064/2249/57142/5154/79727/5979/6425/2248/10818/5728/79594/57333/59338/799/8692/374/3815/1605/10519/8600/112464/9270/2549/51763/6237/3488/2260/7249/2022/22876/6934/65018/23411/2065/2263/7057/3611/23612/3375/3092/2155/6453/2252/8660/5295/6794/7010/10268/3082/10253/3643/8644/5025/2261/114882/2246/10016/29997/201163/2247/50507/9037/9365/3952/4254/2621/2099/4653/5159/8817/2152/9863/3667/2066/1524/2625
## GO:0097237 6280/983/2146/1894/3934/10549/2643/5111/51765/1719/6354/7296/2950/3162/3066/57016/8877/664/7295/1317/8807/5831/10280/5603/7128/10105/25841/8914/1788/2395/8013/7124/3569/50506/5743/348/1663/7226/5536/1536/9131/655/3297/4504/10131/9588/140885/3045/1785/113/328/26034/2742/4914/1728/6714/6688/9446/3049/9283/10327/2876/5970/80149/5660/2861/2176/2113/3046/241/55607/8288/3586/337/6647/60/2168/2877/4193/1545/5155/5151/11235/2882/3050/2936/3747/10276/4353/7001/1616/10891/29914/2021/4217/51109/1193/6188/4233/5581/9314/4780/23530/383/11315/10494/7225/2741/51714/4790/373156/5074/3779/10587/5598/572/2938/5728/2879/10013/59338/10935/847/23334/6415/23064/25/11179/3178/4846/55937/4258/53905/8737/538/23135/2309/5076/65018/7703/55512/5580/55139/23411/3709/7054/9104/51024/5742/5562/4025/5071/4985/1373/2880/6778/51780/10365/3082/2878/4602/3791/55364/1958/7173/2098/3043/558/3240/948/8678/7837/2954/2308/10516/358/2946/2944/51157/27244/1471/388/57332/4487/213/9429/2952/2947/4056/80310/10974
## GO:0061041 10855/5341/4067/7103/239/7128/5588/5467/6850/5329/50506/7852/348/2160/5054/5578/5345/1839/7006/5068/3170/2161/84830/1026/462/5340/2243/8573/3848/5328/58529/2266/4654/6665/325/7448/11221/2811/4627/7099/1361/2303/5055/51330/2475/79001/3265/5155/928/7429/3640/3273/7001/58189/177/199731/2147/634/5581/2244/4780/3156/10565/5156/5270/10019/301/83481/6239/114897/1906/10630/23332/5154/5728/55966/2039/1398/3818/4846/6915/7035/5864/53905/6431/3827/5580/4638/8613/7057/2150/23189/350/710/2155/4088/825/22875/1027/5624/947/5592/8840/2149/948/6403/23122/7048/5627/2247/7056/7494/2191/857/54361/2152/2697/5327/150/18
## GO:0001823 4609/6943/2297/2296/2253/4072/2138/10220/7422/7490/655/9500/10736/55083/6422/3975/384/3237/6492/9244/9350/6608/5915/10409/5727/7475/2303/4091/793/2668/2302/6495/6928/7471/1739/26585/7040/186/3911/4089/4087/7849/183/5979/3217/6382/4092/3207/847/650/55366/5972/56998/4090/2260/6662/5076/2719/4070/3280/2263/5310/3611/6385/4086/5228/5087/1499/80000/4088/5914/4435/6299/596/7482/5311/2246/10252/9353/8642/2247/6469/79633/7481/116039/7704/54361/2737/652/2625
## GO:1903034 10855/5341/4067/7103/239/6696/7128/5588/7143/5467/6850/5604/5329/50506/7852/348/11202/2160/4192/5054/5578/5345/1839/7006/5068/3170/2161/2896/84830/1026/462/2043/5340/2243/8573/3848/5328/58529/2266/4654/6665/325/7448/11221/3586/2811/4627/7099/1361/5792/2303/5055/51330/2475/79001/3265/5155/928/7429/3640/3273/81565/7001/58189/177/9860/199731/8428/2147/634/5581/2244/9314/4780/3156/10565/5156/5270/10019/301/83481/8578/6239/114897/1906/10630/23332/5154/5728/55966/2039/1398/3818/4846/6915/7035/5864/53905/538/4916/22876/6431/3827/5580/4638/8613/5802/7057/2150/23189/350/710/2155/29956/4088/825/22875/1027/5624/947/5592/8840/2149/948/6403/23122/7048/5627/2247/2281/7056/7494/2191/5764/857/4035/54361/2152/2697/5327/150/18
## GO:0001954 55612/1236/916/7422/5795/6376/2932/6422/3987/2185/27185/2041/6366/3273/5879/1435/8826/6281/1021/6093/3728/59339/9448/1605/25/10519/9270/57669/6370/9647/3611/7070/6385/2013/8631/4814/4088/7010/3791/7402/5590/948/7248/8829/1012/4653/54361/4680/1307
## GO:0051496 22843/4771/8477/5345/6422/5058/5217/55160/5829/2041/998/2475/9530/335/7016/5879/6869/55604/7046/7984/79933/6281/961/29109/9475/387/25/9270/22899/9647/10174/6385/4088/28984/22998/7168/1490/7248/9639/1902/8829/10411/50507/7481/4653/54361/7043/6863/51466
## GO:0097366 890/1236/3066/1812/3383/3251/7186/9131/6001/4504/9734/1785/1814/54583/1787/1017/5997/6363/1813/8837/6647/2902/1269/41/1816/5020/5153/3747/3184/5999/2903/135/8787/1398/5903/1815/2983/1800/4548/7054/5530/1621/4314/5021/4929/2308/26575/358/6571
## GO:0099173 6712/7804/8326/10397/78999/9758/5641/10288/10059/8997/1020/9456/2048/348/1000/2213/23657/3556/91752/2047/8898/55737/9118/6792/2049/382/10097/54583/2895/8851/8828/1399/2043/58504/9762/1072/5621/55607/9419/4593/4076/8976/2534/7074/50944/60/2119/54413/1627/998/2668/7476/869/2904/1740/9093/23316/5063/25978/1607/2017/3706/9463/3630/54434/1739/4897/378/1741/1742/10243/71/816/22866/87/10458/4976/23237/2339/10163/5048/5728/1855/10013/23613/2693/4983/102/11141/51104/10152/55619/11079/4038/2596/9378/4916/10611/5913/81926/5649/9722/5789/9379/5802/26052/6405/22871/7337/22891/115703/3643/7474/1942/4628/3675/26037/80823/65981/26045/8829/1140/4747/4744/1501/3480/5764/2045/8292/9863/2743
## GO:0015696 10859/6535/4067/51458/6572/3351/3737/1812/2207/100/2824/6850/1133/6397/1814/4878/1137/1141/6531/695/6845/1813/4842/6581/57127/2668/10928/6865/8723/6005/8673/5865/26281/11315/1437/1906/6570/6580/54407/1861/135/5023/6623/5663/116/1136/4986/1815/8973/788/3356/65018/1392/1268/6879/6622/5071/6532/6558/3350/4887/51686/6584/6583/8773/358/6387/23446/6571/18/4129/5174/80736
## GO:0021782 6279/6664/26227/4821/6663/57211/712/10397/4067/2950/1812/79152/1020/6659/10675/7124/745/3569/7097/9334/1956/4192/4504/728/25825/8891/56288/3398/2896/2358/208/3949/6608/5453/4099/6647/7099/3553/928/3845/9463/177/1967/3766/8890/207/7040/22933/3084/10810/9968/8892/23385/351/6497/9331/64398/4919/135/1021/10100/5454/5663/79885/8893/5728/10319/7431/6900/1605/429/4916/5354/53616/3611/8506/2068/79628/4763/23405/4920/26011/54209/9639/3400/1902/2934/6469/4653/443/4035/4915/1191/54587/3913/4137
## GO:0030326 5307/2019/50515/8200/8092/3066/9496/2253/1749/7473/22943/3549/2254/257/5469/655/10018/55636/79977/54928/2778/60529/3239/8323/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/2201/51098/3236/26585/5089/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/2736/51776/27077/4154/9464/7291/5916/6909/4038/8854/2260/1750/6474/56603/54903/2719/7020/8626/25836/8434/1889/2702/5087/1499/1387/860/4920/6299/7474/6468/7042/5396/140467/9742/6469/57728/4488/3899/775/116039/79659/7704/4487/2737/65250/2697/6926/652
## GO:0035113 5307/2019/50515/8200/8092/3066/9496/2253/1749/7473/22943/3549/2254/257/5469/655/10018/55636/79977/54928/2778/60529/3239/8323/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/2201/51098/3236/26585/5089/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/2736/51776/27077/4154/9464/7291/5916/6909/4038/8854/2260/1750/6474/56603/54903/2719/7020/8626/25836/8434/1889/2702/5087/1499/1387/860/4920/6299/7474/6468/7042/5396/140467/9742/6469/57728/4488/3899/775/116039/79659/7704/4487/2737/65250/2697/6926/652
## GO:0051928 3627/6373/4283/6352/5026/1230/6347/6351/5336/5031/1812/578/5024/2539/706/6375/409/930/9456/5027/2641/6262/57214/23566/6376/3596/117/6769/51393/375346/9002/9446/920/6786/623/8573/581/5335/9472/2902/6271/9001/5155/2847/781/784/7222/9914/2631/353514/815/57158/7341/22953/2147/846/2916/3060/4923/7225/2852/5319/57165/3064/10345/799/6781/25/5170/3958/11027/287/9992/1392/4638/9104/783/6622/30845/7070/56848/825/490/10268/6548/7466/2149/5025/844/187/5311/2259/6717/481/3306/7220/2946/6387/5159/857/7349/776
## GO:0032231 5341/3925/22843/4771/8477/8500/7454/5216/6376/3984/5345/6422/5058/5217/55160/5734/55607/5962/50944/5829/2041/998/2475/9530/335/7016/7429/5879/6869/55604/2316/7046/4233/7984/79933/6281/961/23332/29109/6093/10163/395/9475/387/25/9270/8195/116985/51763/22899/10395/9647/4070/10174/5071/6385/23075/55616/4088/5295/28984/6548/22998/1901/7168/1490/7840/7248/9639/23122/3397/1902/8829/10411/50507/585/7481/4653/10391/54361/7043/6863/51466
## GO:0051168 51512/55110/3429/9688/10212/56943/11260/2810/7884/9631/4116/7295/10541/6396/23165/1020/55706/6427/9775/29107/23636/5905/5901/580/1959/4927/79902/10762/8480/11097/26019/4686/2932/3267/811/9972/81929/64328/29118/1977/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/10892/81608/23511/55341/23214/11052/1660/9887/2010/10898/65109/29890/2733/3313/3553/84934/5781/22916/11338/23279/4193/6426/5566/10921/6429/10250/57187/7175/51362/10657/26097/57154/23039/23225/5976/6432/5784/8021/53371/84271/11261/22794/7040/8536/4928/8888/11315/80145/56478/79228/8086/9147/26993/11214/7531/6672/9883/5494/5903/6209/348995/3178/9984/55746/9531/23293/92335/91746/55781/10482/8189/10768/6830/6431/6934/9295/29072/9939/5310/7157/6430/9877/55696/8106/7248/3087/10411/6310/2621
## GO:2000377 2305/59272/445/2643/1719/8838/1535/3458/57103/2950/3689/3383/664/2539/575/706/5806/5880/215/6850/9474/7124/5165/613/1410/3692/5743/3091/3099/1956/672/655/7305/4504/10131/140885/7498/1785/10333/54/1432/3326/384/26574/2885/2358/1026/55486/23408/55532/3320/9263/80149/199/7416/8837/2773/2185/3586/5873/6647/7099/2534/3553/2902/2475/1545/5155/5879/329/7001/3684/3630/10193/378/207/3717/2147/7040/22933/9314/4780/1401/23530/8570/5740/683/11315/186/961/1906/4358/148022/493/6774/183/4835/1497/55022/9475/10013/387/23334/5446/1647/2771/8737/9722/2309/23576/5076/65018/5580/7020/11334/9104/4317/7057/2150/6622/5071/56848/9759/23564/7157/4088/5547/10365/7755/2717/3643/3043/3240/596/947/225/8644/948/5025/4314/8678/5311/2308/7048/57126/23410/10516/50507/7350/3952/5159/857/6571/1191/185/4137/1524
## GO:0015980 983/891/4609/6472/9650/57103/2642/1537/4200/3418/9377/54205/5499/63976/637/7262/664/57017/2673/4726/55847/4704/50/1737/5834/158/29796/7386/3419/5160/2395/8013/4160/4725/4723/3091/10165/2108/7415/7915/1349/4708/2271/80183/4700/4504/5255/3421/10131/54539/1351/5161/1329/7360/3417/2932/4719/2820/4697/4702/155/4694/2778/1340/5236/2992/1431/6389/4712/8445/1544/208/4722/4191/4711/1337/7381/4710/7384/2997/5500/1327/9167/5501/1738/3416/6391/4706/51052/11232/3420/9238/5443/2475/2645/116285/2538/4717/51079/1743/4967/4720/8802/79072/4709/1352/4843/4713/10514/5018/2109/60493/10891/23178/80025/3630/1345/4701/29103/5290/4729/207/11277/5260/5504/23530/4714/6901/4696/11315/89/2931/5509/27089/6390/513/79675/2103/6834/10975/2647/7385/5257/5506/1355/55022/374291/847/6392/79085/5741/4707/8908/2998/112464/4204/863/4698/51763/9016/1350/23479/2548/8801/4695/4705/51103/65018/8803/5256/4724/2110/51422/2632/22868/9945/6622/178/5162/7157/4776/5261/8660/37/3643/5836/27232/5837/8604/221395/29997/201163/23410/3953/10580/51294/9365/8864/5502/2819/5167/10873/3667/7349/3572/3479/5507
## GO:0006022 10855/3161/9435/50515/10331/8372/2296/3697/3600/9806/1464/1463/6484/27087/10675/9334/63827/1118/57214/2588/411/1950/9957/2651/176/79369/55501/54928/10678/60495/4669/5292/6482/54982/2131/57115/2132/8703/9394/2720/23553/9955/3553/9469/8704/2683/79586/5155/54480/3698/9348/8702/8993/50859/64579/10090/1213/3037/284/11261/10057/207/7040/960/22856/23563/10402/4790/9331/9953/23169/10894/8534/3036/27159/3074/6382/375790/29940/9672/6483/8692/55454/56548/8509/2990/3423/2799/26229/11046/55790/3700/6383/55512/11041/64131/3425/2719/11285/9956/2262/64132/23670/6385/138050/55576/3699/6548/3082/3373/3073/3340/79625/2517/26035/2817/4060/7358/5549/2247/80760/6448/5159/3339/1462/51363/633/2239/2331/1634/11081/4958/4969
## GO:0001657 4609/6943/2297/2296/2253/4072/2138/10220/7422/7490/655/9500/10736/55083/6422/3975/384/3237/6492/9244/9350/6608/5915/10409/5727/7475/2303/4091/793/2668/2302/6495/6928/7471/1739/26585/7040/186/3911/4089/4087/7849/183/5979/3217/6382/4092/3207/847/650/55366/56998/4090/2260/6662/5076/2719/4070/3280/2263/3611/6385/4086/5228/5087/1499/80000/4088/5914/4435/6299/596/7482/5311/2246/10252/9353/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0021549 2146/9928/6712/2019/6751/8941/2296/64211/916/16/23287/1020/5604/5629/2213/4192/6753/1152/2618/3975/23026/5058/3309/2895/8851/1399/4669/199/6608/6331/4761/10978/372/5781/471/8704/9001/23322/3746/8861/7476/869/54910/10891/7471/3184/4760/1600/58155/5270/186/27089/23385/8455/8443/5663/1398/23017/2736/4983/25/7515/473/8925/4204/6095/51150/538/25861/79934/5802/146057/7157/23544/22891/8322/8648/2735/6752/4628/1902/1272/5764/65250/18/57502
## GO:0006413 1978/6352/8872/8894/5499/8662/4690/468/7124/3692/8440/28985/10987/1981/26986/5610/6199/55024/8891/4686/6227/6132/54915/3646/9470/1977/4869/6142/6202/6223/51441/1618/64410/8664/7458/1965/7311/4528/9349/1968/8562/6256/22916/6181/5611/6156/9669/6217/2475/8668/23367/11224/6206/6194/7175/10480/1964/2332/27335/6235/6230/6175/1653/6158/5936/10657/6201/6233/27102/10605/6198/9086/8669/6187/6170/9451/1967/23645/1982/6143/6134/6176/8667/8890/8661/6188/8665/6192/1979/51386/6193/6129/6147/6222/8892/6208/6210/6232/6204/1939/1654/253943/1983/6229/6228/6167/6155/6128/6152/6171/6161/6133/6160/6141/8893/4736/6191/6234/6169/6146/6165/6203/6122/6136/6209/8846/22927/10209/400961/25873/6164/6231/6205/6135/6168/8666/10289/54505/6157/6138/9045/6159/3315/56339/9811/1973/55364/1975/8672
## GO:0033555 3620/2643/116372/1812/5024/706/8989/2558/1312/348/4192/1981/5582/117/885/153/4914/1977/7101/774/6530/4842/7416/7419/4761/64854/41/3358/55515/6869/22953/23542/1803/2898/5979/116/5728/824/1815/4204/4862/5896/1620/64856/5179/5649/1392/1910/6335/7057/5530/10522/3350/596/5025/4887/1621/4929/2701/4208/27136/2697/6863/7349/7060
## GO:0044272 5163/875/79094/9435/6319/262/50515/2730/10331/6576/2950/79017/4507/1464/4522/58478/1737/1463/9200/79071/6484/5160/10675/5165/9334/63827/2180/9061/23657/4357/176/25874/2182/5161/92086/8050/64834/79369/55501/9060/10678/9446/51144/26873/23305/201562/10327/4143/6482/55066/51074/23205/4552/8703/1738/2194/2937/9469/8704/2683/79586/54480/9348/8702/55748/10861/64579/10090/47/55256/81616/284/54704/22856/4780/3029/23563/4144/1491/2639/10402/27010/373156/9331/23169/8534/2938/1836/2940/2687/29940/6483/635/51660/55454/2941/9524/51703/56548/8509/4258/11046/5538/55790/441024/31/27430/38/23417/6667/79066/11041/64131/4548/64132/2729/2949/6622/5162/5164/79966/2098/2181/3340/27306/26035/2954/6785/7923/11019/4060/7358/5549/60481/5166/2948/2946/84869/2944/1462/23743/51363/633/32/2331/1036/2952/1634/2947/54898/51380/11081/4958/4969
## GO:0006354 2146/6663/56943/5435/11047/55840/51224/10849/5440/5457/6921/6749/51497/5433/57805/4686/79577/5437/80237/904/6924/8178/8563/9533/27336/5439/64425/5431/221830/2968/11198/5436/9025/26610/22916/3150/9014/8518/6917/27125/8861/9400/5438/5432/4298/23476/6923/2074/3192/6827/79736/2963/6829/9150/2071/10102/7343/5434/79101/25920/9013/8812/4331/23168/55140/2965/80349/22936/9015/9984/6908/1022/9646/404672/10771/5430/6830/1025/905/902/29072/54623/2967/5441/2068/2962/84172/55837/4300/6469/643376/6919
## GO:0002221 6280/6279/8685/55765/51311/79931/64581/8767/91543/330/3654/4067/1535/1520/9258/5641/11314/64135/2867/3329/23547/3689/7096/1514/27293/3659/7353/23586/2219/3929/409/7128/81622/929/26191/79132/7097/83737/8772/63906/4792/7321/57162/9641/7334/1147/6441/6397/57402/10333/708/89870/7184/2672/10010/9971/1508/64127/3662/4615/6197/695/2243/5970/9261/10062/2266/7311/23643/26057/55666/57115/23151/3665/8517/7099/7301/6271/3146/6885/5608/54726/841/55601/7323/8993/6233/4795/7316/10454/1540/329/3684/331/8915/7314/85363/3661/64922/5581/2244/58509/7189/26065/7187/7867/10695/29110/57142/26253/148022/5289/7322/23180/9684/9698/79155/8780/1755/23118/55366/7105/10318/5170/51284/30849/51135/79671/23369/11027/7100/23098/7098/10392/8737/338/9865/5802/2150/26060/2874/10211/26007/55914/4057/22841/948/54941/29997/9867/55198/4214/1513/80216/2099/11213/857/81035/3551
## GO:0014032 4902/6664/23603/2296/8092/3091/9221/655/1908/5594/6949/2637/8828/202018/10371/6608/1072/2348/2303/2668/59349/1947/6899/3084/553115/657/1906/3911/65979/5979/5308/2335/9839/9464/7291/3670/8854/6662/1910/6405/3280/90/8929/5595/182/10016/8829/6591/6469/58495/83989/4254/10512/1909/3357/652/2066
## GO:0006766 1381/29968/10797/79581/8875/6472/1719/81693/8564/5646/3458/6017/8942/6515/1594/5641/8876/11330/8884/6513/8566/873/80308/4522/81034/6573/2694/5467/7124/56922/51293/5947/4363/874/5360/54/6948/2672/6121/9446/1593/55065/120227/7274/5644/27249/5096/79178/440387/4552/2348/1591/6256/3553/7421/4524/60496/79001/3141/6615/1583/80025/29914/25974/55312/6470/53630/8277/1727/5091/2356/10840/27010/9962/4790/8074/9227/55163/4594/51588/5826/2350/23498/55/8854/2260/441024/1576/56603/686/8029/4548/2729/1543/55788/8644/5095/1528/57834/316/2638/6591/10560/1592/80704/64087/5167/6947/66002/4036
## GO:0051289 6999/7083/3768/6472/362/919/5471/1807/25939/51733/55856/3028/10059/8989/5315/3251/7226/7915/5967/6261/88/5830/1666/3834/56302/973/359/9033/7408/4143/79077/51074/361/3416/226/6256/2744/57192/9885/23208/23373/6767/25776/4284/978/6470/2801/3759/1491/6263/10600/79054/93974/6847/847/5195/5092/55/54974/8854/220/31/51181/63826/64784/8626/7157/2878/3615/27232/1429/33/5311/54795/55198/84869/2203/32/51466
## GO:0051193 5163/4199/9688/26330/54541/57103/4200/9631/5223/5208/5880/6396/5210/23165/55706/51805/23636/5027/5165/3692/3091/23657/4927/79902/4504/10762/8480/11097/402055/9972/81929/2646/57122/5209/79023/9818/55066/23511/51085/2534/23279/2645/7175/5465/5207/51548/11319/5879/23225/7001/10891/3630/8021/53371/5571/54704/11277/4780/4928/23530/89/8086/405/9883/6774/2103/1497/10013/51341/5903/348995/55746/863/4656/26471/3356/8473/65018/51422/5562/6622/9611/9759/7157/957/5563/5164/7755/3643/3240/4314/8604/2954/5166/2203/2819/26137/3479
## GO:0003151 6664/1482/2296/2253/2138/7422/3091/655/6261/8928/6091/8828/1399/5915/2348/2303/4091/4851/2627/6495/6899/3516/1386/657/9249/4889/4089/26508/3725/54345/5308/659/9464/7291/3670/6909/10427/2022/64321/23129/1856/3280/2263/3611/25836/8321/2702/1499/2535/23493/5914/182/7474/4887/4734/7042/4208/8829/7048/10370/55742/4488/7481/10512/23414/4886/7049/7122/6926/2006/652/4036
## GO:0045619 3902/3149/1493/2175/56833/3559/639/914/8767/3574/3575/4860/22806/864/3458/942/8876/10288/5788/30009/100/3600/3659/3549/940/939/3965/9308/865/6850/1378/10125/23240/8456/3071/3135/8808/4192/6654/5771/54542/54440/3593/8651/3558/9760/729230/3623/3592/11006/6422/3662/3398/3635/695/25793/101/3111/941/80149/3606/6363/10892/677/7292/55795/11221/10385/972/7535/1209/3707/6647/3718/3146/3565/2302/5777/9092/9840/8943/1540/7001/3142/29102/10193/7040/51043/50943/114548/301/4323/2064/572/2323/3566/4092/3594/387/149041/2736/51561/814/25/9580/3440/2648/5896/22890/8546/56603/57178/6777/3456/9655/3624/56339/1960/5914/4602/604/558/5590/4179/678/11005/7048/6469/7494/2621/7704/2737/6935/652/2625
## GO:0042129 3620/1493/6352/7037/80380/3559/8767/10859/1051/4860/7412/959/27242/11151/10288/5788/916/6375/3600/3659/3549/923/940/5880/5588/3965/10148/4690/912/3569/83737/8772/8440/23240/3071/3135/100133941/7133/6654/11326/57162/54440/4004/3593/3558/6441/729230/3592/3109/6693/384/836/8379/970/7356/920/23308/3606/2056/6363/199/8744/5621/7292/3586/10385/7535/3553/1604/3146/10457/3565/3133/2302/5777/9093/3113/1947/975/11146/2796/177/1739/7040/51043/6188/50943/59067/383/3115/301/7189/944/1178/11148/2064/5074/3594/30835/149041/8995/51561/6708/64844/3958/5573/6777/3280/29108/6385/1499/8654/9231/57045/4179/7048/79679/6469/3485/3952/2615/3572/3479/652
## GO:0015893 79581/4609/362/81693/6535/6572/51083/3351/6541/3737/1812/292/10682/1317/6510/81034/1244/6573/2694/9076/4794/51293/4151/4363/1133/10165/23657/79751/2352/3045/10991/9390/1814/23204/1137/26034/6948/6556/1141/760/6531/3049/55065/55238/10786/6507/64849/5997/6565/94081/58157/1813/3046/6581/2348/2661/8856/10478/57084/5781/2668/293/10928/65010/6865/3050/54896/6005/6512/5865/6511/3766/26281/284439/26266/55754/5999/383/11315/54716/57030/4923/1906/6570/6580/1861/135/183/6623/5663/1136/6506/2693/291/2587/2350/79085/11230/10227/4986/1815/9152/8973/29957/56729/3356/65018/1392/8029/1268/83447/6879/6622/5071/3624/10550/6582/8322/6561/55788/56918/3043/4887/8604/6584/358/10560/80704/8864/477/5002/6387/6542/5205/6571/6947/9429/2697/6505/18/5174/80736/4036
## GO:0048010 1535/2296/4688/4689/2254/7422/4690/3091/8440/1536/3071/9047/4504/1432/5747/6714/10006/5579/8828/6461/3320/9261/5291/7410/2321/2185/7448/5770/7409/63916/9844/2534/3553/5062/2303/5829/998/5879/2887/10787/23191/199731/5587/5296/5290/9146/3678/5600/23213/7867/405/10458/6093/10163/25865/9475/387/1398/3690/2324/7423/3315/5228/7424/5295/8322/3791/558/3685/26999/4734/10016/3087/1793/8829/22905/26509/79812/25759/11117/8817/10451
## GO:0045807 6347/3561/3024/1535/336/5336/26228/867/1794/5788/5806/3600/10059/409/7422/929/3601/6850/7124/613/348/2213/5795/3071/1950/5054/4240/57118/7036/1785/6441/3560/811/55681/6556/7018/2358/6363/1813/7448/7275/566/5873/6647/8976/3553/3565/7287/335/2332/6366/2889/51160/6401/79872/10461/9463/567/26585/859/284/197/5906/302/6455/967/81/7251/23011/1861/10960/718/2624/163/1759/717/636/3673/10347/3077/5533/5538/2719/26119/9779/29108/22871/2150/6622/50632/26060/5530/3092/54806/10211/6453/1601/408/29/4153/7474/558/3685/51479/948/977/5468/25999/10103/55198/11031/2621/23327/4908/4035/1191/9863/6424
## GO:0140056 4751/983/5347/10733/54801/65009/5341/7277/203068/10652/7283/10383/55835/1080/22919/10814/9793/10640/55722/79959/6809/55559/4957/9702/4867/3320/9657/8541/3745/23354/55125/55014/23256/80776/5566/23322/4218/79598/79867/1069/9342/8766/10121/8636/6804/5518/6616/9662/8655/8673/11258/26276/11190/10490/815/11116/57787/10382/65082/10244/23344/22994/22897/51134/23332/7531/5116/1453/26005/261734/5048/79441/1778/80321/10540/22995/11311/858/5664/27077/1488/55755/9751/5899/11064/22981/26123/6814/1454/6813/23233/7846/54903/8481/79600/118987/1639/146057/9341/54806/80254/95681/9738/55142/80184/7840/1781/10142/9814/54820/22863/54843/5108/6812/347240/22832/5577/6857
## GO:1901991 991/10403/79733/983/4085/81620/2146/7272/9212/9319/6790/891/5347/51512/6347/29980/1063/5111/5688/5709/26271/641/1869/1029/5698/55159/5693/5713/5721/2810/5691/1031/995/5685/1019/5690/5684/5885/5686/5695/11200/10263/7027/10213/23198/8883/54908/4683/3276/63967/5699/6659/5714/5702/1030/9978/5708/5692/7517/5704/672/8328/5683/1820/23019/5591/5694/835/8454/5371/5718/5682/79577/8091/5716/1032/25906/5707/60561/2765/9125/23026/29117/8379/5696/1017/7029/1026/25793/11170/5719/5700/581/84861/5717/27183/29883/60672/7756/10197/7465/677/55795/4849/10385/56984/5706/131601/5710/4193/10498/6118/10457/1874/7175/5689/5720/5701/9491/5711/5715/51499/4848/9861/2033/5705/55367/9314/1263/8738/51451/51143/1021/4850/57472/57165/5728/51347/9337/5934/1647/989/55755/5325/57060/55031/138151/8737/472/56155/1112/9344/3550/10106/5925/25959/7157/79960/26058/6500/51065/28984/4303/3275/1027/596/10217/1843/324/678/595/58190/4194/5311/80279/23194/29997/51339/25949/7832/10769/2273/5988/57551/51149/4582
## GO:0110053 6712/5341/29767/3055/1236/3925/7111/11151/119/9087/274/57180/3383/22843/4771/8477/4690/246/10095/8500/10096/7454/8440/5216/23616/3071/6376/3059/6356/88/1496/3984/5345/6422/382/10097/5058/8936/10092/2885/10456/5217/822/7408/57175/10109/10094/55160/6710/5734/54942/1072/2185/55607/9873/10093/5962/5987/8976/50944/5829/10178/2041/998/9948/2475/11344/9530/9113/335/1440/7016/5063/6366/7429/5879/2017/6869/9463/10787/23191/55604/1739/55243/2316/7046/29766/4233/5581/10565/5999/7114/7984/79933/6281/6369/961/23332/29109/6093/10163/10677/9026/395/9475/2039/387/4868/6708/25/11078/10152/9270/8195/116985/51763/2059/6711/55435/22899/2909/10395/9647/5580/5756/4070/11034/4641/51332/29108/10435/10174/2150/5071/23189/5921/6385/118/23075/55616/4088/5295/28984/6548/22998/1901/7168/1490/7840/7248/9639/23122/3397/6709/9353/1902/8829/2934/57731/2241/10411/50507/54551/9037/585/85477/51474/24142/7481/4653/6387/10391/54361/10788/7043/6863/50853/80206/51466/25802/2006
## GO:0090100 7272/6664/55612/9688/8200/63893/2297/2254/142/2805/1030/655/10755/1460/2626/3326/6868/23144/53918/4221/93/654/4838/4851/28996/6386/3622/27302/653/3516/7046/22938/7040/2033/657/23213/2658/4089/4087/91/23770/92/3491/650/659/4756/3077/2022/79176/2719/8516/3280/90/7057/3611/3624/1601/6794/1387/94/2662/1028/4435/57045/11030/201163/10370/4926/4488/7041/4487/7043/7049/23090/652
## GO:0007369 4318/2001/4324/7296/2296/2253/7290/3689/51471/60436/7473/22943/2138/4771/8013/6862/655/10736/9421/10139/79577/8091/6422/3975/89870/3170/3172/3281/154796/1954/2139/9350/2131/6722/2132/7479/1284/1738/8324/3196/7448/3586/3676/93/2303/4838/5566/8861/6194/335/2627/6615/3691/6657/6928/1969/65125/3678/9314/4155/657/3688/56983/6886/23187/23332/4323/4089/4087/9573/5598/3914/23275/7709/10818/92/1855/3557/3207/23168/3690/1605/659/2294/2335/3673/2116/6045/8195/9646/7403/5573/2260/23135/5607/57669/64321/60626/6911/5076/2719/8516/1856/29072/54623/2263/90/2114/4317/8289/3624/55578/55614/4086/1499/7157/4088/1291/1301/8452/7474/57045/26011/3685/79923/8646/3675/187/3912/23122/7048/7358/25949/1295/1290/4313/3693/1294/7481/1289/3909/79971/3679/9370/652
## GO:0010565 5163/133/5688/5709/6770/5698/5693/341/5713/4953/5721/2171/5691/5685/5690/5684/5686/5695/10213/3638/23198/215/5699/5714/5702/1312/51805/8013/5165/5708/345/3692/5743/5629/5692/551/5704/23657/672/5683/5694/2264/1374/5718/5682/5716/5707/57761/1728/9971/5696/51582/208/23408/5719/5700/55066/10062/5717/10197/51094/337/5706/552/51085/5710/3553/2168/654/4946/58526/54576/2475/5978/1181/5465/5689/5720/5701/9491/2170/10891/5711/80025/5715/3630/653/9861/207/5705/634/54704/10613/11277/5581/27120/11315/79602/1609/5565/493/4947/9612/9926/2693/650/635/2695/7291/7376/22937/23038/23417/1268/51422/23411/51141/9104/4779/6622/11160/23409/8660/5563/37/5164/1958/225/8644/33/51686/10464/27122/2954/1581/60481/5468/5166/55198/6720/857/32/54361/3667/9370
## GO:0048675 9355/3897/5459/3475/7473/80128/7422/1020/7143/348/4504/3984/1785/51393/2932/6792/3326/5058/7224/8851/8828/393/7414/10371/4133/3320/1954/1002/10479/6722/6049/27185/4099/51330/54413/11344/55558/8766/1826/9175/81565/2017/4825/8239/23191/4897/23394/2664/3688/57142/23011/5048/1855/8482/5458/10439/6259/659/25/2335/9423/57698/4916/1808/5802/6405/5532/23499/3611/26053/4131/29882/22902/7474/2803/6586/4692/9353/8829/80208/9037/9201/6387/56920/4035/214/3913/4137
## GO:0045165 5080/4821/2001/5307/56833/1482/54845/8543/1051/3574/5449/2253/30012/55079/30009/3475/22943/3549/2138/4063/9095/5457/3569/474/5629/63978/7490/8456/10736/25928/5591/3175/5371/3593/79577/6422/6693/89870/3170/836/7101/3662/3398/6656/5081/10215/2636/54738/2139/4654/23040/6608/26038/8324/4617/5727/2303/4838/5897/58158/2475/4170/7476/9113/2627/6660/9480/6657/6495/2128/64919/50937/1540/4825/6928/6899/3236/6929/7471/9181/4854/3516/11281/8643/7046/4760/51043/7005/10716/3084/50943/9314/10660/657/3688/8022/4633/6886/7080/10630/2623/4089/4087/9573/3226/23770/6774/6666/5454/5663/4853/3594/3207/54345/387/64641/23168/650/2624/2736/51561/4618/2258/2116/429/3670/6909/6095/4656/10538/9646/2596/4090/2260/23135/4916/6662/3714/64321/8521/6911/4855/6934/5076/56603/4762/4286/7026/54623/3280/2263/90/2114/4779/3199/4086/1499/7157/23314/23493/860/6778/5914/10253/182/4920/2619/596/26011/2034/79923/4208/5396/8829/2247/5468/6469/6097/7041/25803/2737/1746/367/6926/652/2066/3169/2625
## GO:0003229 1482/2296/5457/4624/5629/6262/5469/2280/9421/55636/7135/8928/3398/7137/6256/2303/6910/4851/4634/10269/27302/4625/3516/56999/7046/5318/7040/3084/657/4633/1829/79810/4089/7134/4607/4092/10277/3670/1832/2022/10848/2263/7139/23493/1301/7168/7042/57493/23414/7049/6926/4036
## GO:0010332 3627/4609/6354/1535/57103/578/867/5788/11200/142/23028/3014/1410/85453/3297/675/5591/5371/2002/5428/3309/1026/2876/2547/581/339/4221/79073/4193/3265/10269/10413/2074/11011/7520/11277/545/3981/51776/7486/5423/404672/7516/472/598/5562/10206/7157/1958/596/50507/2625
## GO:0043122 55765/1894/6772/79931/8767/1236/51026/330/3654/2950/3162/6283/54503/9188/11040/7088/6285/7128/3965/9100/27032/7124/23636/8772/6398/4055/8904/64170/843/5536/7186/6376/834/356/2280/958/57162/7052/9641/7334/1147/140885/92140/10333/10010/9971/8795/64127/5579/4615/10758/920/10342/684/5970/80149/6363/9516/8878/26057/10892/3065/8837/10133/51704/7706/972/8517/7099/124583/2534/3553/6885/841/6574/22954/1936/6366/1653/3956/6275/54862/329/23476/80833/8915/5587/10346/9020/2316/284/207/85363/6284/3661/7132/7329/55367/5581/5495/65992/1896/1491/7189/54386/55870/11214/8717/29110/10475/148022/22900/4919/81858/5494/10616/9218/24138/79594/28952/79155/387/8780/23118/56957/7105/10318/25/5966/5170/51135/8600/4215/1893/6095/7098/10392/11043/55223/8737/10771/65018/5187/23411/29108/399/2150/54469/5071/56848/3315/1499/8945/10206/56674/57506/825/4057/23390/7474/8743/80762/2149/948/7188/1902/81603/23005/80216/10769/2099/57161/3551/2697/3357/79971/9370/1524
## GO:0043547 10563/2146/29127/55635/1894/54959/8437/1236/57706/1122/23603/5902/9712/10507/1794/3383/92154/9824/10059/2665/8601/8477/8997/5996/5905/9938/613/6004/9681/3996/23616/10125/3071/84079/9462/23092/1123/6001/958/9744/10762/28964/6356/6654/10113/5923/2932/3267/11033/153/23513/55854/6422/51291/60682/50848/6792/4914/10297/50807/26286/1857/3987/391/1399/393/8853/208/58504/5997/55200/6363/55160/9605/9628/1124/3993/23094/116984/5657/8394/2185/116986/55114/7409/259173/10483/7074/9515/663/25780/27352/22821/4650/2041/79890/6000/2302/3265/7813/10928/6366/396/9138/2775/2889/10276/81565/55843/26230/55738/6102/79658/3655/4952/1969/8301/2664/3268/577/3688/10565/5999/5906/9610/8826/55803/23348/23526/7984/6281/23380/6369/5998/9826/10235/2064/26130/9815/1121/1983/9901/23527/10982/23161/84364/6251/8131/51495/4649/116/8874/9754/395/116987/3725/6904/4594/375790/8787/1398/5922/5903/4983/9448/4301/85360/55188/6494/10144/858/6002/80243/9912/27237/5300/55619/64411/22930/116985/397/9827/5909/10636/57148/4916/23329/7249/60626/22899/392/2909/10395/23236/1856/9459/8502/79874/9693/9104/8498/54828/10435/2150/79822/7070/83478/23108/5921/10681/51520/9732/10484/2776/4763/94134/55616/408/398/163486/115703/4739/9922/55357/29/394/84986/7474/22841/1901/9905/2149/11211/26037/9743/7248/9639/1793/54453/9411/8829/253959/10641/23365/26575/10411/216/8786/7481/4908/5364/51306/54361/9135/90627/3357/55296/8490/10451
## GO:2001251 991/10403/7153/4085/81620/7272/9212/9319/891/4171/5347/3159/9700/1063/26271/1789/5885/2072/54908/4683/142/8260/23028/1786/9474/7517/672/55611/25906/25842/6714/3720/6688/8379/65057/55226/26155/5927/84861/7756/6418/55795/339/5079/56984/22823/7014/5253/7175/9555/54552/3183/55011/3192/6598/23133/7520/50943/51750/54386/9320/55818/7013/6497/3020/51451/51143/4331/23063/7515/1487/80351/51366/55755/7291/3178/23293/79991/57379/54880/26277/6830/472/56155/23081/23411/25913/8658/546/3550/6879/6622/5394/10111/2067/56848/7320/1843/80169/324/26036/55693/6419/167227/5252/7349
## GO:1990138 6790/9355/53335/8437/3897/5459/3475/7473/80128/7422/1020/7143/7852/8904/348/9373/4504/5967/23769/9362/3984/1785/51393/2932/6792/3326/5058/8936/7224/8851/8828/393/7414/10371/84298/5361/4133/3320/1954/1002/10479/6722/6049/27185/4099/3676/7074/51330/54413/11344/55558/8766/9699/1826/6456/57154/9175/81565/2017/4825/8239/23191/4897/23394/2664/3688/8826/2016/57142/23011/22999/5048/1855/79594/8482/5458/10439/6259/659/25/127833/2335/9423/50618/57698/4916/1808/5802/6405/5532/23499/23025/3611/26053/5071/1499/4131/23767/6794/29882/22902/55364/7474/5590/2803/6586/26999/4692/9353/8829/80208/9037/9201/6387/23327/56920/4035/6857/10631/214/3913/51760/4137
## GO:0072655 3002/1869/2810/9141/637/706/7027/56993/7534/5880/10440/10469/10531/7159/10452/3099/3301/10055/100287932/57602/10018/5366/55750/9868/10245/25813/1649/10971/7533/26521/7332/26517/6721/5534/7029/9049/10456/25793/55486/7855/3320/581/1459/79568/51025/10953/26519/51100/23203/59286/55294/7529/9530/841/293/10075/3998/51079/26520/5599/7323/9776/9804/207/3098/2931/79778/27429/7531/8314/572/93974/3308/89781/7161/9520/26515/9927/10425/55823/23368/9531/5533/4836/130916/65018/54332/54741/56947/51024/5562/8626/5071/23409/7157/665/596/64112/29928/6720/3305/22885/4137
## GO:0051817 820/6355/6352/7298/3838/6351/3429/1991/3853/2597/5479/5806/23076/5702/348/5610/6882/10018/9367/9217/6441/8091/6597/23513/904/9126/5272/6372/3841/3837/920/5340/3839/80149/3065/3836/1072/325/7023/10898/566/6256/23633/2959/51176/28996/5978/841/293/51193/2332/10332/3840/6598/9150/10533/22938/2147/7040/2033/64710/5091/383/10670/302/23435/5196/572/8812/3725/9218/30835/8692/1605/10318/858/51763/25833/4916/64848/2040/6667/598/11334/2150/1105/5071/4088/4057/8106/4153/3643/3685/1511/358/25827/3249
## GO:0032945 3620/6664/1493/80380/3559/10859/1051/27242/51083/11314/10288/6375/3549/3965/83737/2213/23240/3135/7305/11326/57162/3558/6441/7940/6693/384/836/8379/7356/4332/3635/695/5621/3586/10385/10457/2302/5777/11146/2796/1739/7040/51043/50943/383/5585/2064/5074/149041/64844/5573/472/6385/8654/9231/57045/79679/6469/2615/652
## GO:0048864 4902/6664/23603/2296/8092/5788/3091/9221/655/1908/5594/6949/2637/8828/202018/10371/6608/1072/2348/2303/2668/59349/7476/1947/6899/3084/553115/657/1906/3911/65979/5979/5308/2335/9839/9464/7291/3670/8854/6662/1910/6405/29072/3280/90/8929/5595/182/10016/8829/6591/6469/58495/83989/4254/10512/1909/3357/652/2066
## GO:0050672 3620/6664/1493/80380/3559/10859/1051/27242/51083/11314/10288/6375/3549/3965/83737/2213/23240/3135/7305/11326/57162/3558/6441/7940/6693/384/836/8379/7356/4332/3635/695/5621/3586/10385/10457/2302/5777/11146/2796/1739/7040/51043/50943/383/5585/2064/5074/149041/64844/5573/472/6385/8654/9231/57045/79679/6469/2615/652
## GO:0046824 51512/1894/3458/2810/7545/10541/999/8882/5743/5901/3059/5594/2932/1432/64328/80149/6608/10155/11052/1660/2010/3553/22916/4193/5566/3843/7175/10657/2316/5296/7040/8536/23435/7531/8841/63928/5494/5663/3728/8692/51366/9531/55781/6934/5580/7157/57506/4088/5295/55696/4734/10411/6469/3952/2621/2737
## GO:0006869 366/26279/8792/5320/80830/29881/9388/336/341/8435/51083/10257/24/3783/10650/2058/23250/706/6696/10280/3929/6646/9600/215/1244/2172/5467/4282/6850/79135/5027/345/2180/348/4363/5406/28234/1080/1119/1950/1588/4792/6555/2182/1374/23760/1394/5360/5444/57476/5321/8647/1056/1814/64240/3933/9971/6721/1109/2760/7274/8542/6845/64220/208/522/10948/3949/6579/949/10577/30814/5660/80831/10062/1813/27183/4481/26207/114885/1071/10599/2055/2661/23780/337/5727/51228/10478/6256/2806/80763/3553/5781/2168/6754/654/51054/81575/58488/9885/58526/5608/26154/7436/5020/64137/335/1636/5465/1645/28965/4833/4843/50487/6198/2170/23200/5306/80833/51499/81579/9399/26031/10765/19/10877/207/634/55754/114881/80772/23344/186/302/9525/114897/4923/81537/10079/1906/4790/738/5565/4864/9227/1376/183/123/5319/3069/20/950/5007/23673/55852/624/2587/4547/23762/3690/8398/57194/5972/22925/8600/7376/1815/10347/9619/1579/11000/55937/7110/23120/6342/788/319/338/3990/4824/31/56729/10396/6554/1392/80765/5580/51422/23411/26119/114884/118987/10998/7057/51761/8714/5071/10499/114883/3624/350/5825/374868/2874/1407/9611/57205/8660/5563/8322/26020/8648/6578/4602/2181/3685/10087/2169/948/51454/5025/55911/3931/4018/11001/114882/114876/64600/9854/5950/5243/5468/23461/6469/7357/3952/6653/5244/51474/857/5205/54762/4035/1191/32/161291/347/185/6863/5104/54677/9370/2167
## GO:0045834 133/1236/6770/4067/336/3458/341/8525/30968/5447/215/930/8013/7124/5743/348/551/1374/26291/9971/5747/6714/64127/2358/134/208/3949/949/6363/10062/7410/2321/2185/116986/27329/337/552/51085/3553/8439/2168/654/58526/3358/2475/335/5155/6610/5465/6366/6343/2170/975/10891/3630/55626/5587/51099/207/2147/7040/7132/23399/5581/6901/5156/183/1081/2822/13/3491/824/9926/2693/3815/8398/1385/30849/7291/7376/9619/57406/3356/23417/55512/5580/2268/26119/23682/9104/5562/57104/56848/23409/8660/7010/2322/2181/1917/225/2261/2488/2246/22863/1389/221395/1581/2247/10580/60481/5468/6720/5159/54361/185/3357/26137/3667/10451/9370
## GO:0097756 952/59272/133/3351/3383/5743/551/1956/1908/5724/5910/151/40/152/3741/134/3792/2243/1113/2266/3274/80005/1816/1636/1131/80852/3352/6869/3630/148/207/846/2244/1401/3156/3269/1906/183/5023/387/624/27345/659/8195/59/3356/1910/6546/3363/10242/5286/1889/9732/2702/6532/490/3350/2149/1621/1907/54795/3952/8864/477/857/1909/2697/185/3357/150/1311
## GO:1900034 9688/9631/6396/10808/23165/55706/23636/1410/6119/26973/4927/79902/3297/10762/57805/51501/5594/8480/27000/10049/11097/9532/51278/2932/9972/81929/3326/2288/57122/79023/9818/3281/6117/3320/9261/23511/10728/3337/23279/6118/2475/64223/9530/7175/23225/8021/53371/815/2033/818/4928/8086/816/545/7531/9883/7266/5903/348995/55746/9531/9529/472/23411/5595/1387/947/573/3305/26353/4137
## GO:0098801 1535/1312/551/1814/134/1813/552/80763/5020/5155/6869/81285/186/1906/135/183/6781/27131/2771/51763/5800/4879/554/1910/2150/2702/2013/2149/4881/2621/10391/2697/185/6863/9370/10699
## GO:0008630 1869/54541/3162/2810/79915/2956/637/11200/23028/4282/7124/672/7133/675/57805/10018/835/9641/5371/3428/1032/80237/54929/8445/1026/64782/972/7917/27141/3090/29965/5883/28996/6615/22954/3622/2074/51499/602/1969/22938/2033/960/6188/7132/27429/572/204851/51588/7161/64844/10210/25/7178/6498/842/4292/6880/55031/26471/5423/138151/598/23411/29108/8626/23612/7157/4776/5295/51065/51616/596/64112/7507/6591/57007/6387/1396/1191/4582
## GO:0007259 6352/6772/6347/11009/4067/3458/11314/3066/5788/7428/3600/4771/9111/7124/3569/9021/3596/958/3297/1950/3059/3587/5771/3570/10617/3593/8651/10603/3558/729230/3592/3455/2688/231/6775/55620/5008/3606/2056/9244/29883/51379/3562/51094/9306/1442/3586/5770/5617/2534/11137/3718/4851/3565/1545/5518/23568/2074/602/3588/23529/4760/1600/3717/9146/2147/7132/59067/10019/55801/1437/1436/2689/6774/183/5979/6773/8995/5515/51561/3815/3976/3670/3440/9646/1270/8554/84444/22876/3454/6777/79893/3456/54741/3280/5310/9655/5175/3567/2322/6776/2149/2261/10464/5311/5753/2241/8835/3952/5618/3263/857/2690/3572/1489/3479/2066
## GO:0031345 53335/952/5365/3066/26228/3475/7473/22943/6696/81618/80128/1020/7143/2048/348/11202/4504/1785/9856/152559/8934/7533/2672/382/1716/2288/5747/50807/1522/7224/8851/5217/2043/393/10371/4133/6049/5621/3196/4099/1948/2534/4193/10498/54413/79598/2904/55558/6366/396/59341/3956/3273/9860/567/4168/6014/1400/1600/2664/23251/5780/7225/1949/57142/2580/5663/5048/5728/23105/387/7431/6259/9448/10519/2258/4974/4134/9423/112/1630/4038/5800/5909/9139/9529/23329/22876/6911/5580/5802/7025/26052/4070/9706/9693/8558/22871/7070/23108/23189/7337/5530/29116/29956/4776/9738/22891/64689/22902/23258/10253/7474/23111/1942/4804/66008/3675/7248/1809/3397/11075/9353/1902/8829/6695/5793/9037/10769/56920/2045/5376/4035/51466/4117/27124
## GO:0018958 1001/2643/6770/4948/6715/6870/2304/1812/3689/1644/1652/3251/1312/50506/4644/5469/23657/27284/10755/55737/1814/1141/6531/231/1813/2861/5409/1610/7299/5153/434/1638/3684/6528/6620/4157/5053/11315/186/6490/7038/7849/2903/1497/3642/314/7306/9839/9464/1815/51301/10404/53905/538/1734/7054/9693/6622/5071/26060/6799/51151/4435/7173/7474/3350/596/3067/2034/1621/9627/4881/4929/7042/6817/1735/7220/1733/3249/4128/7166/18/4129/2625
## GO:0032984 81930/146909/11004/6712/3159/51373/29088/4609/5341/29767/28998/54541/3925/7111/6182/92815/5499/51650/119/51642/6183/664/57553/51081/28977/9829/64960/7124/11222/7415/65094/28985/23616/90480/80183/3920/4778/5119/9793/55168/65003/88/51069/55052/65005/2932/6597/8444/63875/26586/9801/7818/9553/56648/29074/51073/23401/1857/51318/6599/3796/1984/54148/10763/64963/822/51116/65993/7855/65080/27183/10300/6710/55239/6150/3799/3396/51021/11198/4528/4281/1072/6418/7479/64976/79929/6603/56945/9349/55173/5962/64780/8562/6683/60488/55014/29093/57192/51510/64975/9711/9948/58526/79590/4905/11344/54998/64981/26589/9342/59341/7429/26284/6456/25978/81631/2107/6602/5018/5976/51504/10269/8673/10573/7471/55604/55037/9181/6598/9798/4040/28973/740/29766/65082/8312/79752/54948/6605/6455/8867/9525/28957/83743/23332/54516/7251/1939/91782/57132/11345/7141/2580/10677/6604/1855/10013/2039/5195/6708/78988/23064/122704/10519/11078/2258/64601/1452/24144/3831/1201/56893/9645/2059/6711/7405/23274/23710/10241/327/11337/10240/1856/11034/51332/2150/8289/50810/6588/154/8321/23107/146057/118/27243/6601/51023/1499/4131/2535/23075/440738/10023/25876/3643/29104/9617/324/63931/444/22863/23122/11075/6709/2934/57731/10884/89795/347240/9037/85477/51474/3480/11213/857/79443/89927/57551/50853/25802
## GO:0007179 6664/55612/50515/8200/63976/867/409/142/2805/1030/23625/10755/11171/2651/3175/5371/1785/4052/50848/8928/3326/64750/56288/5747/6714/3309/6868/7311/9719/25805/2348/2661/4221/5829/4838/4091/6885/28996/50855/2734/5045/6386/9480/8287/2201/4093/2660/6233/7316/10454/57154/9110/3622/8754/5796/8239/7471/9518/58533/9958/859/7314/7046/23370/22938/7040/2033/7791/7080/10637/4089/4087/6497/7044/9372/9392/5494/2339/3725/51701/4092/51341/387/6498/858/1385/5170/51592/23592/56937/5300/10273/4090/2022/4015/23411/64081/8516/90/7057/26060/4086/1601/7157/4088/6794/1387/3248/94/2662/1028/4435/23089/57045/5590/3675/8425/26036/10979/2488/27122/7042/3397/1278/7048/753/201163/1003/2353/10370/55198/1281/2530/65997/1149/3693/11117/857/4053/7041/2615/5654/2331/7043/6935/2200/7049/7122/54829
## GO:1901988 991/10403/79733/983/4085/81620/2146/7272/9212/1111/9319/51514/6790/891/5347/51512/6347/29980/1063/5111/5688/5709/26271/641/1869/1029/5698/55159/5693/5713/5721/2810/5691/1031/995/5685/1019/5690/5684/5885/5686/5695/11200/10263/7027/10213/23198/8883/54908/4683/3276/63967/5699/6659/5714/5702/1030/9978/5708/5692/7517/5704/672/8328/5683/1820/23019/5591/5694/835/8454/5371/5718/5682/79577/8091/5716/1032/25906/5707/60561/2765/29086/9125/23026/29117/8379/5017/5696/1017/7029/1026/22809/25793/11170/5719/5700/581/84861/5717/27183/29883/60672/7756/10197/4342/7465/677/55795/4849/4221/10385/56984/5706/131601/5710/4193/10498/6118/10457/1874/7175/5689/9555/79184/5720/5701/9491/5711/5715/51499/51343/4848/9861/2033/5705/55367/9314/1263/8738/51451/51143/1021/9577/4850/57472/57165/8555/5728/51347/9337/5934/51720/1647/989/55755/5325/57060/55031/138151/8737/472/56155/1112/9344/3550/10106/5925/25959/7157/79960/26058/6500/51065/28984/4303/3275/1027/596/10217/1843/324/678/595/58190/4194/5311/80279/23194/29997/51339/25949/7832/10769/2273/5988/57551/51149/4582
## GO:0046545 2175/1051/8372/2296/3383/5806/409/2189/7422/7490/675/1588/835/9468/117/3623/3417/6422/9757/836/57122/6714/11144/3309/2069/10184/581/23626/2661/269/2492/6647/7425/5798/5245/9510/2796/3955/9210/7314/8890/668/8879/5156/8892/4323/4089/91/25976/116/8893/59338/3815/4327/4846/26471/56729/1495/2309/472/6777/598/23411/2516/3624/7337/408/8322/268/3643/596/6586/8204/84159/9353/283/2620/3952/3625/4254/2099/174/658/23414/54361/1602/5241
## GO:0046330 8792/8767/5871/1236/11184/959/9258/22943/9618/939/7164/6504/6850/7124/4055/64170/7186/2213/10125/9770/79444/10333/5345/5058/64127/6788/2081/1857/2043/10371/7855/6363/27035/7477/8324/2185/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/6366/59341/9175/1616/177/2074/4616/60401/4217/10746/6188/8312/5609/50488/23162/7984/7189/5585/1906/9821/351/221472/51495/4293/79594/51347/11183/29969/51776/1647/9839/2324/8600/7098/10392/23043/10595/10912/8737/9064/9344/23236/1856/8325/4317/29108/2150/23328/8322/4920/7474/4216/1490/11211/9867/7786/57551
## GO:0043543 1111/79075/28999/80155/3066/8607/8877/15/51471/5447/9425/10626/86/6659/8260/55689/9474/54107/11177/8089/80218/672/675/3054/84243/10943/2932/8202/29117/10856/8986/3662/6688/9397/26155/1810/8193/4191/10629/6877/4654/4842/60560/26038/6418/1738/54934/9329/79929/7917/23774/3553/6883/51200/2959/10445/6885/7862/22976/5977/51176/79829/8861/10664/55124/1743/4967/8295/10269/10891/55011/6598/10524/10474/9085/55274/79969/7040/2033/8536/1386/50943/5495/11143/8888/51125/6881/1962/11315/8520/9767/54386/10933/8464/4089/84779/27097/55209/6872/8110/6871/51562/79683/51304/5494/2647/54556/23558/51147/53615/10847/51773/7994/9575/9913/2624/64769/55140/55683/51104/1487/23326/55625/7291/10902/3976/3670/4204/6880/8850/151050/2648/26471/64840/64429/57634/55167/4836/81926/8473/112869/7703/51230/4297/406/5187/79903/23411/6879/5562/6622/26053/56848/5595/339287/79612/79960/84148/408/23741/5563/23390/1387/2752/8648/23522/85459/322/9252/26036/23338/2308/201163/6591/10411/25999/24142/4674/55733/57551/4582/5105/4137/2625
## GO:0002220 94025/5688/5709/5698/727897/4067/5693/5713/5336/5721/5691/2867/5685/5690/5684/5686/2207/5695/10213/2219/23198/5699/5714/6850/5702/5708/5692/64170/5704/5971/5683/5694/5567/4585/4893/8454/1147/5718/5682/5716/5707/5568/5058/6714/5696/4586/3385/5719/5700/5970/5717/50856/10892/10197/5706/8517/2534/5710/5062/4584/6885/5566/10462/3384/3265/5689/4583/5063/5720/3845/5701/9491/10454/5711/5715/8915/9861/2033/5705/5894/7189/4790/26253/30835/56667/23118/5170/11027/23291/5580/8945/57876/6500/1387/9252/4589/4588/3551/4582
## GO:0007422 7368/983/57211/10397/864/2676/9048/575/79152/60484/5457/1020/9076/1959/50674/56288/23114/40/208/5970/6334/5453/6647/2668/4665/9480/3236/207/22933/3084/4664/9968/3235/2064/6497/64398/5454/1605/9464/3670/2115/6526/4916/1910/2065/53616/3611/8506/79628/4763/23405/1960/224/9639/2817/4744/5274/4653/3908/5376/4915/3913/2947
## GO:0001738 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/5699/5714/5702/5708/5692/5704/5216/23616/4478/5683/1175/5694/10640/5718/5682/5716/6422/5707/64750/5696/1857/8323/81839/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/23322/998/9948/50855/7476/5689/5720/5701/9491/57154/5879/1213/5711/5715/9368/7471/284217/9861/5705/23002/1741/26146/9968/161/3911/4919/4649/5048/1855/90410/55966/5754/387/6259/4983/163/25/2294/7976/80199/10427/6939/54903/2719/1856/9620/8626/8321/54806/2295/1601/2535/22881/8322/1952/4920/7474/9231/9024/4300/51339/7481/65250/2239/23245/9863
## GO:0071322 64581/6770/4830/2730/114/56943/1535/3383/5603/5127/6659/2692/5165/3091/1080/6518/25874/26291/2626/6597/3170/9971/5579/5428/2081/56652/6434/5019/65985/7351/3799/6722/677/3745/4221/65220/51085/5798/1361/7074/7447/3651/5566/5608/65010/3956/2850/5879/10891/2044/177/55011/9324/2021/6598/5290/4760/846/5581/5894/3156/5906/51714/1946/2852/2901/9230/4976/572/79727/2822/9448/8398/4986/6810/7776/2309/26056/5076/1392/7054/1215/2729/51024/5532/5562/51092/5530/6416/8609/408/10497/8660/5563/22841/9024/5799/6717/9854/5176/1581/54795/2281/50507/10203/3952/7494/2621/8938/4035/81035/55638/55107/26137/150/5105
## GO:0048736 6664/5307/2019/50515/8200/79412/8092/3066/9496/2253/1749/578/7473/22943/3549/2254/257/6659/3229/5469/8456/23657/655/54542/10018/55636/79977/55212/54928/2778/60529/3239/8323/30062/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/5362/3691/2201/51098/3236/3655/27173/26585/5089/51003/23288/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/3890/5308/2736/51776/659/27077/4154/9464/7291/5916/5066/6909/8850/2648/4038/8854/2260/6662/1750/6474/56603/54903/2719/7026/2263/7020/546/51222/8626/25836/8434/1889/2702/5087/1499/5564/1387/860/5914/4920/6299/7474/6468/1280/444/7042/5396/140467/7700/9742/6469/57728/4488/3899/10512/775/116039/79659/7704/5125/4487/658/2737/65250/4223/2697/6926/1311/652/7021
## GO:0060173 6664/5307/2019/50515/8200/79412/8092/3066/9496/2253/1749/578/7473/22943/3549/2254/257/6659/3229/5469/8456/23657/655/54542/10018/55636/79977/55212/54928/2778/60529/3239/8323/30062/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/5362/3691/2201/51098/3236/3655/27173/26585/5089/51003/23288/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/3890/5308/2736/51776/659/27077/4154/9464/7291/5916/5066/6909/8850/2648/4038/8854/2260/6662/1750/6474/56603/54903/2719/7026/2263/7020/546/51222/8626/25836/8434/1889/2702/5087/1499/5564/1387/860/5914/4920/6299/7474/6468/1280/444/7042/5396/140467/7700/9742/6469/57728/4488/3899/10512/775/116039/79659/7704/5125/4487/658/2737/65250/4223/2697/6926/1311/652/7021
## GO:0001570 133/1482/3696/7422/7490/6862/7498/4643/5747/154796/6608/677/7477/7137/55294/6910/9444/22976/4851/7476/51666/11146/10413/3037/1969/7040/55109/8879/634/3726/5906/9820/55662/2658/25976/10352/54345/10052/2294/54922/2022/64321/57178/29072/9693/5921/1499/2013/23493/8322/51162/3791/51564/4435/947/3685/187/23462/57493/7048/6469/57007/7075/55273/5159/857/4915/23414/7049/10266
## GO:0033143 6502/6943/9420/409/865/142/8284/2692/5536/5469/672/23019/6597/8896/811/6422/8928/9125/5058/6714/11331/55885/3065/6049/190/4838/8085/10498/5245/9113/10413/9063/4848/81606/2033/8312/65992/11315/1655/23376/6872/26508/23558/9612/79876/10013/51341/387/9575/3670/51389/79447/55325/9604/406/5187/23411/29966/8626/1407/51569/9611/25959/1601/3275/55128/2099/367/3169/1408
## GO:0007588 366/136/81693/8645/3162/50617/6338/1184/1312/10686/551/525/4192/1143/5455/1814/64240/1141/134/4867/5660/1813/9380/552/80763/5020/1188/6865/6869/9368/55243/148/363/7369/186/1906/135/183/1136/4868/3758/6781/2981/27131/2771/7827/4879/554/1910/10725/4881/6340/3778/5002/23327/185/1811/6863/10699
## GO:0045123 3695/6347/6402/7412/119/1991/3689/3383/9466/6404/7124/613/8772/2650/6376/4192/5724/140885/729230/6693/1399/101/5734/64083/5294/50512/5657/566/5293/3676/6366/6401/177/3688/683/961/8174/6093/1398/9750/6370/23236/3672/7070/5175/29/3554/6403/83483/57126/2241/3952/6387/80310/1524
## GO:0001649 6664/23560/26271/1051/1749/3381/10507/7290/9087/9188/7473/3549/3376/2254/865/3336/7480/7124/3569/10492/506/9770/655/4880/2101/265/3570/2091/22800/6422/54857/25842/2778/249/5747/3398/1050/651/6238/6608/7477/1660/4221/2194/1591/43/5727/27044/3486/1192/93/7171/654/4091/5566/10457/4851/51176/6096/5978/5245/6615/2201/6657/3183/5701/10514/1213/51374/3192/26585/5587/4209/1969/51430/207/103/4745/3727/3726/537/23051/657/79697/51741/1052/1655/4041/8994/25819/2658/8074/23376/10312/6497/3020/1021/92/3491/8482/23317/847/650/2736/55973/57003/55366/374/6209/659/9260/25937/23020/9464/7291/56998/8519/3488/4090/5179/23601/6474/4015/2263/90/8626/3611/3199/8321/10140/26156/4086/4763/9759/1499/4921/23314/9902/4088/3399/4057/860/2735/3371/2662/3082/1291/5745/51564/90993/182/4435/57045/8840/8646/3397/4208/3400/4077/54795/1277/6591/6469/3295/4488/7481/4653/1462/658/54361/2737/2697/63923/3572/3479/652
## GO:0045444 1869/1051/51316/30001/63976/2867/6783/664/3638/6789/5467/7480/8013/7124/3569/5743/4151/688/1240/5469/1959/8651/10603/55212/8091/153/3589/51320/6422/1649/1432/2784/57761/3164/3398/5696/8291/6788/30837/1050/22809/208/65985/5997/2876/55885/80149/114885/677/11007/11221/55908/51052/4091/10498/3358/2475/59343/22954/59341/64318/10891/3630/3192/7471/3655/25776/79969/207/7040/51043/2033/22933/1386/9314/27120/28951/1052/22852/4041/201501/6272/25819/2852/59344/9573/55252/7204/3914/283927/10013/51341/7538/64641/79718/650/2624/171023/25937/1385/1487/51752/1488/8195/6095/4320/8554/60485/51150/56729/6517/3356/6934/23236/406/23411/3280/10124/25836/2874/154/65989/26268/2869/144404/4088/2662/182/7474/27241/8840/11197/678/595/4929/84159/6041/114882/1389/221395/5919/3400/4329/2308/54795/862/6591/5468/25999/4023/7350/81029/3952/585/79068/8864/4488/3625/6720/7494/6097/9658/7704/7041/23414/5167/8800/2487/7166/114899/9370/2167/2625/7021/79689/10974
## GO:0002822 7037/8767/91543/10859/3575/4436/79915/3329/7468/5788/9466/30009/2207/6375/100/940/7128/5588/7124/5027/3569/4049/1378/2208/8772/7454/5817/7186/2213/3135/7133/958/54542/3134/54440/3593/3558/729230/3592/51571/6556/725/920/695/55183/941/7855/80149/3606/6363/10666/10892/7292/3586/3553/3718/3146/6885/22976/3565/8809/3133/2302/5777/975/3142/177/722/567/23529/7040/51043/634/50943/383/114548/301/7189/1178/8741/8417/5585/3566/56940/718/4092/3594/54537/149041/51561/4292/9984/3440/3077/9173/22890/5819/6830/3456/9655/5532/7158/6778/604/3554/81545/5590/4208/10039/54795/90865/3263/2625
## GO:0090263 259266/1001/8326/5688/5709/5698/5693/5713/5721/5691/1749/8607/5685/8549/5690/5684/5686/5695/10213/23198/2254/5699/6659/5714/5702/7480/5708/5692/7415/5704/1956/8796/79705/54994/5683/1950/57805/5694/5718/5682/55737/5716/6422/5707/64750/6714/5696/5719/5700/5717/10197/9679/25805/51704/5706/5710/8629/5689/5720/5701/9491/5711/5715/10413/331/3516/9861/65125/6907/5705/23399/8312/1896/54475/4790/1654/1453/1613/5494/55182/5754/3728/79718/55366/80351/51366/5300/55031/23500/81847/406/2719/9101/8658/2263/3611/8434/23189/4088/7320/10023/4920/9736/25960/65981/54795/1277/51339/9037/857/27123/79971/6424
## GO:0016050 6890/1075/55353/26271/23603/11151/29887/8877/5552/4647/3638/6891/6396/5027/29091/7039/2153/164/84079/79720/356/80183/5119/79156/10228/10113/9217/6691/10959/3267/51693/811/9519/54732/9002/1522/8291/6855/56681/8447/27095/5265/10342/6845/10802/208/8027/83696/1173/9554/27183/8878/64083/3799/54809/2773/2348/5584/8615/5873/259173/8976/5798/10254/5861/6892/23256/11267/51510/3257/5537/4218/90411/57403/4905/594855/59349/8724/6386/8411/3998/8766/10175/8943/434/51160/25978/7879/50487/6804/55647/51128/81876/29916/55291/26276/10972/22870/9798/6811/19/23325/8301/2801/9146/553115/10981/5270/1742/9871/9570/301/57030/302/6281/51361/8867/23023/6490/6272/79363/9525/10564/7109/7251/2901/91782/57132/1453/10015/64400/8775/29082/5289/9392/54874/2647/11196/22872/5048/10282/23607/6382/5990/9218/1182/950/89781/23317/9882/27072/374/1759/357/9839/858/9632/55823/8729/1385/4033/8674/79643/4935/55048/7110/5869/966/114088/5864/10427/79090/6810/2060/8546/5819/6399/6517/1130/2157/9101/23682/9919/2890/6622/5071/399979/6385/55654/9341/10484/27243/23339/64689/57082/23243/63971/8452/375056/596/947/51479/29911/2149/6843/23176/10016/9847/9765/8406/6812/80208/1294/857/8938/6857/10451
## GO:0003231 6664/639/1482/8543/2296/7468/5457/4624/6659/5629/6262/3091/3776/5469/2280/9421/55636/79977/2626/1785/4052/7135/8928/54583/6091/3398/64220/64783/6331/84516/7137/6256/2303/4193/6910/4091/4851/4634/10269/27302/4625/3516/7046/5318/7040/3084/657/4633/2931/79810/4889/4089/7134/7849/4607/26508/8131/6604/10818/3491/5754/4092/10277/163/659/2294/9464/4846/3670/1832/60485/2022/9321/10848/3280/2263/90/7139/8321/7798/2702/2535/80000/23493/1301/182/6299/7474/7168/4887/6586/4194/23462/7042/57493/4208/9353/7048/10370/7481/10512/5138/1363/23414/65250/7049/6926/652/4036/2625
## GO:0043123 55765/1894/8767/1236/51026/330/3654/3162/6283/54503/9188/11040/6285/3965/27032/7124/23636/8772/6398/4055/64170/843/5536/7186/6376/834/356/2280/958/57162/7052/9641/7334/1147/92140/10333/8795/64127/5579/4615/10758/920/10342/684/5970/6363/9516/26057/10892/8837/51704/7706/972/8517/7099/124583/2534/6885/841/6574/22954/1936/6366/1653/3956/6275/54862/329/23476/80833/8915/5587/10346/9020/2316/207/85363/6284/3661/7132/7329/5581/65992/1896/1491/7189/54386/11214/8717/29110/10475/148022/4919/81858/5494/10616/9218/24138/79594/28952/79155/387/23118/7105/25/5966/51135/8600/4215/1893/7098/10392/11043/55223/8737/65018/2150/5071/1499/10206/56674/57506/4057/23390/8743/80762/2149/948/7188/1902/81603/80216/10769/57161/3551/2697/3357/79971/9370/1524
## GO:0008585 2175/1051/8372/2296/3383/5806/409/2189/7422/7490/675/1588/835/9468/3623/3417/6422/9757/836/57122/6714/11144/3309/2069/581/23626/2661/269/2492/6647/7425/5798/5245/9510/2796/3955/9210/7314/8890/668/8879/5156/8892/4323/4089/25976/116/8893/59338/3815/4327/4846/26471/56729/1495/2309/472/6777/598/23411/2516/3624/7337/408/8322/268/3643/596/6586/8204/84159/9353/283/2620/3952/3625/4254/2099/174/658/23414/54361/5241
## GO:0045069 7153/3669/6355/3576/9636/6352/4599/200315/91543/3429/6590/4938/4940/8638/5359/5479/940/3434/6732/8815/7124/22880/5629/60489/26986/27350/5610/1642/10450/9217/8091/3428/200316/10465/6780/5886/5481/684/80149/5478/29883/10155/3609/8468/23367/2332/56829/9869/103/64710/6895/6733/1655/5586/1654/10475/51495/104/8812/9218/55337/24138/55196/10318/51763/8519/201626/64848/7155/2040/3456/5071/54737/57506/4057/63901/23272/596/10410/6041/2494/10581/25827
## GO:0010950 6280/6279/3932/4609/8767/6317/9447/4067/5641/9705/11047/54205/578/3329/9141/239/10213/1944/80758/10541/3965/4210/6406/3336/7124/1509/1378/8772/7415/7186/9131/834/356/3297/10018/1612/5366/5371/10134/7498/3428/885/1611/1512/55655/8795/6091/64065/2043/400410/581/23151/7023/23787/27141/2534/56616/2902/5134/4838/3146/5978/841/2904/9966/51079/355/23786/177/9451/8915/4217/8301/9994/3717/668/6188/55367/4155/114548/1285/2852/27429/1654/8717/2903/22900/317/6774/5023/572/112399/9026/3491/55081/9475/79594/387/26355/842/27018/10392/8737/10017/4824/10395/6407/9647/23411/51024/29108/6622/3092/10550/22861/408/4088/51065/8743/1942/2149/1490/4804/26999/444/10016/4803/2934/5468/5988/2152/4137
## GO:0090068 9493/10403/79733/9787/11065/51203/983/4085/81620/2146/9212/51514/6790/891/9928/990/29127/51512/10615/1894/9700/898/10733/2237/29899/994/5111/26271/1869/8317/9585/2810/2253/79915/8877/995/1019/5885/11200/7027/940/1761/3276/5457/6659/7480/23636/1663/7517/6755/7039/1956/26189/5469/672/55835/1981/1908/10755/1820/1950/23019/835/5371/5889/79577/8091/328/8444/1814/3552/2765/9125/4869/3398/1017/7029/3741/2069/1618/8851/1026/6868/23137/11331/685/581/199/1813/29883/26057/894/6665/643/51379/55795/4849/55968/51289/9349/5962/58525/3553/6683/4193/10498/5566/998/1874/5155/7564/55124/7175/2627/5526/8451/8766/9555/56979/7015/6795/9510/10514/23476/3630/51499/3192/4848/207/7040/2033/29766/50838/22933/55367/5581/79848/65992/4041/80174/9525/6421/1906/5586/6840/1263/351/1654/8738/51143/4850/6604/57472/55719/7709/1778/8450/9475/3642/387/10869/9337/5934/7161/1647/56257/5325/57060/23378/4204/4656/2260/137886/79447/472/55023/84440/5890/55512/4762/23236/54623/8502/546/8558/81857/8929/5925/5087/9371/7157/25970/2735/28984/4303/7320/3373/8452/1543/1027/85459/3643/7474/1490/8678/595/4194/5311/3306/4926/7832/4488/10769/2191/5159/4487/54361/4582/3479
## GO:0035107 6664/5307/2019/50515/8200/8092/3066/9496/2253/1749/578/7473/22943/3549/2254/257/6659/5469/655/10018/55636/79977/54928/2778/60529/3239/8323/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/5362/2201/51098/3236/26585/5089/23288/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/2736/51776/27077/4154/9464/7291/5916/6909/4038/8854/2260/6662/1750/6474/56603/54903/2719/2263/7020/546/51222/8626/25836/8434/1889/2702/5087/1499/1387/860/4920/6299/7474/6468/1280/444/7042/5396/140467/7700/9742/6469/57728/4488/3899/10512/775/116039/79659/7704/5125/4487/658/2737/65250/2697/6926/652/7021
## GO:0035108 6664/5307/2019/50515/8200/8092/3066/9496/2253/1749/578/7473/22943/3549/2254/257/6659/5469/655/10018/55636/79977/54928/2778/60529/3239/8323/1954/79583/581/3227/3065/5915/5727/7289/2768/6910/23322/3238/7476/5362/2201/51098/3236/26585/5089/23288/657/26146/3235/80144/4089/2249/4621/26005/3226/6497/1382/55764/5663/3207/3206/2736/51776/27077/4154/9464/7291/5916/6909/4038/8854/2260/6662/1750/6474/56603/54903/2719/2263/7020/546/51222/8626/25836/8434/1889/2702/5087/1499/1387/860/4920/6299/7474/6468/1280/444/7042/5396/140467/7700/9742/6469/57728/4488/3899/10512/775/116039/79659/7704/5125/4487/658/2737/65250/2697/6926/652/7021
## GO:0003208 6664/1482/2296/5457/4624/6659/5629/6262/3091/5469/2280/9421/55636/79977/2626/7135/8928/7137/6256/2303/6910/4851/4634/27302/4625/3516/7046/5318/7040/3084/657/4633/2931/79810/4889/4089/7134/4607/26508/6604/4092/10277/2294/9464/3670/1832/2022/10848/2263/7139/23493/1301/182/7168/4887/23462/7042/57493/4208/7048/10512/1363/23414/7049/4036/2625
## GO:0033135 8767/54541/3458/578/7295/22943/409/7422/6789/8115/4282/4690/7124/3569/2641/5743/551/1956/8440/9770/1981/3059/3589/152559/3326/9125/5058/10456/5217/5008/3320/79109/581/4842/51085/11137/673/10178/1756/9530/9113/11235/1440/64324/2074/5587/284/5290/5144/207/7040/960/8536/5894/8312/23228/11315/369/54386/351/29110/493/5979/64754/25865/4092/10013/2039/799/624/3976/51763/9623/4916/22876/65018/9647/79893/3456/5562/6622/4985/408/10268/3082/10253/7474/596/10142/5334/1389/65981/3270/57731/10411/2621/4908/857/23171/4915/7349
## GO:0007173 4318/2537/867/23636/5329/2886/7039/1956/8440/5795/9770/5149/356/1950/6654/5771/9148/1839/9125/51196/6714/2885/2069/134/55658/8027/6868/55532/685/29924/5335/58513/5284/64762/10254/5781/55294/9001/53358/998/89853/7429/6456/7879/5148/58533/378/5290/1845/207/9146/7040/634/8826/27246/2852/5782/7251/351/84619/183/5774/5663/8874/9026/374/25/5170/23624/79643/27131/2549/116985/2060/6662/6464/3672/5286/9655/55614/3092/55914/5295/10253/819/64285/1796/9252/9185/10252/8527/5753/2241/1012/2202/9052/150/10551
## GO:0015672 11182/23630/81831/3755/3768/1482/60482/3775/6535/55117/6564/8645/51083/9377/3757/50617/3737/1812/30968/3753/3783/5024/483/274/8884/8514/4704/10105/6329/51296/6338/1184/3738/55151/10246/6549/57282/533/27032/468/5027/518/9551/506/7226/9296/3776/525/1349/26251/3596/3786/23415/10021/1908/1183/509/3777/610/88/1351/3756/6555/2257/8811/6446/1785/10991/6520/9114/496/3739/8647/4697/1814/4878/7533/516/1340/29099/30820/40/1017/55238/3741/10786/2745/134/6507/9033/79400/3792/9197/6559/64849/11331/6565/522/10063/1337/3761/10476/7351/528/514/23545/1813/4842/6334/9605/10479/3799/1327/9167/6327/6331/6336/5621/2185/3745/10568/10089/3780/9472/3748/51606/1347/6323/57084/9058/5250/515/3763/41/3787/6569/9943/3762/529/3785/1756/3746/150160/523/2645/4905/526/64078/9312/6574/8671/10632/488/498/1352/55515/3747/6005/9914/6616/527/56606/1339/6568/9368/3744/54800/1345/7352/1739/6528/478/476/859/3766/2316/11261/9196/55089/65125/7341/5318/207/7040/5349/27094/4544/3759/155066/5581/537/23530/84679/56901/26266/51297/5999/486/11315/5270/7114/3773/51382/57030/487/3060/11060/521/9525/967/9107/539/81/9962/9550/3754/7531/10312/6324/513/54407/26503/493/3779/1804/6640/6834/30819/5774/64924/6339/55002/116/6550/4891/5728/1355/10060/27109/6328/6332/9132/8992/3758/489/27345/29988/3749/288/357/2258/3769/7291/4986/1815/4846/145389/27012/3764/9016/23412/1350/287/3781/6526/538/10768/23315/9722/3356/6554/81539/517/9992/3760/2040/3772/6543/535/11280/5187/534/6546/10242/6335/25769/57835/10050/124565/3784/56848/7881/154/1760/9497/2702/6553/6326/6575/51719/26504/81031/6561/845/6548/6337/1027/3736/27347/54997/7402/29098/9187/482/54209/5025/57419/10142/80024/7248/6844/5311/26249/4734/1528/3790/6584/3752/6583/57731/481/54795/6340/159963/358/1272/7350/3751/3778/477/2273/23327/6833/857/10916/23171/3249/55800/9498/1346/150/5348/776
## GO:0015931 55110/9688/10212/56943/11260/10643/292/4600/7884/9631/10644/4116/3177/6396/215/81034/23165/55706/6427/9775/10237/29107/23636/5027/5901/7263/4927/79902/3297/10762/9793/8480/11097/26019/55308/4686/3267/25909/9154/9972/81929/7355/29118/1977/57122/9908/56648/29074/9785/8563/7307/6428/7514/79023/9818/1984/134/56000/3181/6741/55153/9197/23381/51068/57097/55916/81608/10128/23511/677/11052/1660/9887/2030/10898/65109/29890/2733/10478/22916/11338/23279/54715/6426/9444/7014/10921/10073/6429/10250/293/59343/57187/7175/51362/2332/51637/10657/26097/23039/23225/5976/6432/3192/8021/53371/84271/22794/64901/284439/4928/8888/8570/9153/23299/80145/6421/79228/8086/26993/23169/9883/55421/23237/23180/2705/23443/7538/291/5903/79085/6209/55032/348995/3178/9984/55746/23293/91746/55781/10482/29957/8189/11046/8737/65110/6830/6431/6311/55186/55315/9295/29072/4641/9939/8658/83447/55508/51213/220988/51092/10211/6430/9877/8106/5813/9284/7248/3087/7048/10559/9961/3800/2697/54847
## GO:0001894 55765/4069/952/8792/8842/7037/1001/7399/3574/92211/2296/11151/29887/79888/24/3514/54849/3549/5052/5880/7128/1445/7422/9456/6850/4160/5027/3569/9545/63978/10518/1956/29123/580/1525/79705/2271/11171/2651/54440/4585/5578/6441/23746/729230/1512/3933/2778/6121/760/6714/64127/796/7018/231/3635/101/3848/9657/581/6722/6608/51208/2185/7275/5284/6647/7099/5781/51052/60/26154/7287/8861/22954/4583/3845/23154/5879/171392/10413/2074/567/1435/9842/4760/5881/3988/537/10083/7189/3512/71/2623/1436/10312/6010/2103/2323/261734/81501/1258/57333/56667/2624/1200/3690/5741/10000/25937/11272/51542/8600/4846/8195/6662/31/25861/9696/8029/54903/64081/9455/3375/154/3315/56890/5925/118/4763/1499/79738/26058/4057/6794/12/5745/27347/596/947/1901/2034/1472/2149/1490/1280/5025/2488/84059/221395/6584/5950/4588/5166/50507/54360/582/585/1513/53832/55812/213/58503/9079/4982/9607/563/4117/284266/5304
## GO:0010675 5163/5341/3973/54541/57103/2642/5449/5031/5499/7262/5223/5208/5165/2641/57001/80183/5724/1642/5771/3607/5366/117/2932/51744/2784/2646/3170/6714/8445/208/5500/4142/51094/2185/3486/57223/10447/5443/2475/2645/5465/5207/51548/5028/10269/10891/23178/3630/207/60343/2033/5581/89/2931/114897/4923/5509/3269/2852/10776/1609/10296/6774/140710/51451/2103/572/2822/950/5903/5741/8850/6095/863/51763/4656/2648/26471/283871/3488/8473/23417/23411/9104/4779/6622/5071/10499/1353/1407/1196/9759/7157/5261/8660/5164/5745/3643/8604/2308/3953/10580/5166/3952/6097/2203/7033/32/5167/4485/3487/3667/3479/114899/9370
## GO:0031056 1111/891/1789/3009/7422/23028/1786/9474/2641/672/7334/55611/9757/2672/29117/10856/3720/8986/6688/26155/5081/5927/55183/4842/6418/5079/59335/3553/22823/22976/4524/10664/55124/9555/2332/64324/5599/63925/26097/9733/3622/23476/10269/10891/55011/6598/10474/5587/94104/8726/22938/7040/51043/50943/11143/4000/9320/55818/26993/4089/55209/6497/23558/10270/25865/23168/2624/54904/80349/1487/51366/7291/3976/3670/4204/9646/2648/54880/6830/10782/8473/472/1025/65018/4297/23081/23411/54623/546/6879/25836/6622/26053/56848/57343/5595/1499/7157/408/23741/7320/4602/604/9252/26036/55693/9810/5252/201163/6591/6720/4674/7349/4582/2625
## GO:0044773 79733/983/6790/891/51512/54962/29980/5111/641/1869/55159/2810/995/11200/7027/4683/3276/63967/6659/1820/23019/5591/835/5371/8091/60561/2765/9125/1017/7029/1026/5514/581/29883/4849/4193/10498/6118/1874/9656/51499/4848/2033/1386/55367/1263/8738/4850/57472/51347/9337/5934/1647/5325/57060/472/1112/9344/7157/26058/51065/28984/4303/7508/1027/79858/595/4194/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0043901 3669/820/6355/9636/6352/4599/10549/3559/200315/6772/91543/6351/6590/4938/4940/8638/8547/1991/3853/5359/3394/5806/100/7353/2219/3929/7128/3434/6732/5047/8815/7124/22880/7783/79132/4049/10875/83737/5629/63906/60489/27350/5610/4880/10221/4277/9830/5371/3593/8091/3428/6397/200316/811/708/89870/384/64771/684/80149/8878/55666/3065/10155/7726/325/7023/7706/3586/3609/5987/11074/4838/5978/8724/22954/51193/4795/4353/7001/56829/9869/60343/85363/22933/5495/51297/11251/6895/26146/6733/58509/302/23435/6737/10107/10475/22900/8812/3725/9218/55337/24138/79594/7538/8780/55196/7105/10318/7076/79671/11027/51763/397/3440/5094/8519/11043/25833/55223/59307/3456/5071/10206/54737/26007/57506/4057/4882/4153/63901/23272/5016/3685/10410/948/27306/54941/11005/6041/1511/2934/81603/10581/23005/5654/3479
## GO:0016236 7345/8767/57103/3162/51001/2597/664/11040/56993/58528/1020/533/9474/10452/3091/7415/525/9373/79720/60673/80183/3920/1460/57602/83460/55737/9868/9114/55669/836/6714/11178/2081/8851/8027/55432/9554/528/1459/23545/27183/8878/6009/7416/10133/2773/5305/79065/51606/8517/51100/51322/56270/10254/5861/55014/23256/11267/57192/79837/6885/5566/529/3565/26100/9711/64422/2475/64223/523/23367/526/64419/9342/4534/9559/5599/10542/51160/25978/81631/7879/9776/57154/28956/26073/527/64121/8655/8673/81876/8897/55626/58533/9804/10193/5290/6829/10533/83734/207/9146/10558/5571/65082/155066/823/10670/51382/826/7957/6048/9525/9517/9821/9550/27429/7251/23130/10312/29110/5049/5565/5868/4864/29082/5289/11345/23400/29978/5663/8396/55763/23192/90410/10013/3064/8992/23673/11152/9637/9927/51715/30849/79643/5899/27131/64601/55062/55048/1201/56893/9531/22930/10392/26471/7405/23274/55054/54832/23241/23710/8408/7249/9140/10241/80700/83452/11337/65018/535/534/5287/51422/23411/9779/5562/200576/5071/8649/154/11140/27243/23265/23001/5595/5768/9638/10206/7157/5563/55187/5564/665/440738/3791/440026/10325/3964/8678/54463/7248/26249/22863/4734/4077/8100/79443/26353/1634/57535
## GO:0031644 10874/6663/1075/27242/2171/5024/8530/6285/7143/9456/1312/9775/745/1890/2906/551/11202/7133/5724/1143/2257/8898/23467/885/56288/6714/152/134/2911/22997/3687/2185/3586/4099/552/80763/4988/2902/85446/50944/54413/3358/2475/5020/7476/869/23316/2332/9699/784/6804/54434/9451/2859/4544/10810/9294/5999/1742/6455/3060/4923/2741/1906/351/2903/10458/22999/183/5728/1855/9475/23613/2693/4987/8620/1605/3673/55/4986/4846/9921/9896/9378/5649/11343/11280/1910/4884/22871/4985/27091/154/1760/23405/10497/6548/3082/5590/26011/2149/4887/10142/4885/8604/55273/27092/4856/58503/9607/18/57502
## GO:0008306 65009/2515/5641/1812/1020/7143/2558/9775/3091/23657/885/1814/10097/1141/4900/1813/109/6722/4761/3274/8704/2902/50944/41/54413/1816/2475/5153/3845/6616/6869/27023/10716/3156/3688/9610/3269/351/2903/183/1497/27020/90410/4987/3815/1385/4986/1201/4204/5896/8554/5538/10636/5649/60626/1392/4130/4763/23259/10522/1621/4885/4212/2353/11346/7832/477/6863/7349
## GO:0098727 259266/2146/2001/430/5435/27022/63976/5440/6659/1994/51123/5629/5433/63978/1000/655/10736/23019/9440/79577/8091/79648/8202/9442/5437/6422/23318/9126/55211/1977/7547/7101/6688/5439/55183/5431/6944/53918/2176/6608/5436/9282/8324/4849/79918/27257/1656/22823/6760/4838/2041/4851/5978/8861/7476/55124/5438/5432/8451/51586/6657/8243/10413/6928/4848/3516/51593/81606/5894/9314/80306/1045/657/23569/6886/10893/5434/56478/55818/9968/4089/4087/7849/2249/6497/6774/3981/2103/79727/9412/22882/4853/23168/2624/3815/3976/9443/9646/60485/6662/7071/5430/2309/5076/23091/23081/54623/3280/8626/25836/8289/5441/56339/5087/1499/607/4017/182/6299/79923/678/5396/140467/2308/2247/5108/81603/5764/9079/6926/3479
## GO:0036498 3068/578/10130/10897/10525/10954/2673/1663/58477/116138/10987/56005/10018/10113/9217/9114/6745/11015/3309/2081/581/9797/6734/5770/2134/5611/5526/439/55738/4189/4000/9570/55161/9820/2931/51283/55033/11153/27230/22872/7094/7709/2135/1200/30827/2137/54956/55062/6464/9695/1639/10106/118/37/7466/7494/64061/10551
## GO:0035567 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/2780/5699/5714/5702/5708/5692/5704/5216/5683/1175/5694/5718/5682/5716/6422/5707/64750/192669/5534/5696/1857/8323/81839/5145/26523/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/6885/998/51176/50855/5331/7476/4772/5689/5720/2775/5701/9491/5148/57154/2782/5879/1213/5711/23112/5715/7471/815/9861/5705/23002/9968/161/5330/1453/4919/1855/51701/5754/387/6259/163/25/7976/1454/192670/23500/6934/23236/54903/2719/1856/9620/5532/8321/5158/5530/1499/1601/2535/22881/8322/1952/4920/7474/4300/11211/51339/7481/4653/54361/2239/9863/6424
## GO:0042476 54959/133/362/2296/29887/3066/2253/4771/4644/29123/655/5054/25928/265/10018/9421/360/9313/249/760/6714/64065/752014/6786/5251/581/1758/682/6608/3065/6331/6336/5818/10913/7475/93/6569/51176/5083/5465/3691/2775/1441/64919/6899/258/3655/1435/7570/7040/1386/657/5156/363/1896/7189/1906/3911/10312/2249/6382/387/650/5308/2736/8600/9464/7291/5066/4038/54880/3714/1495/55512/51066/4782/2263/7020/7286/8626/3624/1499/3399/26504/860/3371/947/79641/7042/3912/2308/1278/1277/358/6469/4488/11096/116039/4487/2737/5654/1746/7043/4982/652/54829
## GO:0097553 3627/6373/4283/3932/1236/55503/4067/1535/5336/11151/5031/30001/1812/5788/1234/6375/8989/55151/930/9474/5027/2906/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/1649/56302/9002/9446/1729/623/6363/581/1813/4842/5621/3954/10523/2185/5335/9472/2534/2902/22821/57192/9001/5566/1756/3358/5777/2904/781/6366/55283/8996/57158/1193/5144/2147/7040/5581/4923/2852/2903/57338/493/3064/10345/799/25/5170/2905/287/25998/3356/3709/6546/6622/7070/825/10268/845/2149/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/775/5350/3357/3708
## GO:0060996 7804/54149/3066/10059/8997/1020/2048/348/8440/2047/2182/3558/5597/9148/6792/2049/382/10097/50807/8851/2043/55236/84298/10479/9762/1072/55607/27185/4076/57468/8976/5062/7074/50944/54413/1627/998/2475/7476/23316/2332/5063/10298/3706/815/378/8536/1742/23380/816/10458/4976/5663/23237/5048/5728/1855/23105/10013/23613/102/10152/55619/10611/5649/5802/26052/22871/7337/6453/22891/115703/9231/1942/26037/80823/65981/4208/22849/1902/10769/1501
## GO:0110020 1894/3925/22843/4771/8477/8500/5629/7454/5216/5345/6422/5058/5217/55160/5734/55607/5829/2041/998/2475/9530/335/7016/5879/27302/6869/55604/859/7046/4233/7984/79933/6281/961/1906/23332/29109/4089/11214/6093/10163/395/9475/387/25/9270/8195/116985/51763/22899/10395/9647/4070/91807/10174/6385/55616/4088/5295/28984/6548/22998/1901/7168/1490/7840/7248/9639/23122/4208/1902/8829/10411/50507/585/7481/4653/10391/54361/7043/6863/51466
## GO:0002697 4321/3902/28823/28424/7037/56833/713/3559/6772/712/5650/3537/8767/51237/91543/10859/330/9447/136/3575/28778/51191/4067/2821/336/3458/959/3162/4436/11314/942/79915/2867/3329/3514/10225/7468/3689/5788/259197/9466/4068/9188/30009/2207/6375/3600/8807/940/7353/23586/3735/3929/409/5880/7128/3434/3965/930/6318/4282/6850/9474/8013/7124/5027/79132/3569/4049/10875/56253/83737/1378/613/2208/8772/7454/63906/5817/733/7186/2213/5795/10125/3135/164/60489/3596/7293/1380/7133/958/5724/1773/728/5591/4277/54542/9437/11326/3134/54440/57102/3593/30817/25818/3558/735/729230/3592/51571/6397/3805/200316/3109/719/4878/51744/708/1432/89870/731/3500/8832/64127/5272/3662/2896/6372/10758/6223/725/64771/695/6845/684/55183/941/7855/80149/3606/6363/26057/10666/10892/55666/732/7292/1660/51704/7448/11221/3586/11126/972/7409/7099/1361/3553/1604/3718/3146/3598/6885/22976/3565/8809/3133/2302/54476/5245/335/5777/10084/55601/1653/2889/5199/8723/975/329/5225/3142/3684/10269/177/3630/8673/2074/722/567/3916/8915/3080/23529/284/1370/10877/2147/7040/51043/922/79004/634/1369/11277/50943/59067/5495/27202/3098/383/5906/114548/6895/26146/301/54765/7189/961/1178/8741/8417/5585/7187/716/5169/10475/148022/7009/3566/56940/718/1776/9698/4092/3594/79594/54537/8482/1398/933/8780/149041/2624/51561/7105/2294/717/23705/5170/3958/10077/4292/79671/23369/9984/715/81494/7098/966/3440/3077/5094/6813/6810/22890/5819/6830/9865/6777/2242/3456/2268/29108/9655/5532/7158/2150/2/26060/710/56848/9846/5595/55061/729/26007/57506/6778/3567/5914/29/4602/100507436/604/3554/7474/81545/5590/4179/948/54941/11005/3426/629/7042/29997/10039/57126/54795/2241/5950/5627/727/55198/6812/90865/3952/3075/7494/11213/3263/1191/5654/7043/730/2625
## GO:1902115 5347/10615/10733/29899/6491/79734/3055/78999/6624/3936/9474/7124/23636/10801/5629/4733/3556/672/55835/4478/5119/23019/11273/1785/10807/79959/9126/6792/10432/9908/4869/6714/2895/8027/202018/9554/49856/7419/5305/5962/51100/23300/55704/23256/51510/79837/9001/10146/64422/79598/869/7175/6386/4591/4534/8243/25978/1540/27302/9662/81876/51657/3192/8897/9181/4848/859/57787/23224/6047/7984/6048/9525/1437/1906/7251/4089/11214/57132/10015/5868/29082/10735/7430/29978/55329/8396/57472/1778/6382/90410/152185/3064/387/9637/55823/989/55755/5899/4134/5601/8850/22930/80199/2648/26471/2596/9378/4916/23329/8814/9696/8408/10274/2909/65018/5789/5802/91807/79874/8558/5562/200576/6385/56890/27243/9638/9738/51112/5563/3567/53407/22873/26054/85459/8678/9924/4208/26045/8100/2934/51626/51364/9742/4926/585/10769/4117/57535
## GO:0070304 55765/8792/8767/5871/1236/4067/11184/959/9258/8877/22943/3735/9618/939/7422/3276/7164/6504/6850/7124/4055/64170/7186/2213/10125/9770/79444/5610/7498/10333/5345/5058/64127/6788/2081/1857/2043/10371/7855/80149/6363/27035/4281/7477/8324/2185/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/59341/54910/9175/1616/177/2074/4616/60401/4217/10746/6188/23542/8312/3156/5609/50488/23162/7984/7189/10494/55801/5585/1906/9821/351/221472/51495/4293/79594/51347/11183/650/29969/51776/1647/9839/2324/8600/9464/4215/4986/7098/10392/23043/10595/10912/8737/9064/9344/23236/1856/8325/4317/29108/2150/23328/10550/8322/4920/7474/4216/1490/11211/7042/9867/3952/7786/57551
## GO:0002377 9156/7037/51237/3575/2821/959/4436/79915/3329/7468/2956/25939/5788/9466/30009/6375/7374/940/4683/7124/3569/10875/3119/9245/7186/2213/54900/10721/3596/7293/958/5591/3558/10758/695/55183/7292/56259/3586/9025/3598/22976/3565/3133/5452/6929/23529/7040/4189/11277/50943/8888/2590/7189/8741/5585/10312/3981/7009/3566/54537/933/4292/9984/10538/5423/57379/27343/6810/6830/472/7158/2067/23075/6778/3567/604/1235/9452/10039/5950/27434/90865/7494/3263
## GO:0000184 55110/4116/9775/1981/26986/9704/26019/4686/6227/6132/3646/6142/6202/6223/2935/23381/7311/9887/65109/55181/9349/22916/6181/6156/10921/6217/11224/6206/6194/56006/6235/6230/6175/6158/6201/6233/2107/5518/6187/5976/6170/6143/6134/6176/22794/6188/6192/6193/6129/6147/6222/6208/6210/6232/6204/51594/6229/6228/6167/6155/6128/5520/6152/6171/6161/6133/6160/6141/5073/4736/6191/6234/6169/6146/5515/6165/6203/6122/6136/6209/25873/6164/6231/6205/23293/6135/6168/65110/6157/6138/55802/9939/9045/5394/6159/23708/79048/9811/167227/55629
## GO:0006997 9133/983/891/5347/9688/3148/23481/9631/274/23175/23198/6732/23165/10436/7443/55706/8815/8882/9221/80346/26135/5119/57602/5578/5371/23760/3267/25909/9972/8444/81929/9519/57122/5579/6223/11189/57097/27183/2113/25777/26038/2010/9025/6683/9271/51510/28996/7175/23141/25978/5518/81565/10269/27348/7341/2334/23399/4928/4000/6733/9525/23435/55818/2852/26993/55135/91782/57132/57142/1861/3020/29082/7141/5520/7142/5048/54700/6847/5515/23353/84942/22927/79643/55746/79188/7110/5819/10208/6314/1639/26092/4779/1760/27243/84172/7536/51280/23345/4926/91754
## GO:1902930 1717/4597/5341/6319/6713/3973/3458/3422/5449/5031/1594/2224/5447/79071/7124/348/5901/5724/3157/117/51744/2672/6721/3837/4800/4142/2185/2194/6647/4598/3553/7421/654/4802/5978/1181/2222/5028/4047/653/10613/3156/4923/3269/2852/8720/4790/1609/650/51360/5741/9619/22937/4801/338/31/10654/6667/5562/7108/6622/11160/9453/5745/2246/27122/6309/1581/6720/32/54361/23541
## GO:0002065 5080/6664/4821/639/7298/54845/1051/57103/5459/2253/56913/1834/4647/6659/5697/474/5629/3091/1000/688/3596/79084/5054/2626/2932/23513/79955/56647/3172/1026/79583/6009/6608/5915/4221/6647/6256/654/4838/3651/2627/6098/4825/9368/653/55283/3516/4760/10083/1045/2931/2016/286451/1021/572/5048/4852/3642/9575/9750/650/4610/25/11078/5170/27077/429/5916/9139/60485/10427/2260/3714/406/5991/3280/2263/8626/579/51092/23493/5914/182/7474/3202/7481/54361/25803/652/3169/10551
## GO:2000278 4751/9212/79075/22948/5984/4609/5982/908/10576/7027/409/5983/5588/3776/7203/10574/4880/5594/10575/27000/2264/79977/5985/3326/6714/65057/55226/8550/1026/3181/26272/23381/4931/3320/25849/2185/10728/4221/7014/10694/5155/5063/54552/3183/3192/26585/3184/7520/9314/5609/545/2658/55135/143/7013/5073/25865/659/80351/11284/3178/27063/23293/79991/26277/140609/472/25913/8658/9104/5394/5595/1499/7157/25970/28984/94/3082/4216/1843/80169/79618/167227/10039/2247/5468/50507/5159/2697/9370/1602
## GO:0009301 6884/2957/5435/55726/5440/5433/6617/6882/25896/4686/2960/5437/80237/2958/904/55656/55197/8178/81556/5439/5431/6877/79035/4654/5436/2961/22916/6619/2959/5438/5432/80789/5452/2963/23379/51593/57117/5434/65123/6878/26173/7702/8812/6618/10302/22936/26512/6908/6880/64859/1022/5451/54973/23248/79871/6621/79664/5430/10208/1025/6667/905/55756/5441/2962
## GO:0006611 51512/55110/3429/9688/10212/56943/11260/2810/7884/9631/4116/7295/10541/6396/23165/1020/55706/6427/9775/29107/23636/5905/5901/580/1959/4927/79902/10762/8480/11097/26019/4686/2932/3267/811/9972/81929/64328/29118/1977/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/81608/23511/23214/9887/2010/10898/65109/29890/2733/3313/3553/5781/22916/11338/23279/4193/6426/5566/10921/6429/10250/57187/7175/51362/26097/57154/23039/23225/5976/6432/5784/8021/53371/84271/11261/22794/7040/8536/4928/8888/11315/80145/79228/8086/26993/7531/6672/9883/5494/5903/6209/348995/9984/55746/9531/23293/92335/91746/55781/10482/8189/10768/6830/6431/6934/9295/29072/9939/5310/7157/6430/9877/55696/8106/7248/3087/10411/2621
## GO:2001242 6280/6279/4102/4318/3932/79915/8876/637/2023/10525/10059/10105/142/23028/4282/4690/29949/5329/5743/3091/3301/8440/2907/5034/57805/10131/79156/5771/10018/5366/10625/10134/7417/1032/80237/1649/54929/6714/4841/26155/4722/2876/8531/2056/5326/27035/581/3065/23604/5770/972/6647/55294/4193/3651/5883/4170/6615/22954/51079/6201/1540/3622/3630/51499/51657/9451/26287/9368/6477/10961/9181/8996/27113/754/7314/207/10488/960/6188/259230/4780/8575/11315/8725/6421/9709/27429/1654/9774/4976/5598/572/7009/54700/51588/624/5414/64844/7178/6498/10955/6135/6880/55031/26471/1687/138151/9529/4824/598/65018/23411/51024/29108/5071/3315/7157/90993/7466/51616/596/8678/201163/6591/57007/7494/6387/857/53832/4487/1191/4582
## GO:0050663 7850/4321/5004/2633/9636/55612/51311/914/8767/1236/10859/9447/4860/4067/3495/336/27242/64135/2867/1116/6283/2597/7096/9466/3937/5552/23586/2219/3735/7128/3965/10626/5047/929/26191/4282/6850/64109/9474/7124/5027/56253/7097/2213/10125/3556/6376/834/4192/7133/55024/9734/5371/8651/1147/24145/10333/51744/1432/3552/384/55655/9971/6714/64127/8291/79400/84818/5008/3694/7855/80149/6363/199/1813/5734/57824/1660/3586/10385/11126/6346/192683/7099/5987/3553/5861/3146/335/11119/59341/4843/23208/11146/177/3630/3605/79792/353514/3516/284/19/51043/6284/3661/50943/1401/4155/27202/5600/3098/11118/7114/114548/80772/186/301/965/55801/1436/6992/10312/23765/26253/22900/183/7430/3566/27159/2693/8692/55366/83786/25/2335/23705/7291/11027/7100/3440/55540/307/6711/9173/26525/23601/2268/4317/29108/2150/4345/56848/1992/5595/22861/57506/28984/7474/5590/947/3685/8840/2149/948/79679/727/4023/90865/23005/3952/1149/7494/2621/4035/2615/10631/247/9590/3357/114899/2625
## GO:0042254 3669/23560/51388/705/55003/23246/55794/54512/85865/23481/9188/4839/51154/55759/10200/27341/10360/5822/10436/5393/6839/23212/9775/3692/54663/54433/51118/29889/9136/5901/23404/54881/56915/55661/9221/54555/55505/57602/23160/55636/4809/2091/114049/22984/708/51096/55651/26574/25926/92856/54606/4869/84864/55813/7514/55226/6223/51202/2971/10885/55127/55153/51116/5036/4931/51068/51729/10171/79050/27340/9790/27043/29960/11137/81887/26168/10199/79863/27042/50628/55178/6217/81875/6194/51106/8451/11340/8602/23016/54552/27292/26284/6201/10514/6187/57050/55006/11056/51504/57418/65083/29102/10153/79922/79631/55272/57109/10813/10607/115939/22907/10438/6129/51013/6208/9277/6232/79707/1654/6229/6155/11103/51018/5728/8450/54700/6234/8780/6169/6165/6203/51077/6209/29063/317781/54853/23378/6135/55781/404672/25879/117246/130916/64794/23411/23517/55035/22868/9045/5394/55164/10521/2752/51093/10412/9724/7248/55623/6041/29997/22894
## GO:0040014 8200/5449/51316/5641/1019/5479/2692/2395/3297/4880/55636/153/1814/2688/6531/1813/6608/10939/5727/6647/5617/51052/7429/10269/9518/1435/5290/8879/2844/27429/55777/351/8455/6774/7430/5454/2693/1385/10743/80351/8195/6777/2263/51761/25836/154/5357/6776/596/57731/1735/8835/2691/585/79068/2690/4886/3479/9254/2593/8614
## GO:0061180 2001/1051/7473/3091/5469/675/6356/25928/5594/5371/23513/6714/6091/3398/208/11331/2876/581/6608/7477/5727/7421/7472/2119/9113/9914/27023/1435/859/1969/10765/81606/207/3717/7040/6239/1436/57142/2736/4255/374/2294/8600/9423/2263/3664/8945/10522/6778/7474/595/3202/4488/2099/4487/54361/367/6926/2066/2625/5241
## GO:1903391 23603/7422/2824/5795/79834/6422/382/5747/6714/3987/11170/5962/8861/3273/5879/26585/1845/8826/6281/1946/23332/4323/1613/10982/6093/56940/395/5728/9475/2039/387/9448/25/9270/29984/57669/10395/9647/7057/54828/23499/7070/6385/118/9748/4088/7010/94/9922/6548/3791/22998/7248/23122/8829/2042/4653/4035/54361/347/1307
## GO:0009100 4321/10855/79623/4597/94025/50515/1236/727897/10331/200424/6489/2529/10195/56913/5806/2525/3600/3549/6185/9806/2591/55858/6646/1464/1463/56886/6184/22822/746/5467/6484/27087/8813/10675/9334/63827/8985/3091/10164/9245/7415/2650/4248/55741/3703/411/4504/2300/25825/2651/176/4585/27090/5373/1650/79369/55501/25834/1839/29929/79644/54928/26290/8128/2528/26574/10678/84061/51046/10690/4586/10005/53947/5046/81849/6482/6363/2131/64083/1798/11320/5238/2132/8703/51009/325/11282/23553/11061/432/23193/2134/51006/124583/9469/5861/8704/4584/3718/8818/79695/2683/6569/2526/79586/1603/90411/26232/79796/2523/54480/3998/9348/4583/6366/8702/29071/50859/4242/29906/10090/23071/28/81876/5589/51465/3955/22845/56999/6388/11261/57171/2801/79690/433/7903/79947/11277/22856/54344/9514/79147/51146/10565/11315/11093/267/56983/51172/2590/2527/7327/11253/23509/4126/6048/23213/9215/4249/5986/2623/79087/8705/23385/6480/9331/11236/55624/5074/9953/4864/23169/7991/10299/79053/5663/2524/23275/10267/81792/4245/3074/79158/10905/29940/64377/56667/2589/2135/10956/650/6483/29880/55454/659/10318/79070/4247/2137/175/56548/9526/29954/10347/63917/55757/51301/3423/26229/64840/538/55790/285203/8473/6934/10329/55768/9695/2218/9321/6400/11041/64131/3425/23236/11285/10724/64132/7423/9528/63941/10585/4122/1499/10206/57876/7844/957/64689/11070/4124/9445/3373/1301/3073/596/3340/79625/1280/66008/26035/11226/57134/79868/91949/2817/80267/4589/7358/4588/64788/6448/51809/2530/54360/3952/10610/22906/4121/1471/1462/51363/633/658/1634/4582/3479/55568
## GO:0006890 9493/1062/81930/3832/24137/11004/29127/56992/51560/11014/25839/10959/23760/22820/60561/3797/11015/54732/3835/26286/9276/377/3796/51290/23423/5870/381/9554/11316/1314/372/9183/5861/6892/23256/4905/9463/10749/81876/10945/55738/1315/3798/10972/378/662/23299/22920/51272/51594/8775/55850/10960/84364/3064/64837/8729/11127/3831/11079/7405/83452/22818/9371/11070/53407/91949/51226
## GO:0021954 2253/1812/55079/166614/3251/1020/57282/4781/9334/2047/3326/2049/5747/1141/7101/2637/6091/6656/22809/8828/1399/2043/10371/4133/3320/1813/27185/25987/55558/81565/7314/5881/51199/27089/6324/9331/104/5048/5728/4852/1398/2624/2736/23334/6900/26468/9839/2560/429/1630/538/2909/79600/2263/23077/9693/8929/7474/4929/9353/8829/57731/3952/7832/1009/9201/4915/4137
## GO:0032508 8318/7153/9837/51659/4171/3159/5888/4175/4173/84296/9401/641/1763/4176/8607/83990/4683/142/9978/1663/1106/1642/10973/9557/10856/56652/6832/2547/4361/2968/7311/1660/3508/10146/1108/1069/8451/1653/6233/7316/2074/7314/7520/2071/11277/22907/51750/57680/1161/1654/4331/8450/2965/23064/254394/7486/5887/404672/25913/2967/1105/10111/2068/1107/1643/7508/5813/7507
## GO:0030307 6280/6279/952/5645/8437/3897/1535/54512/2810/8877/10507/3009/10591/7473/57817/7422/5393/2395/7852/551/1956/23566/23404/9373/1981/5967/9362/3578/3984/3558/4686/51393/10038/5716/6422/6792/1839/5058/6197/7224/6832/6868/1954/1002/84861/6722/8153/51009/2185/6195/27185/9472/552/3484/51330/998/51176/2475/11344/6386/8766/22954/51193/9699/1826/57154/9175/81565/3630/23191/1982/9798/11116/23394/7046/207/2147/2664/22850/1906/1946/4323/2064/1654/22999/3020/1382/5048/79594/8482/387/5458/102/659/10519/127833/2137/2335/5300/9423/50618/9211/6880/55031/55602/57698/4916/5607/23499/23025/3611/5071/4131/627/29882/6548/22902/3373/51616/29104/596/2803/7042/8829/9037/6387/23327/4035/3249/6857/7349/3479/51760/80736/4137
## GO:0032606 4321/9636/6772/51311/8767/10859/3654/51191/5336/3148/5435/64135/3329/23547/81030/3659/7353/23586/5440/7128/9111/26191/9246/6850/79132/7097/83737/63906/5971/10622/5591/9641/1147/140885/3428/5437/3663/89870/10293/9533/4615/661/64771/2547/4361/5970/55666/1660/7706/3586/3665/10621/7099/4791/5781/10146/54476/10084/22954/27297/55703/1540/23220/51728/2033/7520/3661/11277/5495/10623/26146/58509/5434/7187/6737/4790/1654/29110/7528/10475/148022/51428/8780/8887/5966/51284/79671/5300/7098/64343/5094/55718/5802/29072/29108/5441/10211/1499/57506/1387/6778/54941/9208/7318/26137
## GO:0021915 5080/9355/6664/26227/2019/133/6491/8543/5898/8092/9585/2253/4522/6789/6659/6768/5629/8985/3091/23432/5216/6862/655/5567/79977/10959/23513/6422/23648/2637/6788/8323/5081/7408/6608/1072/677/2348/5727/7289/4838/5566/23322/4524/10653/5362/23242/6201/51098/54910/11146/23654/27023/7471/55626/653/8915/3705/1969/7040/6932/26146/7189/9968/6692/65979/26005/6497/23770/317/55764/5663/10159/1855/5754/55081/2736/25/7976/9839/7291/5916/55746/80199/2648/7403/8854/10427/7249/64321/5076/2909/10395/54903/1856/29072/79600/3280/5310/9620/8289/6385/8321/4763/2535/10522/5914/7474/8646/7248/5311/7042/11019/140467/8642/51339/9742/6469/57728/58495/585/10512/2737/6297/652/4036/3169
## GO:0032874 55765/8792/8767/5871/1236/11184/959/9258/8877/22943/3735/9618/939/7422/3276/7164/6504/6850/7124/4055/64170/7186/2213/10125/9770/79444/5610/7498/10333/5345/5058/64127/6788/2081/1857/2043/10371/7855/80149/6363/27035/4281/7477/8324/2185/5770/4294/7099/3553/4296/7074/3146/6885/28996/3265/51384/6386/11235/6366/59341/54910/9175/1616/177/2074/4616/60401/4217/10746/6188/23542/8312/3156/5609/50488/23162/7984/7189/10494/55801/5585/1906/9821/351/221472/51495/4293/79594/51347/11183/650/29969/51776/1647/9839/2324/8600/9464/4215/4986/7098/10392/23043/10595/10912/8737/9064/9344/23236/1856/8325/4317/29108/2150/23328/10550/8322/4920/7474/4216/1490/11211/7042/9867/3952/7786/57551
## GO:0002886 136/4067/3162/11314/3689/9188/2207/23586/5880/3965/6850/613/2213/3596/5724/1773/57102/30817/729230/4878/8832/6372/695/6845/3598/3133/1653/8723/3684/8673/383/148022/3566/718/1776/2624/2294/5170/6813/6810/2242/2268/2150/56848/9846/57506/29/57126/6812
## GO:0046148 1001/8833/4948/5471/10606/706/100/1652/3251/2395/4644/3145/23657/211/10755/402055/6121/3658/7390/212/5631/7299/434/1638/1352/200205/6470/1371/4157/6490/2235/1497/93974/4891/1355/54977/7306/9839/4935/7389/9693/4779/26060/5498/51151/4435/7474/210/7220
## GO:0071320 366/445/6770/6715/3753/15/23028/7480/7490/10021/1080/5724/610/2230/328/3309/5294/677/9472/343/65010/2889/6528/5908/5906/351/7430/2039/6781/51763/3488/5179/3709/6546/9693/3784/1373/196/10142/5311/10411/50507/1393/358/5138/2819/1811/9370/5105
## GO:0002702 7037/5650/51237/91543/10859/2821/4436/79915/2867/7468/5788/9188/30009/2207/6375/940/23586/3735/4282/8013/3569/7186/3135/3596/7293/958/3134/54440/25818/3558/3805/51744/1432/64127/55183/7855/3606/10892/7292/51704/11126/972/7099/3553/6885/22976/3565/8809/3133/1653/975/5225/567/8915/23529/7040/3098/114548/7189/8741/148022/3566/54537/8482/4292/6810/7158/2150/5595/57506/6778/3567/3554/7474/5590/948/5950/90865/7494/3263/2625
## GO:0044070 8792/59272/1051/8564/2058/4282/468/6850/5027/348/551/1080/5724/10991/885/23204/760/134/208/5997/522/5621/552/3553/6754/6569/5608/2475/5020/335/6098/2917/2170/51499/207/5999/383/186/4923/5593/4889/1906/8074/6529/9230/135/183/5663/6781/8398/22925/8600/10347/1579/22930/2260/8737/10768/10396/5580/766/7057/51761/6622/9611/10550/8660/2915/27347/5025/9900/5243/6812/3952/8864/477/5244/6424/18/5174/1408
## GO:0032623 3902/2633/8767/919/4860/9454/942/30968/5788/916/30009/2207/6375/940/7128/5588/9308/64170/5142/7186/3556/11326/54440/6441/729230/3552/9971/6556/3662/920/941/3606/10892/5621/5987/3553/6885/11146/10524/5144/6188/50943/301/7189/5074/7430/25865/7538/25/6711/6777/9455/51564/947/79679/89795/2625
## GO:0032507 706/7295/3638/1020/5905/3099/580/5371/8733/3309/920/402/64714/64083/25777/50944/1627/11344/23568/602/3192/6014/207/23224/3098/11315/7114/2901/6672/7430/7094/3728/10956/9913/23353/1605/10210/288/65018/23515/5756/2516/23136/83660/6500/2934/57731/23345/2317/585/6653/85477/857
## GO:0044786 79733/81620/5888/2237/54962/5984/5111/26271/51053/1763/8317/5427/23649/5982/5557/79915/7884/5558/5424/11200/5983/8882/5425/54107/6119/675/5985/9126/10714/6117/4361/5426/58525/51507/55294/7014/6118/59343/8243/5976/10269/5422/51750/80174/7013/10735/57379/2260/5981/546/604/57804/1602
## GO:0045576 10397/136/4067/3162/11314/6283/867/5359/3937/2207/5880/3965/64109/8013/10125/3596/10814/57102/30817/4878/8832/695/6845/27040/1113/10666/5294/5293/1269/3598/50487/8723/8673/6284/284021/5169/3566/7462/2624/3815/2294/5170/6813/5819/1268/2242/2268/399/56848/9846/8773/2241/6812
## GO:0006470 9787/1844/1033/993/26472/3932/994/221692/28227/9258/11314/54205/5496/5499/995/4626/5778/10288/2070/5788/2140/22843/1852/2138/4624/9829/26191/945/4690/7124/5531/5801/284352/5536/5795/3071/2280/5610/5771/52/8732/8898/2932/5775/22853/151987/57718/78986/1849/63904/7184/3326/55197/5521/6305/5794/5534/51400/11156/11072/134/5514/7803/201562/80316/55313/58529/5511/2139/5500/1813/8776/11123/5725/6418/5523/5501/11221/5770/10842/1827/3486/261726/5798/5792/5781/57223/5529/92609/5537/7529/2475/8493/8446/64419/5777/5526/4534/23141/27071/27068/9108/5528/10076/10454/9110/51231/5518/5527/5516/55844/5796/5784/54434/51657/23645/8897/55291/1739/22870/8612/9150/1845/3717/7040/5519/54866/11266/54704/26051/23399/818/5495/5504/186/5524/8725/5780/5509/9107/4249/5782/65979/7531/10776/57460/23523/4621/26012/5525/80895/6093/51207/9562/5774/5494/5520/1847/9749/56940/8555/5728/8036/9475/5470/3064/5515/5510/5803/3958/2771/5300/9989/4659/5533/5800/26229/283871/8189/1850/6295/79871/5475/23291/7179/2029/10395/65018/5789/9647/5580/5786/8613/64077/5802/11099/3672/6609/9104/26469/5532/1760/10106/5530/8945/5791/23075/8556/3476/8073/6794/10231/9858/596/10217/1843/58190/7248/5799/5797/54961/1848/2281/5787/5793/5502/9891/8611/5764/5159/5783/3551/9863/23261/23371/1846/5507/1408/11122
## GO:0002223 94025/5688/5709/5698/727897/4067/5693/5713/5336/5721/5691/5685/5690/5684/5686/2207/5695/10213/23198/5699/5714/6850/5702/5708/5692/64170/5704/5971/5683/5694/5567/4585/4893/8454/1147/5718/5682/5716/5707/5568/5058/6714/5696/4586/3385/5719/5700/5970/5717/50856/10892/10197/5706/8517/2534/5710/5062/4584/6885/5566/10462/3384/3265/5689/4583/5063/5720/3845/5701/9491/10454/5711/5715/8915/9861/2033/5705/5894/7189/4790/26253/30835/56667/23118/5170/23291/5580/8945/57876/6500/1387/9252/4589/4588/3551/4582
## GO:0003279 6664/639/1482/8543/2253/7468/6659/5629/655/9421/55636/2626/1785/4052/54583/6091/3398/8828/64220/64783/6608/5915/84516/4193/6910/4091/4851/9784/2627/10454/11174/6899/653/3516/7046/657/9249/4089/7849/26508/8131/10818/3491/4853/5754/4092/163/7541/659/4846/3670/9794/6909/287/60485/2022/23129/9321/54903/3280/2263/90/8321/7798/2702/7157/2535/23493/5914/182/6299/7474/78987/4628/6586/4194/23462/7042/57493/9353/8829/7048/10370/55742/4488/7481/10512/5138/5125/23414/65250/7049/6926/652/4036/2625
## GO:0002504 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/56992/3126/3112/10437/1520/5641/1514/6396/1509/1174/3119/55016/2213/164/1175/1785/1510/3109/162/3108/3797/1211/3122/3835/3796/10802/3111/1173/829/84516/1780/972/832/10121/3113/6456/7879/1213/8655/51128/3798/11258/821/3115/9871/22920/7189/1783/8905/10120/161/830/51143/22872/1778/3120/10540/10053/55860/163/64837/9632/11127/10671/3831/10427/1639/29108/7057/10484/9371/51164/54209/1781/114876/8722/3117
## GO:1905269 891/1789/3009/7422/23028/1786/22880/2641/672/7334/29117/10856/3720/8986/5081/55183/4842/10155/59335/3553/22823/22976/55124/7175/2332/26097/51548/9733/3622/23476/10891/55011/6598/5587/94104/9869/8726/22938/7040/51043/50943/11143/4000/6886/26993/4089/55729/23558/10270/25865/23168/54904/55196/80349/1487/3976/3670/4204/9646/2648/8473/472/1025/65018/4297/23411/54623/25836/26053/56848/57343/5595/1499/54737/7157/408/4602/604/23272/9252/9810/5252/6591/6720/4674/4582/2625
## GO:0048593 5080/6664/8842/6496/362/6247/5146/24147/578/3549/10220/7422/2780/2048/5629/3091/655/30813/6094/2047/3975/6121/2195/6656/64220/5309/7855/581/5818/3150/25987/7472/793/28996/6096/51384/23424/1826/50937/7068/1969/4041/65979/1419/7528/6497/55764/22882/10818/54549/204851/2301/5308/10210/357/9927/10152/7291/6909/23554/220/6662/6670/5076/6015/7054/7020/51761/7070/8289/4763/54806/1499/2295/10265/4124/182/4211/25945/7474/8412/7482/5797/1735/5950/1295/5764/1296/2737/6935/55714/652/7021
## GO:0034470 3669/23560/54913/54901/705/23246/54512/10799/79650/23481/9188/16/3028/3735/79074/55759/10200/27341/10360/5822/8270/10436/60487/10248/5393/6839/80324/9775/54663/54433/51118/54920/9136/10775/23404/54881/10557/54517/56915/55661/9221/54555/11157/55505/57602/23160/55636/25896/10940/4809/2091/114049/23318/22984/55656/10556/79691/64118/2926/51096/55651/25926/92856/192669/54606/54802/55813/4234/1787/55226/6223/51202/3181/26523/6741/10885/55127/5036/4931/60528/51729/10171/79050/27340/23536/9790/27043/51002/1478/10898/9097/10978/29960/26610/81605/81887/26168/10199/115708/8518/79863/27042/50628/55178/6217/79042/81875/51654/27304/6194/51106/51493/11340/8602/51637/80789/11062/23016/63899/1653/27292/6201/83480/6187/57050/55006/11056/51504/24140/57418/65083/29102/79922/57604/55621/51728/57570/79979/55272/57109/51593/10813/10607/115939/103/6301/10667/79670/57117/8575/10438/6895/55644/6129/51013/65123/11102/6208/9277/6232/4087/51367/79707/26173/9692/6229/6155/11103/79727/55520/51018/5073/6234/8780/6165/6203/51077/55140/6209/8846/10785/29063/317781/26512/51531/54853/23378/6135/54974/54973/55781/404672/64852/25879/80746/117246/192670/130916/64172/79828/23587/23411/23517/55756/114034/55035/9045/5394/55164/4086/56339/23405/10521/4088/51093/55798/54859/10412/9724/81890/55623/6041/9836/22894/221078
## GO:0009267 1515/1824/7378/440/55630/6715/51765/26/467/6513/58528/468/1312/4141/9681/3920/5610/5594/5366/10991/3428/1611/6422/81929/26263/6721/3309/1026/80149/1965/7351/4654/26608/51100/10985/56270/26100/2475/8493/10634/79726/5599/355/81631/10514/8735/9463/64121/9451/8897/55626/4217/5587/8428/29103/10533/4780/10670/10919/54407/54474/4149/5289/11133/8131/3725/23334/79567/54468/659/11152/25994/30849/7486/3178/5899/55062/23378/3077/23032/23274/7071/5287/23411/5562/51520/5595/7157/5563/55846/2752/440738/10325/55364/596/8644/8678/7482/22863/2308/10641/5166/93664/3625/6720/7494/2621/27244/54361/213/9607/57535/5105
## GO:0060041 5080/9355/8842/7399/6496/6247/5146/79888/24147/3208/60436/3549/86/2780/5629/3091/23210/5469/6240/30813/6094/55636/835/6597/25806/3975/7101/6121/2779/4867/581/7275/43/5818/25932/5078/93/1282/793/58158/28996/6096/7287/1181/1545/57096/1826/2782/50937/10461/7068/284217/4760/10002/2916/5156/57030/5961/4041/10312/6497/4149/493/6010/4976/5979/5663/261734/6152/22882/6604/54549/204851/5458/10319/10210/659/23554/23093/6662/22899/5076/84440/7020/51761/7070/57835/54806/10265/490/8322/5204/4124/94/25945/3615/2823/4628/5797/7042/8829/5176/1735/5950/9742/5764/5159/4915/658/1746/3913/4693/7021
## GO:0050886 59272/1535/2297/51083/3291/3814/1908/3623/1394/5345/1814/2778/1522/27035/64111/2661/3553/5781/654/1816/1585/1636/6865/3845/6869/80223/81285/668/9727/51762/186/114897/1906/4089/2028/183/10159/387/2587/5972/4986/4846/7110/2260/4824/56729/26056/1392/1215/2150/3624/1889/1407/2702/8322/2149/1907/1511/4311/1393/3952/3625/5125/185/6863/1359/7349/6926/114899/10699/2625
## GO:0010256 9133/983/891/5347/55353/10397/9688/51411/23603/9712/85377/29887/9145/5788/5359/9631/274/5552/92154/79152/23175/7534/215/55151/7443/8266/8815/5604/745/5027/7852/79720/356/5605/80346/5119/51501/5594/79156/10228/25839/5578/9217/6691/29927/10959/1785/9144/3267/8934/23204/9519/54732/9002/23418/5579/9980/8291/6855/208/9788/8027/53947/57047/63982/5660/57097/27035/6521/27183/8878/55666/64083/25777/10133/50999/2010/29763/8615/4627/5873/6647/259173/51100/9183/7917/5862/8976/5798/10254/5861/6683/55014/10419/11267/51510/8048/998/10313/57403/8724/11235/23141/3998/8766/3801/488/6456/51160/25978/7879/50487/5518/81565/23208/10269/439/9451/26276/8548/9798/5587/6811/859/662/19/27348/23325/2801/207/9146/8675/23399/9659/4000/10565/5270/23207/55161/51361/9820/10494/8867/23023/9525/23435/10564/23332/2852/26993/7251/1263/91782/57132/93643/1453/57142/55113/10015/64400/1861/10458/64398/29082/5289/2054/2580/54874/5520/27230/2647/11252/11196/8874/5048/5728/51308/5990/1182/950/3064/9697/10345/23317/5515/6708/57003/23353/1759/7485/400/9950/288/858/8729/1385/23271/8674/6449/79643/10347/1452/55048/22930/79188/7110/5869/57698/6711/5864/287/9529/5819/1130/83452/60684/9321/5580/23363/27314/9101/23682/1639/51332/26092/9919/54828/30845/5071/163590/80115/399979/1760/22878/55654/27243/79628/5595/9648/23136/10211/51112/64689/53407/57082/375056/10087/225/54808/29911/22796/2149/4628/10142/844/2804/7042/23122/2934/8436/55204/23345/26509/7357/79633/91754/857/1289/79659/65055/8938/1191/30846/367/57088
## GO:0042795 6884/2957/5435/55726/5440/5433/6617/6882/25896/4686/2960/5437/80237/2958/904/55656/55197/8178/81556/5439/5431/6877/79035/4654/5436/2961/22916/6619/2959/5438/5432/80789/5452/2963/23379/51593/57117/5434/65123/6878/26173/7702/8812/6618/10302/22936/26512/6908/6880/64859/1022/5451/54973/23248/79871/6621/79664/5430/1025/6667/905/55756/5441/2962
## GO:0050715 4321/5004/55612/51311/914/8767/9447/3495/64135/2867/2597/7096/23586/2219/3735/3965/10626/5047/929/26191/4282/6850/64109/7124/5027/56253/7097/10125/3556/834/4192/1147/24145/51744/1432/3552/55655/6714/64127/84818/5008/7855/6363/199/1813/5734/57824/1660/3586/11126/6346/192683/7099/3553/3146/59341/11146/177/3630/3605/79792/353514/3661/4155/5600/3098/114548/186/965/55801/1436/23765/26253/22900/3566/27159/8692/83786/25/23705/7291/11027/55540/6711/9173/23601/2268/4317/29108/2150/5595/22861/57506/28984/7474/5590/947/2149/79679/727/4023/90865/7494/4035/10631/247/9590/3357/114899/2625
## GO:0002285 9156/7037/8767/10859/3458/959/5336/11151/4436/942/79915/1880/3329/7468/2956/5788/3383/9466/30009/100/7374/940/3936/4063/3965/4683/930/54518/3569/10875/2213/5971/164/4192/958/54542/3134/3593/3558/3109/6693/51744/6556/3662/6845/55183/941/80149/3606/3683/6363/5734/10892/7292/2185/3586/9025/5873/7099/3718/3146/22976/1015/3565/51176/8809/2475/6194/3956/4242/975/3142/602/3916/3955/23529/7040/51043/634/50943/23228/114548/301/64218/8741/26253/6774/3981/5663/3566/4853/4092/3594/54537/149041/8995/51561/25/3958/4292/9984/55619/6095/10538/57379/538/6830/3456/9655/7158/2150/2067/7157/23075/55846/6778/5914/4602/604/5590/4179/7248/1235/9452/10039/911/7494/6097/2625
## GO:0019827 259266/2001/430/5435/27022/63976/5440/6659/1994/51123/5629/5433/63978/1000/655/10736/23019/9440/79577/8091/79648/8202/9442/5437/6422/23318/9126/55211/1977/7547/7101/6688/5439/55183/5431/6944/53918/2176/6608/5436/9282/8324/4849/79918/27257/1656/22823/6760/4838/2041/4851/5978/8861/7476/55124/5438/5432/8451/51586/6657/8243/10413/6928/4848/3516/51593/81606/5894/9314/80306/1045/657/23569/6886/10893/5434/56478/55818/9968/4089/4087/7849/2249/6497/6774/3981/2103/79727/9412/22882/4853/23168/2624/3815/3976/9443/9646/60485/6662/7071/5430/2309/5076/23091/23081/54623/3280/8626/25836/8289/5441/56339/5087/1499/607/4017/182/6299/79923/678/5396/140467/2308/2247/5108/81603/5764/9079/6926
## GO:0048639 983/891/8437/3897/3574/5449/2253/10507/5479/7473/57817/2254/7422/5467/2692/7852/5629/7490/23566/9373/3297/5967/5591/5594/9362/54440/55636/3984/51393/10038/1432/6792/5058/2688/6531/7224/5292/8531/1954/1002/1813/4654/6722/6608/6665/8153/27185/10409/9472/7472/6910/5897/51330/4851/2475/11344/2627/4534/8766/9699/7429/1826/57154/9175/81565/3142/27302/10413/23191/1435/9798/3516/23394/207/2664/657/89/1906/1946/2844/22999/1382/7430/5454/27230/5048/375790/79594/8482/5458/2693/659/127833/2335/1385/8195/5300/9423/50618/6909/57698/2260/4916/6777/23236/2263/51761/23499/23025/3611/25836/5071/4131/627/23493/825/2735/29882/5357/22902/3643/596/2803/4208/8829/7048/57731/1735/2247/2691/9037/3952/585/6387/23327/2690/4035/32/23414/6857/7049/3479/9254/51760/4137/2066/10551
## GO:0055078 4159/483/7380/6338/1312/551/525/1814/134/1813/552/80763/1585/5020/6869/478/476/186/1906/135/183/6332/27131/2771/1579/4879/554/1910/6546/6548/6337/482/4881/481/6340/64699/477/23327/185/6863/66002/10699/730/7021
## GO:0031058 891/1789/3009/7422/23028/1786/2641/672/7334/29117/10856/3720/8986/5081/55183/4842/59335/3553/22823/22976/55124/2332/26097/9733/3622/23476/10891/55011/6598/5587/94104/8726/22938/7040/51043/50943/11143/4000/26993/4089/23558/10270/25865/23168/54904/80349/1487/3976/3670/4204/9646/2648/8473/472/1025/65018/4297/23411/54623/25836/26053/56848/57343/5595/1499/7157/408/4602/604/9252/9810/5252/6591/6720/4674/4582/2625
## GO:0015850 366/29881/10859/9388/336/341/8435/51083/3351/3737/1812/2207/706/9123/6696/6646/1244/2824/6566/6850/345/348/1133/5406/28234/1080/1950/1588/4792/6555/1394/5360/5444/57476/151/8647/360/1056/1814/64240/1137/9971/1141/6721/1109/6531/152/359/64220/6530/10948/3949/6579/156/949/10577/10062/1113/1813/4842/27183/4481/114885/1071/10599/6581/3745/337/5727/6256/5781/60/654/9885/26154/2668/5020/64137/335/10928/1645/65010/23539/6804/5028/5865/26031/10765/19/26281/634/114881/11315/186/302/9525/114897/4790/6570/6580/1861/4864/135/183/5023/6623/20/80055/5007/23673/2693/2587/23762/9194/5972/10227/4986/7376/1815/10347/9619/4204/55937/7110/8973/6342/6526/338/3990/3356/6554/65018/1392/1268/80765/23411/26119/114884/10998/8714/6622/5071/10499/114883/2874/6532/8648/4602/3350/948/4887/3931/5021/114882/114876/5950/159963/5468/358/23461/6469/3952/5244/51474/6387/857/5205/6571/54762/4035/1191/11188/185/6863/9607/150/18/4129/9370
## GO:0015844 10859/3351/3737/1812/2207/2824/6850/1133/151/1814/1137/1141/6531/152/6530/156/1113/1813/4842/6581/3745/60/2668/5020/6804/5028/9463/5865/26281/11315/186/6570/6580/1861/135/183/5023/6623/2693/4986/1815/4204/8973/3356/65018/1392/1268/6622/5071/6532/3350/4887/5021/6387/6571/11188/9607/150/18/4129
## GO:0045580 3902/1493/2175/3559/639/914/8767/3574/3575/4860/864/3458/942/8876/10288/5788/30009/100/3600/3659/3549/940/939/3965/9308/865/6850/1378/10125/23240/8456/3071/3135/8808/4192/6654/5771/54542/54440/3593/8651/3558/729230/3592/11006/3662/101/3111/941/80149/3606/6363/10892/7292/11221/10385/972/7535/1209/3707/6647/3718/3146/3565/2302/9092/9840/8943/1540/7001/3142/29102/7040/51043/50943/114548/301/2064/572/3566/4092/3594/387/149041/2736/51561/814/25/9580/3440/2648/5896/22890/8546/56603/57178/6777/3456/9655/56339/1960/5914/4602/604/5590/4179/11005/7048/6469/7494/7704/2737/6935/652/2625
## GO:0006919 6280/6279/3932/54205/578/3329/10541/3336/7124/8772/7415/7186/9131/356/5366/5371/7498/885/1611/1512/8795/6091/400410/581/23787/56616/5134/841/9966/355/23786/9451/9994/3717/55367/114548/1285/8717/317/5023/572/112399/9026/55081/79594/26355/842/27018/10392/8737/10017/4824/10395/29108/6622/3092/22861/4088/51065/8743/2149/4804/10016/4803/5468/2152/4137
## GO:0048738 983/891/65009/1482/2296/8557/2253/2539/22943/409/57817/2254/7422/5457/4624/9474/5629/6262/3776/7273/5469/7490/1525/655/27101/2280/5594/88/9421/55636/2626/10038/811/4878/1432/7135/8928/54583/5058/3720/3398/4205/5292/5997/6722/5915/8324/7137/9472/1948/6256/2303/7472/6910/8048/4851/2475/2627/5465/4634/51548/10269/27302/10413/3192/4625/653/26585/3516/25776/148/56999/859/26281/7046/4729/57158/9150/5318/7040/3084/4000/657/5600/3688/6901/5999/5156/186/4633/1829/2931/79810/1906/4089/7134/11214/7528/4607/183/8131/2248/10818/5728/90410/4092/10277/650/10052/7161/1385/27063/3670/5300/9794/6909/2648/8854/1832/5573/60485/2260/8737/23135/10611/2022/70/10529/23363/10848/2065/6546/91807/2263/90/8289/7139/6443/4086/2702/6416/23493/2735/6548/5914/1301/4211/7474/26011/1901/7168/4628/7248/7042/57493/4208/7048/5950/2247/50507/8470/6444/5159/23414/5350/2697/80206/7049/6926/3479/4629/652/4036/2066
## GO:0007219 9787/79094/51378/3559/6772/4609/27255/4904/2296/4100/2762/55759/2805/474/83737/2208/1956/10683/4192/655/1950/4792/3175/8431/9148/9971/64127/6091/11156/51441/64065/3741/1050/6868/64783/55851/51107/55343/29924/5584/81544/189/2079/51006/84934/2303/55294/4851/58158/11235/6615/1999/4242/80852/81619/6928/7471/23220/4854/3955/3516/22938/207/7040/2033/113878/56983/55662/11060/23509/10098/5986/4323/55534/23385/351/6774/26508/1021/5663/80173/4853/51341/650/2624/3815/102/5664/23013/22848/2116/429/9270/63917/9794/6909/8850/8788/9139/6662/3714/4855/57178/23129/6400/3280/5224/83464/196403/8626/3880/1004/65989/56339/5087/3232/408/23493/1387/23286/51162/604/1027/182/4179/23462/7042/7048/22905/6591/2620/1272/55273/79633/4856/56892/7079/5350/10631/388677/1746/3572/23090/3169
## GO:2000736 1482/5688/5709/5698/5693/5713/2296/5721/5691/5685/5690/5684/5686/5695/10213/23198/51755/865/5699/11051/5714/5702/5708/83737/5692/5704/54517/655/5683/5610/5694/4004/2626/5718/5682/5716/5707/5696/51441/5008/5719/5700/5717/10197/5706/3313/5710/11137/6910/4851/2668/5978/8861/2627/6660/5689/5720/5701/9491/5711/5715/10413/3192/6929/9861/81606/5705/4780/5156/6886/55818/2623/25920/6774/2103/1021/8621/2624/7161/9739/25/6662/4297/23081/3280/56339/4602/4005/182/678/4054/7042/6938/5764/10512/10443/652/2625
## GO:0071156 2305/79733/983/6790/891/51512/8326/5111/1869/2810/995/1019/274/11200/7027/3276/5457/1020/6659/4282/672/1820/23019/835/5371/8091/811/2765/3326/9125/3398/1017/7029/2124/8851/1026/208/581/29883/51379/4849/7023/9349/51085/4193/10498/5566/1874/2627/5526/10514/51499/4848/4760/7040/2033/55367/2852/1263/8738/4850/57472/8812/7709/3642/9337/2301/5934/7161/1647/5325/57060/23378/79366/4656/472/1025/81857/8929/7157/28984/4303/1027/595/4194/6419/5311/10795/7832/10769/2191/4582
## GO:0002495 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/56992/3126/3112/10437/1520/5641/1514/6396/1509/1174/3119/55016/2213/164/1175/1785/1510/3109/162/3108/3797/1211/3122/3835/3796/10802/3111/1173/829/84516/1780/972/832/10121/3113/6456/7879/1213/8655/51128/3798/11258/821/3115/9871/22920/7189/1783/8905/10120/161/830/51143/22872/1778/3120/10540/10053/55860/163/64837/9632/11127/10671/3831/10427/1639/29108/10484/9371/51164/54209/1781/114876/8722/3117
## GO:0002709 91543/10859/3575/3329/5788/30009/6375/5027/3569/8772/7454/5817/7186/2213/3135/7133/3134/54440/3593/729230/3592/51571/7855/3606/10892/7292/3553/3146/6885/8809/3133/975/177/567/634/50943/383/114548/7189/1178/8417/56940/4092/3594/51561/3440/3077/22890/5819/3456/5532/3554/81545/5590/54795/2625
## GO:0051893 23603/7422/2824/5795/79834/6422/5747/6714/3987/11170/8861/3273/5879/26585/1845/8826/6281/1946/23332/4323/1613/6093/56940/395/5728/9475/2039/387/9448/25/9270/29984/57669/10395/9647/7057/54828/23499/7070/6385/9748/4088/7010/94/6548/3791/22998/7248/23122/8829/2042/4653/4035/54361/347/1307
## GO:0090109 23603/7422/2824/5795/79834/6422/5747/6714/3987/11170/8861/3273/5879/26585/1845/8826/6281/1946/23332/4323/1613/6093/56940/395/5728/9475/2039/387/9448/25/9270/29984/57669/10395/9647/7057/54828/23499/7070/6385/9748/4088/7010/94/6548/3791/22998/7248/23122/8829/2042/4653/4035/54361/347/1307
## GO:0060485 2146/4902/6664/6772/1482/4609/6317/6943/23603/2297/2296/8092/3066/2253/58/3182/2254/8751/3569/3091/7490/10683/4192/9221/655/1908/11171/10736/5594/2651/6949/265/9421/2626/8091/2932/80237/6422/8928/3170/2637/6091/8828/202018/10371/6608/1072/677/10155/25805/2348/51094/10409/3553/7074/2303/7472/4838/4193/6910/4851/51176/2668/2475/59349/51384/6386/6615/6495/1947/6275/7258/10413/6899/653/26585/3037/3516/4040/7046/7040/3084/553115/657/56983/1655/9820/7080/23187/1906/10630/3911/23332/5075/4089/4087/65979/57142/26508/5979/23275/5728/5754/4092/10439/650/5308/5515/1605/659/2294/25937/2335/9839/9464/7291/4846/3670/55746/6909/80199/8854/55223/2260/6662/2022/70/59/57669/5076/6939/1910/6405/64081/2065/3280/2263/90/8929/72/5595/1499/2295/1601/10521/23493/4088/4017/268/28984/94/3082/182/7474/4222/9231/596/1942/78987/3202/4194/5311/4734/10016/23462/10252/7042/23122/4208/54796/8829/7048/753/2042/8642/10370/1277/6591/6469/58495/55273/83989/4488/4254/7481/5159/10512/1909/7041/4487/3249/23414/54361/2487/7043/3357/7049/652/2066/3169
## GO:0006839 3002/8326/1869/63933/2810/578/30968/292/9141/10449/637/664/706/7027/56993/7534/5880/10105/81034/10440/10469/10531/7159/10452/518/9551/506/3099/10165/7263/10055/100287932/509/57602/10018/5366/1468/1374/55737/55750/2932/9868/10245/25813/10971/7533/26521/516/7332/26517/29074/6721/23593/5534/7029/9049/1267/10456/25793/55486/57380/522/10948/7855/3320/10476/514/581/2139/1459/79568/51025/10939/3954/10953/26519/51100/23203/515/59286/55294/6993/58526/7529/9530/841/293/79680/10075/3998/10651/51079/10632/26520/5599/7323/54978/498/9776/28978/8996/9804/815/1386/6687/8034/2931/521/539/79778/27429/7531/8314/513/5565/6774/1376/4976/572/5663/93974/3308/9026/26128/27109/79594/89781/7161/79085/9520/26515/9927/10425/5664/55823/23368/9531/10367/9016/5533/29957/788/4836/55288/31/130916/517/598/65018/54332/51422/54741/56947/51024/5562/8626/89941/5071/221154/23409/7157/5563/665/7755/6548/596/81855/80024/64112/8604/29928/7350/6720/3305/32/22885
## GO:0006368 2146/6663/56943/5435/11047/55840/51224/5440/6921/6749/51497/5433/4686/79577/5437/80237/904/6924/8178/5439/5431/2968/11198/5436/9025/26610/22916/8518/6917/27125/9400/5438/5432/4298/23476/6923/3192/6827/2963/6829/9150/2071/5434/25920/8812/4331/23168/55140/2965/80349/22936/1022/9646/404672/10771/5430/6830/1025/905/902/29072/54623/2967/5441/2068/2962/55837/4300/6469/643376
## GO:0008654 26279/4597/5320/80339/336/5336/8525/3422/79888/55697/2171/9791/2224/5359/23175/9600/55151/5467/246/8813/8904/1119/1460/9362/9468/8898/56895/3417/55750/3631/5321/79644/8733/9971/6305/54545/56910/27132/377/3635/2358/55326/5833/30814/3636/1459/8776/23533/84720/5291/5130/5294/5277/248/8394/116986/660/43/5293/5305/8395/55500/4598/83394/9489/8818/9663/79837/58488/3358/64419/335/5155/4534/1606/9108/5337/9110/2170/55361/10554/8503/8897/81579/22845/4952/51099/5296/5290/57171/10558/254531/3612/79947/10162/259230/54344/79143/8895/51552/6901/8867/9517/9107/10390/27315/56894/1609/51477/8871/5868/8443/5298/5297/5154/5289/10400/9487/8396/5319/51227/3074/1040/51604/5728/10026/824/10555/80055/5288/9926/59338/59339/56623/8398/26751/8760/30849/5338/5281/51763/9896/55224/1103/10654/3356/22876/57664/472/64850/256987/5322/5287/80235/9091/10423/23682/5286/80230/8526/200576/56848/9453/54872/11145/1120/56994/23259/5295/23396/9488/129642/2181/81490/55650/65258/23556/5283/3931/171586/22908/51205/57515/221395/66036/64600/2247/23446/2819/5783/23171/8821/3357/27124/80736
## GO:0051492 3925/22843/4771/8477/8500/7454/5216/5345/6422/5058/5217/55160/5734/55607/5829/2041/998/2475/9530/335/7016/5879/6869/55604/7046/4233/7984/79933/6281/961/23332/29109/6093/10163/395/9475/387/25/9270/8195/116985/51763/22899/10395/9647/4070/10174/6385/55616/4088/5295/28984/6548/22998/1901/7168/1490/7840/7248/9639/23122/1902/8829/10411/50507/585/7481/4653/10391/54361/7043/6863/51466
## GO:0001736 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/5699/5714/5702/5708/5692/5704/5216/5683/1175/5694/10640/5718/5682/5716/6422/5707/64750/5696/1857/8323/81839/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/23322/998/9948/50855/7476/5689/5720/5701/9491/57154/5879/1213/5711/5715/7471/9861/5705/23002/1741/9968/161/4919/5048/1855/90410/5754/387/6259/163/25/7976/80199/10427/54903/2719/1856/9620/8626/8321/2295/1601/2535/22881/8322/1952/4920/7474/9024/4300/51339/7481/65250/2239/23245/9863
## GO:0007164 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/5699/5714/5702/5708/5692/5704/5216/5683/1175/5694/10640/5718/5682/5716/6422/5707/64750/5696/1857/8323/81839/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/23322/998/9948/50855/7476/5689/5720/5701/9491/57154/5879/1213/5711/5715/7471/9861/5705/23002/1741/9968/161/4919/5048/1855/90410/5754/387/6259/163/25/7976/80199/10427/54903/2719/1856/9620/8626/8321/2295/1601/2535/22881/8322/1952/4920/7474/9024/4300/51339/7481/65250/2239/23245/9863
## GO:0032479 4321/9636/6772/51311/8767/10859/3654/51191/5336/3148/5435/64135/3329/23547/81030/3659/7353/23586/5440/7128/9111/26191/9246/6850/79132/7097/83737/63906/5971/10622/5591/9641/1147/140885/3428/5437/3663/89870/10293/9533/4615/661/64771/2547/4361/5970/55666/1660/7706/3586/3665/10621/7099/4791/5781/54476/10084/22954/27297/55703/1540/23220/51728/2033/7520/3661/11277/5495/10623/26146/58509/5434/7187/6737/4790/1654/29110/7528/10475/148022/51428/8780/8887/5966/51284/79671/5300/7098/5094/55718/5802/29072/29108/5441/10211/1499/57506/1387/6778/54941/9208/7318/26137
## GO:0046486 57110/7941/2173/26279/3613/5320/5341/80339/10380/336/341/5336/8525/79888/55697/2171/9791/30968/5359/3638/23175/9600/1608/2172/246/8813/345/2180/8904/348/8513/1133/7915/79887/1119/1460/9588/2182/9362/8811/9468/8898/1374/26291/56895/55750/5444/3631/5321/54928/8733/2784/9971/51365/51196/6305/54545/56910/27132/377/3635/2358/55326/5833/1622/2710/2876/3949/949/30814/3636/10062/1459/8776/23533/84720/5291/5130/5294/747/5277/1071/248/8394/339/116986/660/43/5293/337/5305/8395/55500/5781/83394/9489/55294/8818/2168/9663/79837/93210/58488/3358/8694/64419/335/5155/22979/4534/23167/2538/1606/23659/9108/5337/50487/1607/9110/2170/55361/80025/10554/8503/8897/54979/81579/80168/859/4952/160851/51099/5296/5290/10908/254531/3612/23399/10162/54344/79143/8895/51552/6901/3633/8867/9107/10390/1436/27315/56894/5408/1609/8871/5868/8443/5298/5297/5154/5289/347735/10400/9487/2822/8396/5319/13/51227/718/5048/63874/1040/51604/5728/10026/824/3628/10555/80055/5288/9926/59338/3032/79718/847/59339/56623/8398/26751/8760/10955/30849/5338/7376/5281/4204/9651/51763/3030/9896/283871/57406/55224/338/3990/1103/3356/22876/11343/57664/472/1571/64850/5168/6400/256987/5322/23236/51573/5287/23411/51141/80235/9091/114884/10423/23682/5286/9104/80230/57104/200576/350/9807/54872/11145/1373/1120/56994/23259/5295/23396/51447/9488/79153/129642/5920/11057/2181/81490/55650/3632/65258/23556/5283/2169/3931/171586/22908/51205/114882/8605/57515/22863/66036/64600/6583/283/8527/2166/2247/64788/4023/6720/5159/3991/857/23446/2819/5783/23171/8821/8228/3357/27124/5105/2167/80736
## GO:0002279 136/4067/3162/11314/867/2207/5880/3965/8013/10125/3596/10814/57102/30817/4878/8832/695/6845/27040/1113/5294/5293/3598/50487/8723/8673/6284/284021/5169/3566/7462/2624/3815/2294/5170/6813/2242/2268/56848/9846/8773/2241/6812
## GO:0010463 6772/4609/3549/2254/7422/4781/655/10736/6608/7472/6495/9678/6899/4000/657/4041/2249/5154/650/2294/9464/56998/2260/6662/6474/2719/2263/1499/2252/8660/7474/6468/8646/5396/7048/8642/6469/79633/7481/5764/4487/6935/652
## GO:0071675 6278/3627/7941/6352/56833/1230/4067/5641/3735/7124/1240/4192/728/5054/729230/57402/719/1432/79647/2358/199/6346/3146/59341/2660/177/653/1435/26585/7040/10488/158747/3958/23236/7057/5595/1843/5919/9353/4681/4856/6387/80310
## GO:0071300 339479/2707/4067/3066/7473/7480/6862/7525/11331/7477/7479/8324/2185/7475/7472/6096/11344/51079/10413/4058/6899/19/22938/27/9314/22850/7584/27429/5979/5754/23064/1385/4656/8854/4916/6662/472/5076/56603/2263/3199/6532/8322/3371/5914/4602/54997/7474/11211/2042/5176/5753/1277/5468/358/81029/3952/7481/5105
## GO:0098739 55503/3757/483/1317/6510/6573/7226/23657/10021/6518/610/6520/23204/56302/6507/5997/5621/2348/2534/6569/3762/23516/781/6511/478/476/3766/3759/5999/486/4923/493/183/5663/6506/6550/10060/799/2350/9152/3764/1261/3077/23479/9992/3760/6546/10550/10268/6548/7779/482/481/54795/8864/477/25800/6505/4036
## GO:0001656 6772/4609/6943/2297/2253/2138/10220/7490/655/10736/55083/1512/5455/3975/3398/231/359/3579/3227/6608/51107/7477/10409/5727/2303/793/2668/2302/5155/6495/10413/6928/26585/5156/7369/186/80144/4089/7849/5154/5979/3207/55366/25937/3976/7827/6662/4824/38/5076/2719/8516/3280/5310/25836/4763/1499/80000/3399/4435/1958/6299/9231/596/947/5311/10252/6469/79633/5159/116039/54361/2737/3913/2200/9370/652/2625/7021
## GO:0060333 2633/6772/3126/10437/3055/7412/4938/4940/3458/8638/4502/3383/4939/3394/2210/3659/2634/9111/3119/5469/3135/9021/5724/5771/3134/10379/5371/8651/7294/3663/3326/3122/3106/3662/3107/3105/10062/4281/7726/7706/3665/11074/3133/3459/3113/4261/567/10346/815/7341/3717/85363/960/3661/818/383/3115/3660/6737/816/6672/10475/3120/3460/4684/7376/8554/55223/3716/5580/3664/11140/7157/2209/55128/5468/81603/3263/3117
## GO:1901655 1978/6663/445/6770/6715/54541/11184/114/1789/5031/1019/3383/6696/8751/1244/11335/1956/28960/9131/4478/1080/988/2230/6422/1977/27158/5732/6714/2770/2002/231/65985/109/8837/7292/7023/23367/1646/2660/2782/5030/207/7040/5581/9314/383/11315/186/1946/64754/10270/9475/842/112/51389/31/2309/1392/9101/23411/5562/687/56848/107/5729/2908/5563/490/108/10365/3371/8644/5737/196/2308/5176/5468/358/367
## GO:0006650 57110/7941/26279/3613/5320/5341/80339/10380/336/341/5336/8525/79888/55697/2171/9791/30968/5359/23175/9600/246/8813/8904/1133/7915/79887/1119/1460/9588/9362/8811/9468/8898/56895/55750/5444/3631/5321/54928/8733/9971/51365/6305/54545/56910/27132/377/3635/2358/55326/5833/1622/3949/949/30814/3636/1459/8776/23533/84720/5291/5130/5294/5277/1071/248/8394/116986/660/43/5293/337/5305/8395/55500/83394/9489/8818/9663/79837/93210/58488/3358/64419/335/5155/22979/4534/23167/1606/23659/9108/5337/50487/9110/2170/55361/10554/8503/8897/54979/81579/4952/160851/51099/5296/5290/10908/254531/3612/10162/54344/79143/8895/51552/6901/3633/8867/9107/10390/1436/27315/56894/1609/8871/5868/8443/5298/5297/5154/5289/347735/10400/9487/2822/8396/5319/51227/5048/63874/1040/51604/5728/10026/824/3628/10555/80055/5288/9926/59338/3032/59339/56623/8398/26751/8760/10955/30849/5338/5281/4204/9651/51763/3030/9896/283871/57406/55224/3990/1103/3356/22876/57664/472/64850/5168/256987/5322/23236/51573/5287/80235/9091/114884/10423/23682/5286/80230/200576/9807/54872/11145/1120/56994/23259/5295/23396/51447/9488/79153/129642/5920/2181/81490/55650/3632/65258/23556/5283/3931/171586/22908/51205/114882/8605/57515/66036/64600/2247/5159/23446/2819/5783/23171/8821/3357/27124/80736
## GO:0042133 26227/445/2643/6472/60482/6715/3458/23464/1807/51733/3689/3383/706/5806/1644/5447/10247/81034/10993/1312/7124/7097/5743/2653/7915/570/1119/2618/140885/1785/10333/54/3326/384/1728/6531/2644/6507/10394/3320/80149/199/4842/747/2185/3586/43/189/7099/3553/2475/1545/5153/501/4843/5879/2572/6470/207/3717/9314/5053/8570/5740/186/961/1906/2903/148022/493/183/9475/1757/635/2731/10249/4846/1201/6095/6697/538/9722/23576/223/7054/9104/4317/1806/6532/23564/1373/6582/4088/10365/2571/2717/3643/3043/3350/947/3067/948/5025/5311/590/275/3176/857/23446/6542/8292/1191/10003/4128/7166/18/4129/80736/1524
## GO:0034440 7941/5194/10449/239/5447/215/55289/5467/8013/54363/2108/131/1374/27349/1666/51102/1432/208/10005/3033/5264/51094/1892/10478/2168/2475/116285/5465/51/2170/2109/10891/23600/5828/207/1962/79602/2639/1891/51179/1376/1632/3032/34/7291/3030/3712/6342/26063/23417/1268/2110/51422/55825/5562/30/5825/23409/35/8660/37/224/5191/225/80724/11001/33/1384/5468/5166/8310/55198/56898/3952/3295/10455/32/8309/347/3667/54677/9370
## GO:0046794 3838/9688/9631/6396/23165/55706/23636/5901/79720/4927/79902/10762/8480/11097/9972/81929/89870/57122/7514/79023/9397/3837/9818/3839/684/7311/23511/3836/23633/6993/23279/89853/7175/2332/10332/51271/6233/7316/51160/23225/8021/53371/7314/4928/8086/7251/9883/30835/5903/348995/858/55746/55048/2060/857
## GO:0001764 259266/5080/54541/5194/29967/9289/8941/2676/9585/1812/30012/55079/80128/1951/7422/1020/474/7852/1641/2011/6376/9373/4192/1496/4139/9856/885/3975/6792/5747/1233/6656/8851/8828/1399/10371/581/1813/6722/27185/2534/886/58158/5879/81565/2796/23654/4825/8239/9860/9181/4897/815/2316/1600/23060/3084/23380/7080/816/7531/8403/26012/6774/5663/347733/5048/1398/2624/6900/55140/26468/8846/7976/2258/429/7291/9423/54986/1630/54328/57698/2260/4916/5649/7155/83482/7026/9620/9693/25836/26053/8929/1499/4131/23314/5191/460/558/2823/5592/79625/4628/3675/23284/4929/54820/4692/4208/8829/323/6695/5108/1281/585/9201/2621/6387/4915/10752/2697/63923/2066/2625
## GO:1900047 7103/239/5329/348/2160/5054/5345/2161/84830/5340/2243/3848/5328/2266/7448/2811/1361/5055/5155/928/3273/2147/634/2244/5156/5270/10019/114897/1906/5154/3818/4846/7035/3827/5580/7057/350/710/5624/947/5592/5627/7056/2191/5327/18/1311
## GO:0043583 890/4171/713/7399/54845/5459/8820/8557/2253/1749/3208/7545/8549/4647/3638/10541/2138/2254/2558/9474/8013/474/2048/613/5629/3776/525/10736/5594/3777/10018/55636/23513/5456/53904/79955/2637/1050/8323/64220/4669/2562/5660/9261/2561/6647/5781/50508/793/23322/6657/6495/11020/57053/3198/6899/9368/7471/653/55283/3516/26281/4760/7040/51168/10083/8575/1052/8022/1906/4358/7849/55584/4919/2103/4976/5048/1855/90410/5754/4094/9132/9750/6169/650/4610/2624/2736/7976/357/11078/7291/9423/9935/1687/10427/2260/220/4916/6662/25861/1750/3714/5076/9321/4762/6939/54903/51141/8516/1856/3280/2263/7020/9620/9890/51761/25836/3199/1889/579/6385/8929/3784/5595/54806/2535/2299/23493/26020/29/10253/1301/80184/1027/182/4920/6299/7474/5816/596/1280/7042/84059/8825/55084/5396/8642/6469/54360/57728/79633/26018/5159/116039/5205/6678/4487/3249/2737/2487/7043/6935/652/80736/9547/2625
## GO:0001885 3383/60484/9076/7124/8985/9414/4478/50848/2876/57826/7477/2194/25932/5962/3553/7476/2889/5144/5908/7132/4233/26051/9294/5906/6093/7430/9475/54345/6781/4301/2022/4855/5802/7082/9693/2150/118/5175/1499/26084/5624/7716/80781/3397/57493/1003/10411/5138/3551/2947/7122
## GO:0042306 1894/55612/3458/7545/999/23636/8882/5743/5901/9221/3059/5594/1432/9818/80149/6608/10155/3843/7175/9478/53371/2316/284/11261/5296/7040/186/23435/8841/63928/5663/3728/29969/8692/51715/51366/9531/11142/5569/5580/4763/57506/4088/5295/55696/948/6469/3952/2737/347/652
## GO:0016072 3669/23560/55506/705/23246/54512/23481/9188/10849/55759/10200/27341/9328/10360/5822/10436/5393/6839/9775/4141/54663/1663/54433/51118/9136/23404/54881/56915/55661/9221/54555/55505/57602/23160/55636/4809/2091/6597/114049/22984/51096/55651/25926/92856/54606/55813/55226/6223/51202/2971/10885/55127/5036/4931/51729/10171/79050/27340/9790/27043/2976/9329/4691/29960/11137/51547/81887/64768/26168/10199/79863/27042/50628/55178/6217/2475/81875/6194/51106/11340/9555/8602/23016/27292/6201/9330/6187/57050/55006/11056/51504/57418/55011/65083/29102/79922/6598/55272/57109/10813/10607/115939/10438/6129/51013/6208/9277/6232/79707/6229/6155/11103/51018/2975/6234/8780/6165/6203/51077/6209/29063/317781/54853/23378/6135/55781/10595/10927/404672/2972/25879/117246/130916/23411/23517/55035/9045/5394/55164/7157/10521/84172/51093/10412/9724/55623/6041/29997/284119/283/22894/4137
## GO:0009411 55872/9212/1111/51514/993/9768/2237/54962/4609/5111/8372/4436/92815/578/1991/2956/7398/5424/2072/5603/142/23028/468/5743/1956/7319/675/57805/1642/5371/3593/3592/1032/54929/836/4869/10856/5481/1026/26155/5275/2876/5970/1965/400410/581/4221/9683/3713/3150/4193/7299/79913/22954/2332/5599/5796/2074/51499/602/3364/207/2033/2071/11277/4157/5609/545/1161/7528/6872/8450/10277/6738/847/8692/842/2073/7486/55031/51455/51150/5429/22890/23411/8491/5562/2067/2068/56339/1643/7157/4776/5295/6794/1387/7320/3373/7508/55364/596/4216/595/51435/4734/7507/4311/358/5764/1396/1153/138162/4239
## GO:0071479 10635/1894/5888/641/1535/11200/57817/23028/3014/1410/85453/3297/25896/5810/1785/8091/3428/6422/1432/10010/10135/2002/2885/3309/1026/26272/2547/79073/4193/5883/3265/1936/23514/10276/10269/10413/3364/11011/7040/7520/11277/64710/545/3981/9575/4255/51776/1647/7486/404672/472/598/23411/7158/25836/7157/1958/55693/6591/50507/388/2625
## GO:0048814 7804/10507/10059/8997/1020/84079/50674/5911/2932/6792/7533/10097/1141/7101/11178/7224/8851/2043/6845/9762/1072/3196/55607/4076/7074/2902/54413/1627/23316/5063/56965/3706/1523/577/9820/7225/816/26012/23011/10458/4976/23237/1136/5048/5728/102/11141/10152/23098/23043/10611/5649/6383/5789/23363/26052/9693/22871/3611/7337/5530/4776/64689/115703/6794/29882/1942/26037/80823/4734/65981/3397
## GO:0046631 26279/639/8767/91543/10859/4860/864/3458/2841/11314/942/1880/2529/30968/1794/5788/916/30009/6375/100/3600/3659/3549/940/4063/5588/3965/9308/10808/865/10148/6850/3569/83737/5971/3071/2000/54542/54440/3593/8651/3558/729230/3592/6693/384/3662/941/80149/3606/6363/5734/50856/10892/7292/11126/7535/3707/1604/3718/3146/51176/8809/3133/2475/8943/64919/975/3142/177/3630/602/51043/50943/6932/114548/301/64218/5075/10312/6774/135/3566/4092/3594/387/149041/6146/51561/25/6304/6095/10538/3077/538/8546/9655/6778/5914/4602/604/57045/596/5590/7048/6469/6097/7704/2737/2625
## GO:0050707 7850/4321/5004/2633/55612/51311/914/8767/1236/10859/9447/4067/3495/336/27242/64135/2867/2597/7096/9466/5552/23586/2219/3735/7128/3965/10626/5047/929/26191/4282/6850/64109/9474/7124/5027/56253/7097/2213/10125/3556/6376/834/4192/7133/55024/9734/5371/8651/1147/24145/10333/51744/1432/3552/384/55655/9971/6714/64127/84818/5008/7855/80149/6363/199/1813/5734/57824/1660/3586/10385/11126/6346/192683/7099/5987/3553/3146/335/59341/23208/11146/177/3630/3605/79792/353514/284/3661/50943/1401/4155/27202/5600/3098/7114/114548/80772/186/301/965/55801/1436/6992/23765/26253/22900/7430/3566/27159/2693/8692/55366/83786/25/2335/23705/7291/11027/7100/3440/55540/307/6711/9173/26525/23601/2268/4317/29108/2150/4345/1992/5595/22861/57506/28984/7474/5590/947/8840/2149/79679/727/4023/90865/23005/1149/7494/2621/4035/2615/10631/247/9590/3357/114899/2625
## GO:0061337 23630/1824/59272/3768/1482/3775/3757/779/3753/483/9631/274/491/6262/1525/10021/786/4880/6261/3777/4878/30820/10368/3741/4205/53826/6786/3710/3761/4842/6327/6331/6336/3762/5566/781/492/53822/784/488/10269/785/478/476/2316/5318/5144/5349/3759/778/486/1829/487/10369/6263/3770/7531/6324/493/183/30819/8913/10060/782/10345/3728/489/10052/287/1832/3781/10768/9992/3760/6543/3750/3709/6546/783/30845/27091/3784/1760/2702/490/4882/845/6548/29119/29098/482/4881/10142/844/444/3270/6717/3752/57731/481/54795/2281/55799/7220/3751/477/27092/857/775/5350/55800/2697/9254/5348/776/3708/10699/60598
## GO:0044774 79733/983/6790/891/51512/54962/29980/5111/641/1869/55159/2810/995/11200/7027/8883/4683/3276/63967/6659/1820/23019/5591/835/5371/8091/60561/2765/9125/1017/7029/1026/5514/581/29883/4849/4193/10498/6118/1874/9656/51499/4848/2033/1386/55367/1263/8738/4850/57472/51347/9337/5934/1647/5325/57060/472/1112/9344/7157/26058/51065/28984/4303/7508/1027/79858/595/4194/6419/80279/29997/25949/7832/10769/57551/51149/4582
## GO:0060191 6352/336/341/3702/5031/3208/8698/5447/345/1956/5406/9373/5724/728/9734/2769/117/7294/9170/5997/5046/10062/2321/5335/27329/337/552/51129/55908/10316/5045/3265/335/6401/148/51099/378/27/5156/6272/5330/183/5319/3491/387/3815/5741/25/636/400/5170/22925/7376/2260/5538/3990/4916/3356/5322/2263/6622/350/2776/627/5590/2261/1902/553/283/2247/64788/4023/2099/4908/5159/1909/4035/4915/5125/185/3357
## GO:0061045 7103/239/5329/348/2160/5054/5345/2161/84830/1026/5340/2243/8573/3848/5328/58529/2266/325/7448/11221/2811/1361/5055/5155/928/3273/58189/177/2147/634/2244/3156/5156/5270/10019/83481/114897/1906/23332/5154/5728/55966/1398/3818/4846/7035/3827/5580/7057/350/710/4088/1027/5624/947/5592/23122/5627/2247/7056/2191/54361/2697/5327/18
## GO:0031623 3576/7037/133/10859/5336/3351/3208/3689/2207/22943/409/7422/6850/1950/8898/1785/23513/1814/55681/2885/4289/1173/156/3579/1813/64854/43/1948/157/3577/6386/2332/928/6456/6401/1213/975/6616/9463/54550/26585/859/284/8301/634/3688/1742/967/5868/7430/29978/23237/10267/6900/4983/163/3690/1759/1815/8650/2060/6311/26119/4043/9779/2890/6622/50632/6642/54806/10211/408/10268/948/4734/26045/57007/11031/2868/10203/4908/857/4035/3357/9863/6424/10266
## GO:0002027 10874/23630/1824/133/2643/3757/4159/6870/3753/274/100/4624/6262/10021/1908/55328/4878/3741/522/10371/1813/6327/6331/6336/552/80763/4193/3762/5566/1756/5020/781/488/4625/148/859/5318/5144/3759/5999/186/1829/1906/7531/6324/6640/183/8913/3728/8620/64091/287/1832/9722/9992/3760/6546/783/3784/2702/10265/23493/845/29119/29098/2034/7168/10142/3270/6717/3752/1907/57731/54795/2281/6720/857/775/23171/5350/55800/6863/6505/776
## GO:0060135 1515/4316/639/5471/1594/6696/3549/3965/5467/5743/5469/7319/5594/10661/10959/113/1508/26528/231/5997/682/4221/23780/6256/23641/7421/23633/4838/2475/207/3726/5740/383/1829/55870/285/10935/1828/2693/6781/8398/8620/659/3976/5066/1268/7026/5595/181/3675/2057/2099/5764/54361/2697/367/8614/5241
## GO:0022408 3902/3620/1493/445/23560/80380/3559/10859/1051/864/27242/11314/10288/4072/239/30009/6375/3659/3549/4771/3965/865/999/7143/26191/83737/2213/54900/23240/3135/4192/1041/5771/54542/11326/57162/8651/3558/6441/6693/384/836/5747/8379/7356/51441/84830/5340/80149/2266/5621/7292/9306/3586/10385/972/5962/3718/3146/10457/2302/10653/335/5777/5465/6366/928/59341/7001/3142/11146/2796/53827/7471/1739/65125/1845/207/3717/7040/51043/634/50943/9314/4155/383/2267/5270/10019/301/114897/2064/5074/135/5598/3566/56940/3557/4092/149041/9750/650/64844/25/3958/5420/3440/3077/5573/5607/57669/6370/9647/5580/3456/9655/6385/56339/23075/8654/28984/375056/604/182/9231/57045/5592/79679/6591/6469/6387/2737/2615/18/9370/652
## GO:0030850 10481/5268/9420/55840/655/79084/1588/6422/2288/3239/6599/5727/6256/10116/23213/10818/5728/5324/2736/5916/6662/4824/2263/8626/7337/1499/6794/2735/3371/5914/1027/7474/3400/5176/6469/2099/1396/2737/247/367/652/3169
## GO:0035850 4318/8842/6772/28999/5613/7490/100133941/10736/3975/4643/9788/6608/10409/2303/2668/2302/5155/10413/26585/8826/7849/4868/25937/3976/5420/5800/7827/59/5076/2828/1499/182/4435/6299/947/4208/79633/3913/9863/9370/652/2625
## GO:0000956 55110/54512/4116/57819/25804/5393/9775/23404/28960/56915/1981/55149/26986/9704/11157/23019/51690/26019/4686/80153/11044/6227/23318/6132/3646/9125/23644/6142/9967/6202/6223/26523/2935/6741/23381/80149/7311/53918/29883/27258/677/9887/4849/65109/27257/55181/9349/1656/10767/22916/6181/6156/23658/10921/6217/11224/6206/6194/56006/11340/6235/6230/23016/6175/6158/6201/6233/2107/5518/6187/5976/23112/6170/6143/6134/4848/6176/22794/6188/6192/79670/1655/6193/6129/51013/6147/6222/25819/6208/6210/6232/6204/51594/6229/6228/6167/6155/6128/5520/4850/6152/6171/6161/6133/6160/57472/6141/5073/7538/4736/6191/6234/149041/9337/6169/6146/5515/6165/6203/6122/6136/6209/6499/80349/1797/25873/4292/6164/6231/6205/23293/6135/6168/201626/7812/65110/472/6157/6138/55802/9652/9939/9045/5394/6159/10140/23708/79048/9811/678/167227/9924/22849/55629/22894/7832
## GO:0050856 50852/2633/3932/1236/11314/3783/100/26191/5795/79037/5771/8934/11006/5970/10666/10892/5621/10385/11126/5777/9840/975/1540/8915/1845/6188/634/778/5074/7430/56940/25865/149041/3958/5819/7070/1997
## GO:0048706 6664/50515/3549/2138/4522/2254/257/4188/9775/6862/655/10736/79977/3975/2778/60529/5081/202018/1954/2131/3227/5079/4617/7289/2303/4838/3219/6495/3203/3198/6899/3236/1739/27173/7046/3211/5156/23213/9968/3235/4323/4087/23169/3217/92/3207/7291/80199/3231/4325/6670/6474/7703/3222/64131/3218/54903/29072/2263/7020/3199/579/3204/54799/5087/1499/3232/23314/10265/4088/10522/860/3373/1301/3215/7474/1280/3202/3223/3216/4208/3212/5396/7048/1277/5950/9742/6469/57728/7481/116039/55112/5125/2737/1746/7043/6935/652
## GO:1900180 983/5347/51512/1894/55612/22948/705/3458/9258/908/10576/7545/166614/4771/999/142/23636/8882/5743/5901/7203/9221/10574/3059/5594/10575/2932/11006/1432/6714/9818/64771/26272/4931/80149/51068/6608/10155/51208/2534/10445/10694/3843/7175/9478/7015/23650/3630/9451/53371/2316/284/11261/5296/207/2147/7040/149628/11143/4000/11315/186/29775/23435/8841/63928/5663/23607/3728/29969/8692/56957/51715/51366/3976/5300/9531/11142/5569/5580/4763/57506/4088/5295/6794/2752/55696/948/4804/80279/201163/81603/6469/3952/9201/2737/347/652
## GO:0090257 10874/1824/59272/1482/136/7136/6870/8877/2023/274/2539/100/57817/6329/147/55151/142/8013/5743/6262/5142/10539/10021/7133/5724/1143/5578/2626/10038/151/4878/7135/5747/51196/5058/3720/9446/152/134/4205/5997/156/80149/1113/199/4842/6722/5294/6331/6336/7137/7140/9472/6647/80005/80763/9569/6442/5566/4851/1756/2475/5020/9312/5465/5152/6865/4634/1131/2660/488/7222/9110/2017/10891/27302/6869/4625/1739/8996/476/148/859/2316/7341/9150/1193/5318/5144/3759/7132/9314/818/4000/5999/89/4633/1829/487/2931/1906/816/2852/4089/7134/7528/1613/4607/493/6093/183/5023/1136/4092/9475/387/3728/2693/6781/3815/1605/3673/2258/9464/4846/5300/6915/4656/4660/287/1832/3488/84193/9722/2309/1025/4762/2982/5756/6546/30845/6588/7139/3784/1760/9732/4608/5530/2702/9759/4636/7138/8654/4088/490/845/6752/6548/29119/3736/126393/7402/29098/5592/7168/2149/1490/5025/4887/29995/8678/5021/10142/844/3270/6717/2308/1907/481/54795/2281/10398/10203/2946/477/857/775/5350/1264/7349/3572/150/3479/18
## GO:0038061 5688/5709/330/3654/5698/5693/5713/5721/5691/8877/1116/5685/5690/5684/5686/5695/10213/5052/23198/9618/939/3965/5699/5714/929/26191/5702/7124/5531/7097/5708/5692/8904/5704/1956/7186/5971/9770/655/5683/238/5610/5694/54542/4792/8454/9641/3593/1147/5718/5682/5716/10333/811/5707/8795/192669/64127/5696/11156/3987/26523/5719/5700/5970/80149/3606/6363/5717/9516/10892/10197/4142/8740/51094/10913/5706/7099/4791/5710/3553/6885/8809/222487/5689/9966/5720/5701/9491/1540/329/5711/5715/177/602/8996/26585/9020/9861/207/2033/5705/6188/64922/5495/7114/114548/54765/1896/29775/7189/54386/1906/81/351/8717/5494/7205/10616/387/149041/51561/7105/51284/10920/7098/10392/56672/23291/10725/4317/3611/23328/23405/8945/6500/51564/79092/54209/4856/56892/4306/114899
## GO:0097164 57110/7941/26279/5320/2643/262/60482/6715/336/341/8424/4953/6870/79888/2171/57016/1812/8877/3689/6611/27293/1644/5447/23175/3251/1312/6723/79887/54498/1119/1460/6303/79814/9468/1374/55737/5444/5321/1814/1141/56910/1109/6531/231/10327/1622/3949/10394/949/30814/1459/1813/2861/5130/1071/43/337/9663/58488/2531/1610/335/6610/1645/5153/1646/23659/196743/501/50487/2170/3684/54979/81579/6470/10558/10908/254531/10162/259230/6620/11315/186/9517/81537/10390/2903/55217/10400/2822/5319/5048/63874/1040/824/1757/635/8574/8398/34/1815/1201/4204/1725/538/3990/1103/223/5168/55512/5322/5580/7054/23682/6609/6622/5071/56848/11145/1120/56994/79153/129642/5920/427/2181/3350/55304/3067/8644/3931/1621/9627/171586/4881/4929/33/8605/590/7042/64600/6583/1384/3176/84869/23446/8292/4128/54677/7166/18/4129/80736
## GO:0030195 7103/239/5329/348/2160/5054/5345/2161/84830/5340/2243/3848/5328/2266/7448/2811/1361/5055/5155/928/3273/2147/634/2244/5156/5270/10019/114897/1906/5154/3818/4846/7035/3827/5580/7057/350/710/5624/947/5592/5627/7056/2191/5327/18
## GO:0060395 9688/8200/10220/142/23625/6862/655/10432/3172/9197/654/4838/28996/10923/4093/9518/7046/7040/657/4089/4087/6497/4012/3725/7431/650/25937/6711/4090/64081/10140/4086/1601/4088/4920/4435/11030/7042/2353/58495/4856/174/7043/9863/652/8483
## GO:2001238 5499/637/5788/467/81618/6789/8772/4055/11124/7186/4118/5366/5371/6422/2923/6788/5062/51330/5518/1540/8915/5519/51741/186/2852/27429/1613/183/5979/10616/5728/8682/8692/6498/8737/1495/29108/7057/3624/4763/8743/50486/7078/8406/857/658
## GO:0000070 55143/991/9493/1062/10403/23397/9787/51203/10460/4751/4085/81930/81620/7272/64151/9212/9319/9055/3833/891/24137/9928/11004/990/5347/29127/701/11130/10615/79075/9700/9918/1063/26271/23310/10051/5885/84722/54908/10592/8260/23212/23636/3619/7517/5901/7273/80218/5119/11044/25906/29781/81929/3834/3835/8379/3837/23137/84861/27183/10300/7756/55795/79998/56984/79003/23244/9183/51510/7175/996/8766/9555/6795/8243/25978/5518/3192/23383/9184/9525/26993/91782/57132/29082/51451/51143/55719/10270/55755/79643/55781/8697/472/56155/8658/546/3550/25836/5925/27243/8452/23047/1843/324/8678/10464/4926/23126
## GO:1903557 5004/914/8767/1535/3458/64135/942/3066/5788/7096/2207/23586/3929/1652/3965/929/4282/7097/8772/64170/1536/5795/10125/7305/5724/54440/3593/729230/6693/64127/101/7855/9261/6363/23643/1660/566/7099/943/5781/3133/177/9181/353514/3717/10564/5196/351/148022/51561/83786/7291/3670/11027/7098/10392/8737/4317/29108/7057/3315/4776/57506/5295/7474/948/4023/3952/1191/9590/26137
## GO:0061005 4318/8842/6772/6943/28999/5613/7490/100133941/10736/5455/3975/4643/9788/6608/10409/5727/2303/2668/2302/5155/10413/26585/8826/7849/4868/55366/25937/3976/5420/5800/7827/59/5076/2828/3280/1499/182/4435/6299/947/4208/6469/79633/54361/2737/3913/9863/9370/652/2625
## GO:0009060 6472/9650/4200/3418/9377/664/50/1737/158/3419/5160/2395/3091/7415/1349/2271/3421/1351/5161/1329/3417/4697/1340/1431/6389/4191/1337/7384/1327/9167/1738/3416/6391/3420/1743/4967/8802/1352/5018/80025/1345/23530/89/6390/513/6834/2647/7385/1355/847/6392/863/9016/1350/8801/8803/5162/29997/23410/10873/7349
## GO:0043574 5194/215/54363/570/51268/7321/3417/5830/10005/7311/5264/3416/189/55670/1610/196743/7323/6233/7316/51/4843/8239/23600/5828/7314/8540/5192/1962/51762/1891/4358/373156/8443/9409/51179/283927/5189/7322/847/5195/6342/26063/5190/23417/8504/55825/54469/30/5824/5191/11001/3155/1384/5193/8310/3295/8528/10455/8309/54677/2053
## GO:0002724 91543/30009/6375/3569/7186/7133/3134/54440/729230/7855/3606/10892/7292/3553/6885/8809/975/567/50943/383/114548/7189/1178/4092/3440/3077/3456/3554/5590/54795/2625
## GO:2000758 6659/672/29117/10856/8986/4842/3553/22976/55124/10891/55011/6598/7040/50943/11143/4089/23558/3976/3670/2648/5562/26053/56848/5595/408/5563/9252/6591/4674/4582/2625
## GO:0019933 3627/6373/4283/333/57211/133/3973/136/114/2642/51083/4159/1812/8698/79924/8477/2692/4160/2641/2827/23432/4161/1672/997/5578/8811/117/1394/153/113/4158/1814/6344/2778/5732/796/5731/2770/5997/266977/1113/4842/109/8844/9472/4988/6754/5140/2740/1816/5739/9699/3361/2782/6343/2044/9368/6014/6954/19/81285/5144/4157/1979/2931/5196/2852/11214/1609/493/135/5598/51555/7253/10267/116/799/2587/2695/4987/5741/7432/2771/112/2696/23295/6662/10846/1392/4724/115/9693/64784/5141/3375/5139/107/2774/27445/108/10268/7320/5745/4887/196/187/1902/10411/2691/10203/5138/11069/5350/5744/7349/150/10266
## GO:0062013 983/891/133/3973/6770/26330/136/3458/5449/5031/2023/5447/5208/215/5210/1312/8013/7124/5027/2641/5743/3091/551/7415/5724/1950/1642/5771/5366/1374/117/51744/9971/6714/5209/8445/208/10062/4142/337/552/51085/3553/57223/2168/654/58526/2645/5155/5465/5207/5028/10891/3630/3037/207/5957/5581/6901/11315/7114/89/4923/3269/2852/4790/10776/405/2979/6774/2103/2822/2978/55022/9926/2693/5741/2981/7291/7376/4846/9619/8850/4656/2648/26471/23479/3356/23417/65018/23411/26119/9104/5562/6622/957/5261/8660/5563/5745/3643/225/54209/2246/8604/2308/1581/10580/60481/5468/6720/2819/54361/26137/3667/3479/9370
## GO:0072009 8842/6772/4609/6943/28999/2297/2296/2253/2138/7422/7490/100133941/9500/10736/55083/5455/3975/4643/3237/9788/6608/7477/10409/5727/7475/2303/793/2668/2302/6495/10413/6928/7471/1739/26585/7040/8826/7369/186/3911/4089/7849/26508/183/3217/3207/4868/650/55366/25937/3976/56998/5420/5800/7827/6662/38/5076/2719/4070/3280/5310/3611/5175/54806/5228/5087/1499/80000/182/4435/6299/596/947/7482/5311/26249/2246/4208/8642/2247/6469/79633/7481/54361/2737/3913/9863/9370/652/2625/7021
## GO:0106027 7804/5641/10059/215/8997/1020/9456/2048/348/2213/91752/2047/8898/55737/2932/2049/10097/8851/2043/9762/1072/5621/55607/4076/8976/2534/7074/50944/54413/1627/998/7476/2904/23316/5063/2017/3706/9463/3630/478/1742/816/351/10458/4976/5663/23237/5048/5728/1855/10013/23613/102/51104/10152/55619/10611/5649/26052/1639/22871/4130/7337/22891/115703/3643/225/1942/3675/26037/80823/65981/1501/3480
## GO:0097696 6352/6772/6347/11009/3575/4067/3458/11314/3066/5788/7428/3600/4771/9111/64109/7124/3569/9021/3596/958/3297/1950/3059/3587/5771/3570/10617/3593/8651/10603/3558/729230/3592/3455/2688/231/6775/55620/5008/3606/2056/9244/29883/51379/3562/51094/9306/1442/3586/5770/5617/2534/11137/3718/4851/3565/1545/5518/23568/2074/602/3588/23529/4760/1600/3717/9146/2147/7132/59067/10019/55801/1437/4249/7066/1436/2689/6774/183/5979/6773/8995/5515/51561/3815/3976/3670/3440/9646/1270/8554/84444/22876/3454/6777/79893/3456/54741/3280/5310/9655/5175/3567/2322/6776/2149/2261/10464/5311/5753/2241/8835/3952/5618/3263/857/2690/3572/1489/3479/2066/11122
## GO:0044242 1381/2173/313/80339/5194/9388/336/341/5336/2171/57016/8877/10449/27293/23175/4759/215/55289/2172/5467/54363/345/2108/4504/57733/9588/1374/26291/3417/27349/1666/1056/51102/79644/2760/84830/208/10005/3949/949/5096/4668/5660/3033/5264/5294/10825/747/5335/27329/337/1892/10478/4051/2168/2475/1545/6610/5465/23659/51/2170/2109/23600/51099/5828/207/10908/22933/8879/1962/2639/1891/5408/51179/1376/2822/283927/13/3074/4594/1632/3032/34/7291/1579/3030/3712/4258/57406/6342/338/5538/3990/22876/26063/11343/56603/23417/5168/1268/55512/5580/2110/51573/6609/55825/57104/30/5825/2581/1373/35/8660/23259/37/224/2717/79153/5191/427/11057/225/8644/2169/2517/5095/80724/11001/33/8605/1384/2166/8310/56898/4023/1592/3952/3295/10455/3991/4035/32/8309/8228/3667/66002/54677/9370/2167
## GO:0019395 5194/10449/239/5447/215/55289/5467/8013/54363/2108/131/1374/27349/1666/51102/1432/208/10005/3033/5264/51094/1892/10478/2168/2475/116285/5465/51/2170/2109/10891/23600/5828/207/1962/79602/2639/1891/51179/1376/1632/3032/34/7291/3030/3712/6342/26063/23417/1268/2110/51422/55825/5562/30/5825/23409/35/8660/37/224/5191/225/80724/11001/33/1384/5468/5166/8310/55198/56898/3952/3295/10455/32/8309/3667/54677/9370
## GO:0001909 3002/3902/1075/5551/57823/10859/1054/3575/11151/80328/26228/1991/5788/259197/3383/4068/6375/203068/8807/5052/409/3965/3251/10383/6318/5027/56253/8772/5817/2213/10125/3135/164/7305/1773/9437/3134/3593/7264/3592/51571/3805/1512/5272/6372/3004/6845/3606/10666/566/11126/7409/5873/3133/5777/4843/3684/177/567/3916/2147/634/59067/383/8417/1776/3594/1398/80329/51561/23705/3811/6813/5819/1130/6777/11334/5532/2150/2013/100507436/1511/3952
## GO:0019886 9493/1062/81930/3832/3902/24137/11004/29127/6712/1515/56992/3126/3112/10437/1520/5641/1514/6396/1509/1174/3119/2213/164/1175/1785/1510/3109/162/3108/3797/1211/3122/3835/3796/10802/3111/1173/829/84516/1780/972/832/10121/3113/6456/7879/1213/8655/51128/3798/11258/821/3115/9871/22920/7189/1783/8905/10120/161/830/51143/22872/1778/3120/10540/10053/55860/163/64837/9632/11127/10671/3831/10427/1639/10484/9371/51164/1781/114876/8722/3117
## GO:1902750 983/9212/1111/51514/6790/5347/29980/5688/5709/641/5698/5693/5713/5721/5691/5685/5690/5684/5885/5686/5695/10213/23198/8883/4683/63967/5699/5714/5702/9978/5708/5692/5704/672/5683/5694/8454/5718/5682/8091/5716/5707/60561/29086/5696/22809/5719/5700/5717/27183/60672/10197/5706/5710/5689/9555/79184/5720/5701/9491/5711/5715/51343/9861/5705/9577/8555/51347/51720/55031/472/1112/9344/6500/4303/80279/23194/29997/25949/2273/5988/57551/51149
## GO:0046474 26279/5320/80339/336/5336/8525/79888/55697/2171/9791/5359/23175/9600/246/8813/8904/1119/1460/9362/9468/8898/56895/55750/3631/5321/8733/9971/6305/54545/56910/27132/377/3635/2358/55326/5833/30814/3636/1459/8776/23533/84720/5291/5130/5294/5277/248/8394/116986/660/43/5293/5305/8395/55500/83394/9489/8818/9663/79837/58488/3358/64419/335/5155/4534/1606/9108/5337/9110/2170/55361/10554/8503/8897/81579/4952/51099/5296/5290/254531/3612/54344/8895/51552/6901/8867/9107/10390/27315/56894/1609/8871/5868/8443/5298/5297/5154/5289/10400/9487/8396/5319/51227/1040/51604/5728/10026/824/10555/80055/5288/59338/59339/56623/8398/26751/8760/30849/5338/5281/51763/9896/55224/1103/3356/22876/57664/472/64850/5322/5287/80235/9091/10423/23682/5286/80230/200576/54872/1120/56994/23259/5295/23396/9488/2181/81490/55650/65258/23556/5283/3931/171586/22908/51205/66036/64600/2247/23446/2819/5783/23171/8821/3357/27124/80736
## GO:0006026 10855/3161/8372/1464/1463/10675/63827/1118/57214/2588/411/176/60495/4669/57115/2720/23553/8993/11261/7040/960/10894/27159/3074/6382/375790/9672/8692/2990/3423/2799/6383/3425/2719/2262/23670/6385/138050/55576/6548/3373/3073/2517/2817/4060/5549/2247/6448/3339/1462/633/2239/2331/1634/11081/4958/4969
## GO:0043967 8607/10626/86/9474/8089/80218/672/675/3054/10943/10856/3662/6688/4654/26038/54934/10445/51176/79829/8295/10269/55011/6598/10524/2033/11143/8520/9767/10933/54556/51147/7994/64769/55683/1487/23326/10902/151050/2648/57634/55167/8473/51230/4297/5187/79903/23411/26053/339287/79960/84148/408/8648/23522/322/23338/4582
## GO:0071277 1894/8437/114/5641/3208/10105/246/8904/7226/27101/6261/3756/27132/3309/4205/6331/4761/241/3707/25932/673/57192/2521/2021/65125/3727/3726/8895/8826/10235/6263/1906/23385/63928/2822/3725/2978/2039/79085/1800/29957/2354/22871/5562/107/118/825/5563/7474/8644/5311/84059/4208/79800/2353/1393/6857
## GO:0051028 55110/9688/10212/56943/10643/4600/7884/9631/10644/4116/6396/23165/55706/6427/9775/29107/23636/4927/79902/3297/10762/8480/11097/26019/55308/4686/3267/25909/9972/81929/29118/1977/57122/9908/56648/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/23381/57097/55916/81608/10128/23511/677/1660/9887/10898/65109/29890/2733/22916/11338/23279/6426/9444/10921/6429/10250/59343/57187/7175/51362/2332/26097/23039/23225/5976/6432/8021/53371/84271/22794/64901/4928/8888/8570/23299/80145/79228/8086/26993/9883/55421/23237/7538/5903/348995/3178/9984/55746/23293/91746/10482/8189/65110/6830/6431/9295/29072/4641/9939/8658/51213/220988/6430/9877/8106/9284/3087/9961/3800
## GO:0046425 6352/11009/4067/3458/11314/3066/5788/7428/3600/4771/1020/7124/3569/9021/3596/958/3297/1950/3059/3587/5771/3570/3593/8651/10603/3558/3592/2688/231/8851/55620/5008/3606/2056/9244/29883/51379/3562/51094/2185/3586/5617/2534/11137/3718/4851/3565/1545/5518/23568/2074/602/3588/23529/4760/1600/3717/9146/2147/7132/59067/10019/55801/1437/1436/6774/183/5979/51701/8995/5515/51561/3815/3976/3670/3440/1270/84444/22876/79893/3456/54741/3280/5175/3567/2322/2149/2261/10464/5753/8835/3952/5618/3263/857/2690/3572/1489/3479/2066
## GO:0098542 6280/6279/6278/3627/9582/3669/10563/820/4283/4321/10578/6364/2633/4069/9636/3934/4599/56833/6502/5551/3559/2537/200315/6772/51311/3507/5320/64581/5650/1690/8767/85236/91543/3429/5544/10859/330/6590/9447/54541/1051/8970/64108/51191/4938/4940/1535/3458/3148/54512/51316/64135/8638/8547/10964/6283/1991/3853/4600/25939/2597/5788/5359/9466/9188/664/4939/575/3394/3600/3659/7353/23586/3929/57817/7128/3434/81622/671/6406/3467/6059/3452/6850/7124/5027/79132/3569/4049/10875/7097/83737/8772/3906/63906/64170/6039/1053/81623/6036/60489/56915/958/1672/10622/728/5610/5054/50489/4277/10379/5366/3570/5371/3593/25818/6441/3592/60509/3428/6397/200316/57402/10333/54/6693/81929/3663/708/89870/384/9971/6556/64127/3662/3455/5473/4615/2896/6372/10758/6223/3439/920/661/2358/64771/84818/6868/2243/684/5970/1669/80149/57151/1113/29883/26057/55666/57115/10133/7292/9255/1660/1670/3443/339/8288/7706/3586/566/11126/55324/3609/3665/10621/7099/3451/7425/3553/5861/5611/6156/5897/10146/26100/3347/5553/3133/54476/3265/2220/10084/55601/27297/1653/8993/55703/5199/4843/3273/8349/4353/329/23208/5225/10269/56829/58985/2074/3605/602/6170/3442/29102/79792/51728/3445/3516/3588/10346/9020/2316/1969/10533/60343/103/2147/7040/85363/22933/3661/7132/3446/11277/2244/1401/5495/51552/10623/51297/383/3448/114548/6895/3660/26146/54765/944/3512/26065/7187/5196/6992/23765/29110/26253/10475/148022/55421/104/5319/3566/55763/3444/10060/9698/3594/55337/24138/79594/6773/8780/51561/1755/8692/10407/8398/7105/23166/3346/10955/3449/51284/10077/79671/4986/23369/7100/7098/1671/10392/7110/3764/3440/10538/5094/55718/201626/57379/10771/26525/6464/1130/10241/6407/256987/5580/3456/354/2268/29072/11334/29108/2150/4025/5595/653423/22861/3140/26007/57506/10521/10497/55576/4057/665/100507436/4153/306/63901/3441/3240/596/6779/10410/948/3964/8678/54941/11005/6041/6403/5919/29997/6037/1511/7728/90865/23005/11096/5654
## GO:0030516 3897/3475/7473/80128/7422/1020/7143/348/4504/3984/1785/51393/2932/6792/5058/7224/8851/393/10371/4133/1954/1002/6722/6049/27185/4099/51330/11344/55558/8766/1826/9175/81565/2017/4825/23191/4897/23394/2664/57142/23011/5048/8482/5458/10439/6259/659/25/2335/9423/57698/4916/1808/5802/23499/3611/4131/29882/22902/7474/2803/8829/9037/6387/56920/4035/4137
## GO:0043300 136/4067/3162/11314/3689/2207/5880/3965/6850/613/2213/164/3596/5724/3134/57102/30817/729230/4878/8832/6845/3598/8723/3684/8673/3916/634/3566/2624/2294/5170/6813/6810/2242/2268/2150/56848/9846/29/57126/6812
## GO:0043303 136/4067/3162/11314/867/2207/5880/3965/8013/10125/3596/10814/57102/30817/4878/8832/695/6845/27040/1113/5294/5293/3598/50487/8723/8673/6284/284021/3566/7462/2624/3815/2294/5170/6813/2242/2268/56848/9846/8773/6812
## GO:0071326 6770/4830/2730/114/56943/1535/3383/5127/6659/2692/5165/3091/1080/6518/25874/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/65985/7351/3799/6722/3745/4221/65220/51085/5798/1361/7074/7447/3651/5566/65010/3956/2850/5879/10891/2044/177/55011/9324/2021/6598/5290/4760/846/5581/5894/3156/5906/51714/1946/2852/2901/9230/4976/572/79727/2822/9448/8398/4986/6810/7776/2309/26056/5076/1392/7054/1215/2729/51024/5532/5562/51092/5530/8609/408/10497/8660/5563/22841/9024/5799/6717/9854/5176/1581/54795/2281/50507/3952/7494/2621/8938/4035/55638/55107/26137/150/5105
## GO:0007613 2237/1051/114/5641/1812/6285/8997/1312/5743/348/3776/11202/4192/5923/6446/885/123803/9757/1141/3949/3710/266977/1813/6722/5621/3274/4593/8704/2902/50944/41/793/2475/7436/5020/23316/6869/23373/23394/3678/1979/54207/9610/57030/3269/2903/57338/5663/23237/4835/1497/5728/2695/814/8398/57144/1385/2258/10347/4204/2648/1620/10636/5649/3356/6543/1268/23236/8516/7054/2890/5532/25769/4130/22986/107/6532/6326/4776/23152/3643/5590/1621/3675/5021/22849/5176/9867/6310/10769/5764/6863/4137/1524
## GO:0032370 8792/9388/51083/6696/4282/5027/348/1588/4792/5360/5444/10062/5727/3553/6754/654/5608/26154/5020/335/2170/51499/19/302/114897/4923/1906/9227/2587/8398/22925/8600/7376/10347/9619/1579/7110/6342/4824/56729/10396/1392/5580/23411/26119/51761/2874/4602/5025/5244/4035/6863/9370
## GO:1904589 1894/55612/3458/9141/7545/999/23636/8882/5743/5901/9221/3059/5594/1432/9818/80149/6608/10155/3843/7175/9478/53371/2316/284/11261/5296/7040/186/7984/23435/8841/63928/5663/3728/29969/8692/51715/51366/9531/11142/5569/5580/4763/57506/4088/5295/55696/948/6469/3952/2737/347/652
## GO:0048469 9319/6790/891/9928/53335/6663/994/712/7298/10481/26271/6496/51083/2539/3600/3549/10220/7422/865/5047/23028/9991/2692/9334/3091/26047/6376/1080/30813/1672/675/4880/23318/23114/6690/11144/3398/631/51441/1050/2069/1618/1026/695/7855/2056/54738/6363/2266/1738/2185/23787/23294/55908/29842/5566/2475/26256/65010/6366/10882/3050/5518/9175/5452/9985/4825/9463/9897/4897/6954/22933/5881/79670/2038/59067/10116/8578/6886/351/10296/9331/4976/30819/5979/27289/718/375790/54345/51341/2624/5414/6900/26468/5972/8419/429/4204/2260/2309/6911/5991/1910/3280/11334/5925/2068/1499/10265/860/4882/1203/10365/5745/1028/11057/558/596/2034/3202/4929/1235/283/57731/9855/5468/7494/4653/2697/1811/3169/25893/2625/5241
## GO:0046890 1717/133/4597/6319/6713/6770/3458/341/3422/1594/79888/2171/8877/2224/1019/706/5447/3638/215/79071/7124/345/3692/5743/5629/348/551/5901/672/3157/2264/3417/29095/2672/57761/9971/6721/3837/2358/3949/949/10062/4800/51094/2194/116986/337/6647/552/4598/51085/3553/8439/7421/55294/654/4802/58526/3358/2475/5978/1181/5155/6610/6615/2222/2170/10891/4047/3630/653/476/207/60343/634/7132/10613/23399/11277/3156/27120/79602/2852/8720/4790/1609/5565/5154/1081/2822/718/3491/824/9926/650/51360/2695/8398/1385/7376/9619/22937/23038/57406/4801/338/31/10654/3356/6667/55512/5580/51422/23411/51141/23682/9104/5562/7108/2516/56848/11160/9453/23409/5563/37/7536/427/1958/2181/3490/225/8644/33/2488/10464/2246/1389/27122/221395/6309/1581/10580/6591/60481/5166/3952/6720/32/54361/23541/3357/26137/9370
## GO:0007031 5194/10059/215/54363/570/51268/7321/3417/5830/10005/7311/5264/3416/189/55670/1610/196743/7323/6233/7316/51/4843/8239/23600/5828/7314/8540/5192/1962/51762/1891/4358/373156/8443/9409/51179/283927/5189/7322/847/5195/6342/26063/5190/23417/8504/56947/51024/55825/54469/30/5824/5825/11145/57506/8799/5191/65084/11001/3155/1384/5193/8310/3295/8528/10455/8309/8800/54677/2053
## GO:0001755 4902/23603/8092/3091/655/1908/2637/8828/10371/6608/1072/2348/2668/1947/6899/3911/65979/5979/5308/2335/9839/9464/7291/3670/1910/6405/90/8929/8829/6469/58495/4254/10512/3357/652/2066
## GO:0042181 133/23590/6770/7167/27235/57017/51805/1588/23408/10948/654/5978/1585/1181/10891/29914/653/3293/27120/56997/1609/3972/57107/51004/1584/650/8912/79934/6716/10229/1958/8644/2488/27122/51117/54361
## GO:0031333 9928/6712/1978/29767/8543/3925/7111/119/22943/3638/4210/1410/8290/5216/84079/22919/7417/55737/2932/5830/2288/6714/5217/822/4133/1366/6710/5734/7067/5962/4091/3146/998/11344/7429/329/3630/1859/51657/55604/9181/29103/2033/29766/22933/10382/5894/10565/11315/7114/80772/26146/1654/51451/5494/10677/9026/6904/2039/8780/5195/6708/11078/56937/24144/8195/56998/2059/114088/6711/8408/5580/5756/51332/6622/4985/23189/3375/118/23493/55364/5590/51185/26036/11075/29997/6709/9353/753/2934/57731/51339/25999/27136/6812/24139/585/6653/85477/1191/213/50853/80206/25802/27124
## GO:0060078 5026/1138/5024/409/1020/9775/5027/1134/1143/1144/8898/1142/2932/153/1137/2742/1141/2895/134/2569/2562/2911/1813/22997/2185/55607/2561/8001/4988/2902/2570/50944/1145/54413/7476/869/23316/9699/784/6804/1135/57053/54434/2900/2563/22953/207/23542/9294/5999/1742/57030/1146/6455/3060/2931/2899/4923/2898/2741/351/2901/4355/9127/55584/10458/22999/135/5023/116/1136/5728/1855/23613/2892/2560/1815/4204/22930/8973/9378/5649/6546/2890/22871/6622/2897/154/1760/5530/10497/2915/3736/5590/5025/4887/9162/2259/4208/1140/3751/2550/2743/18/57502
## GO:0002200 9156/7037/959/3148/4436/79915/3329/7468/2956/25939/5788/9466/30009/7374/940/4683/10721/958/5591/3558/64421/55183/7292/56259/3586/9025/5897/3146/22976/3565/51176/64919/6929/23529/103/7040/50943/6932/8888/8741/3981/54537/4292/9984/10538/5896/5423/57379/27343/6830/472/9730/7158/2067/23075/6778/604/1235/10039/27434
## GO:0006625 5194/54363/570/51268/7321/3417/5830/10005/7311/5264/3416/189/55670/1610/196743/7323/6233/7316/51/4843/8239/23600/5828/7314/8540/5192/1962/51762/1891/4358/373156/8443/9409/51179/283927/5189/7322/847/5195/6342/26063/5190/23417/8504/55825/54469/30/5824/5191/11001/3155/1384/5193/8310/3295/8528/10455/8309/54677/2053
## GO:0072662 5194/54363/570/51268/7321/3417/5830/10005/7311/5264/3416/189/55670/1610/196743/7323/6233/7316/51/4843/8239/23600/5828/7314/8540/5192/1962/51762/1891/4358/373156/8443/9409/51179/283927/5189/7322/847/5195/6342/26063/5190/23417/8504/55825/54469/30/5824/5191/11001/3155/1384/5193/8310/3295/8528/10455/8309/54677/2053
## GO:0072663 5194/54363/570/51268/7321/3417/5830/10005/7311/5264/3416/189/55670/1610/196743/7323/6233/7316/51/4843/8239/23600/5828/7314/8540/5192/1962/51762/1891/4358/373156/8443/9409/51179/283927/5189/7322/847/5195/6342/26063/5190/23417/8504/55825/54469/30/5824/5191/11001/3155/1384/5193/8310/3295/8528/10455/8309/54677/2053
## GO:0055010 1482/2296/5457/4624/5629/6262/5469/2280/9421/55636/7135/8928/7137/6256/2303/4851/4634/27302/4625/3516/7046/5318/7040/3084/657/4633/79810/4089/7134/4607/4092/10277/3670/1832/2022/2263/7139/23493/1301/7168/7042/57493/23414/7049/4036
## GO:0006968 4283/50852/10578/8061/5551/3823/136/3702/4688/10288/1234/4068/3929/3135/8808/7305/728/9437/729230/1232/3805/6693/3959/9214/4332/5970/3579/23643/10871/2185/10219/3808/9436/8915/922/3688/7369/5408/10312/4046/135/10803/7707/51715/23601/7716/8678/1235/1524
## GO:0019229 952/59272/133/3383/5743/551/1956/1908/5724/151/40/152/3741/2243/2266/3274/80005/1636/1131/6869/148/207/846/2244/3269/1906/183/5023/387/624/27345/659/3356/10242/1889/9732/2702/490/2149/1621/1907/54795/3952/8864/477/857/2697/185/150
## GO:0009791 1717/639/50515/578/4647/7422/57282/7915/4880/54542/10018/3975/4643/54928/2778/60529/1544/22809/202018/7855/3636/5326/581/3658/3150/93/2475/3482/1826/64919/2566/26108/10765/7046/8879/9314/4633/2016/55870/4087/25976/48/27230/5663/4594/59338/23334/57003/25/4204/5864/55224/338/472/10848/23515/4237/2263/6335/546/2067/2068/26058/596/4929/84159/4692/57493/6414/2202/10512/6571/2200/3708/652/2625
## GO:0070167 9636/1230/8326/26271/1051/1594/5552/2824/468/7480/5027/3091/655/265/9313/1758/2185/7475/93/654/4851/55787/2201/10269/51374/26585/4146/7040/4745/197/657/2623/8074/6093/92/3491/9475/650/5741/659/7291/4846/1893/54880/6662/6546/7020/90/154/4921/23493/4088/490/4057/6779/1901/4256/23462/84059/4208/4077/54795/56172/9365/2621/5764/116039/658/54361/5167/2697/7043/4958/1311/652/54829
## GO:0046928 23413/136/8564/1138/321/3351/1812/10059/1020/10675/10755/1143/28964/1142/5582/2932/1137/1141/91683/5579/6855/5217/8573/1813/55607/9515/41/594855/7476/6865/2332/6853/488/6804/5028/23208/5030/815/148/5908/5906/9783/3060/2852/320/2901/5868/22999/135/5023/6623/1136/1855/27345/3749/22930/8973/5864/55288/3356/1268/783/22871/23025/6622/5071/107/4763/9581/10497/23621/1129/7779/9627/9162/6843/79772/4208/6812/8938/6857/776
## GO:0071774 10563/79801/3576/6352/6347/54845/9982/6770/2730/5435/2253/867/2251/2591/5440/2254/27006/5433/63978/988/5594/23769/2257/2264/26291/4686/5437/6422/3975/2002/3164/2885/7356/5439/3185/1399/9702/9158/5431/8822/5436/5725/80004/677/5781/22916/3746/2250/5438/5432/6899/2963/10765/26281/960/846/10817/7073/51552/23543/8826/5434/23213/25778/8823/8074/2249/3187/2248/10818/27020/25865/8036/7538/8692/9592/23064/5741/3178/9270/80199/2260/5430/2263/2729/7057/4670/7072/6622/5441/200734/55614/5595/1499/1373/1960/2252/23767/860/2962/3371/3373/90993/7474/1490/678/2261/2246/2817/1277/2247/9365/79633/8817/54361/10631/3730/2625
## GO:0070050 23413/3351/491/1020/3569/6376/1134/134/6530/7301/492/25978/5028/5030/57030/5023/3300/23498/55277/1268/1639/783/5562/4130/5071/490/9256/4753/57551/776
## GO:1903747 3002/1869/2810/9141/637/7027/7534/5880/7159/3301/10055/57602/5366/10971/7533/7332/6721/5534/7029/10456/55486/7855/1459/51100/59286/55294/7529/9530/841/10075/3998/5599/7323/9776/2931/79778/27429/7531/8314/572/93974/89781/7161/9520/10425/55823/23368/9531/5533/4836/65018/54741/5562/8626/5071/23409/7157/665/596/6720/3305/22885/4137
## GO:0015800 8564/55144/8500/5027/551/10165/23657/10755/79751/885/23204/55238/134/6507/8541/8497/552/57084/2744/2917/6804/6512/6616/6511/3766/2912/57030/4923/4889/6529/320/54407/22999/135/5663/6506/11230/8499/22930/5864/80131/6622/4763/10550/10497/9256/6844/27165/8604/6812/8864/477/4915/6857/6505/18
## GO:0016999 6770/80896/1535/4200/3418/5973/57016/55907/6783/5052/5880/219/50/1737/1244/3419/5160/50506/221/1956/7915/1536/131/27284/2271/4504/3421/10020/5161/3417/55577/1431/1109/6389/231/3034/1544/10327/4191/2876/6482/27035/6822/1738/6391/8288/337/6647/2534/6569/3420/116285/128/1645/1646/1743/4967/8802/130/5879/4353/7001/47/10841/23530/11315/55818/6390/6480/6774/48/1497/10013/10935/847/8574/6392/124/1800/53905/217/8801/65018/8803/222/4025/6622/5162/6799/7755/2878/1543/7173/2098/3043/3240/8644/4314/7837/6817/216/126/84869/10873/4129/125/1580
## GO:0071331 6770/4830/2730/114/56943/1535/3383/5127/6659/2692/5165/3091/1080/6518/25874/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/65985/7351/3799/6722/3745/4221/65220/51085/5798/1361/7074/7447/3651/5566/65010/3956/2850/5879/10891/2044/177/55011/9324/2021/6598/5290/4760/846/5581/5894/3156/5906/51714/1946/2852/2901/9230/4976/572/79727/2822/9448/8398/4986/6810/7776/2309/26056/5076/1392/7054/1215/2729/51024/5532/5562/51092/5530/8609/408/10497/8660/5563/22841/9024/5799/6717/9854/5176/1581/54795/2281/50507/7494/2621/8938/4035/55638/55107/26137/150/5105
## GO:0050807 991/7804/5100/8326/78999/9758/10288/10507/7336/575/203068/22943/10059/7534/8997/1020/9456/7124/7097/2048/348/1000/7415/2213/23657/3556/11202/1981/91752/3587/2047/23769/1496/55737/9148/1432/6792/2049/382/4914/10097/5747/54583/1141/40/2895/8851/8828/1399/2043/58504/26050/1813/9762/4761/1072/5621/55607/9419/27185/3586/4593/5818/4076/2534/26280/7074/2902/2119/54413/1627/5020/7476/869/2904/23316/5063/6495/25978/1607/1006/3706/3630/54434/23191/9746/57408/4897/23394/378/8536/577/22865/22883/64218/79012/816/1946/351/10458/27286/4976/23237/5048/5728/375790/387/23613/2693/1605/102/11141/25/51104/10152/9423/4038/2596/5800/9378/4916/10611/5913/81926/5649/22899/5789/7846/5802/26052/6405/79414/1639/22871/22859/55752/6622/1760/8321/7337/6453/4776/627/23767/115703/29882/7474/9231/2823/1942/5021/26037/23284/80823/65981/4208/26045/64284/7058/5764/7162/2045/6678/79953/8292/4915/2239/54674/576/347902
## GO:0016241 7345/8767/57103/3162/2597/664/11040/58528/1020/533/3091/525/60673/57602/55737/9114/836/11178/2081/8851/9554/528/23545/6009/10133/2773/5305/51606/8517/51100/51322/23256/79837/6885/5566/529/3565/9711/2475/64223/523/23367/526/4534/9559/5599/10542/9776/57154/28956/26073/527/64121/81876/8897/58533/10193/5290/6829/207/10558/5571/155066/823/10670/51382/826/7957/6048/9517/9821/9550/27429/29110/5049/5565/5868/4864/29082/23400/29978/8396/55763/90410/10013/3064/8992/9637/9927/5899/27131/56893/9531/22930/10392/26471/7405/23274/54832/8408/7249/10241/65018/535/534/51422/23411/5562/200576/5071/8649/154/11140/23265/5595/5768/9638/10206/7157/5563/55187/5564/665/3791/10325/8678/7248/4734/8100/79443/26353/1634/57535
## GO:0032271 6712/29767/3055/1236/3925/7111/11151/119/274/57180/3383/84722/4690/246/10095/10096/7454/4733/8440/5216/3071/22919/3059/6356/1496/7417/382/10097/2288/5058/8936/10092/2885/402/8851/10456/5217/822/7408/57175/10109/4133/3320/10094/6710/54942/2185/55607/79998/9873/10093/5962/5987/8976/157922/10178/2475/11344/9530/9113/1440/5063/6366/7429/5879/2017/9463/10787/1859/23191/55604/1739/55243/859/29766/10382/6188/4233/5581/10565/7114/6369/23332/51199/58497/10677/9026/6904/2039/387/4868/6708/25/6249/11078/23271/10152/55755/8195/4204/2059/6711/55435/65018/5580/2242/5756/4641/1639/51332/29108/10435/6622/23189/5921/118/4131/1027/29098/10142/11076/11075/6709/9353/2934/57731/2241/25999/89795/54551/4926/24139/585/85477/23116/10788/50853/80206/51466/25802/2006/27124/4137
## GO:0008344 2019/7345/7111/1812/7545/409/1476/8997/2395/2906/55636/2257/123803/3170/3398/1267/2043/2636/1813/372/6323/2902/28996/2668/51286/10269/3236/3766/1600/11315/4923/2741/1949/3235/27429/351/5090/4864/6623/1497/5048/9698/6900/2695/55074/80243/1815/4204/2059/5538/22876/7200/3218/53616/6622/5071/4985/23544/26058/7248/4929/57731/477/6387/10752/2743
## GO:1904019 6347/1869/6496/959/3162/637/3383/409/7128/6789/1788/7124/3569/6262/3135/3596/4192/356/958/5054/10640/26291/382/6788/5275/2243/1965/2266/5294/8837/677/5584/5335/3586/11126/3676/51129/3651/3565/2475/7015/10298/10891/4217/284/4760/3717/2244/4780/1285/6272/3856/2852/1870/5598/572/204851/889/7538/51588/79155/2624/659/25/5170/26471/7857/3714/2309/6431/6934/598/7057/7072/5925/11132/7010/28984/57124/3791/831/7466/8644/80781/79625/3875/7048/2934/9037/2621/6424/10266/2625
## GO:0015718 366/26279/8792/5320/10257/2058/9123/215/1244/6566/5467/4282/6850/5027/2180/348/28234/6555/2182/1374/10991/5321/8647/9390/1814/3933/9971/1109/55238/208/522/6579/30814/6539/1813/10599/10478/6256/2806/80763/3553/2168/6754/58526/5608/5020/1636/5465/1645/65010/28965/23539/4843/50487/6198/2170/9368/81579/207/846/634/186/6540/4923/1906/6529/320/6538/5565/1376/123/5319/7223/624/9194/8398/22925/8600/1815/1579/11000/788/31/6554/80765/51422/6567/10998/7057/8714/10499/5825/9611/4763/8660/5563/8648/2181/948/5025/11001/9900/64600/159963/5468/3952/5244/5205/32/54677/18/2167
## GO:2000058 55872/6790/5347/79016/7336/51377/7480/9978/7415/10755/1950/57805/10221/5371/10134/55212/2932/5716/26263/3326/5747/5886/6599/1050/8078/1459/6613/23640/2185/27185/9097/9683/9349/51322/7917/55743/3093/55294/2768/4193/51035/28996/9113/6386/4534/6201/57154/11146/64110/7471/11011/859/7341/207/22933/149628/4780/8312/65992/28951/11315/369/2931/9817/9709/7874/1263/23376/1453/6872/11236/29978/5663/55070/25898/5728/1855/4092/28952/3300/6449/1452/5601/56893/5887/6135/6880/863/3077/8554/10273/23274/1454/9529/8473/2729/9655/4130/5071/7337/2295/1601/23429/819/2272/29997/6469/90865/10769/5988/857/1191
## GO:0060071 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/5699/5714/5702/5708/5692/5704/5216/5683/1175/5694/5718/5682/5716/6422/5707/64750/5696/1857/8323/81839/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/998/50855/7476/5689/5720/5701/9491/57154/5879/1213/5711/5715/7471/9861/5705/23002/9968/161/4919/1855/5754/387/6259/163/25/7976/54903/2719/1856/9620/8321/1601/2535/22881/8322/1952/4920/7474/4300/51339/7481/2239/9863
## GO:0021766 2146/9928/7804/6715/4830/8941/1812/64211/55079/166614/4771/1020/8013/63827/5629/5901/4192/238/8891/2932/63974/836/7101/8851/1399/55236/3799/6722/6608/3065/4142/55558/3361/6343/2044/23035/79969/4760/1600/7080/27089/7531/493/1021/5048/8893/5728/1398/7515/9839/2258/8195/23135/5649/5802/9638/8648/5914/306/3736/2145/7248/3400/4747/585/7832/2737/1746/2018
## GO:0046189 1001/2643/4948/1644/1652/4644/23657/10755/55737/6531/2861/5409/1610/7299/434/1638/4157/5053/11315/186/6490/1497/3642/7306/9839/9464/7054/9693/6622/26060/51151/4435/7474/3067/1621/4929/7042/7220/7166/2625
## GO:0043525 4605/1020/468/7124/9131/356/7305/10018/997/835/1649/1728/836/1522/2896/8851/5309/581/5621/9040/4296/55294/4170/5063/3684/1386/6733/2898/2901/4835/3725/387/842/429/5300/26471/5913/2309/472/7020/3672/51024/6416/4763/9759/1499/7157/23621/4602/7042/2045/7021
## GO:0045453 952/8792/7037/3574/29887/54849/3549/5880/7128/1445/6850/4160/5027/3569/9545/1956/79705/5578/760/6714/796/3635/101/51208/2185/23154/5879/171392/9842/537/7189/1436/10312/81501/1200/3690/5741/8600/3375/154/4763/1499/5745/1901/2488/5166/50507/1513/53832/4982/9607/284266
## GO:0075733 3838/9688/9631/6396/23165/55706/23636/5901/79720/4927/79902/10762/8480/11097/9972/81929/89870/57122/7514/79023/9397/3837/9818/3839/684/7311/23511/3836/23633/6993/23279/89853/7175/2332/10332/51271/6233/7316/51160/23225/8021/53371/7314/4928/8086/7251/9883/30835/5903/348995/55746/55048
## GO:0003073 59272/133/1535/3291/551/1908/6518/153/5345/1814/40/1522/9283/134/27035/1813/7137/552/80763/1816/1585/5331/5155/1636/6869/148/65125/81285/22953/5144/186/2931/83988/4923/1906/2028/183/10159/387/659/5972/4846/4204/1579/5800/23576/1392/554/7026/1215/89797/2150/57835/1889/2702/2013/7168/2149/1907/1511/4311/585/2621/10391/5125/10631/2697/185/1359/367/66002/10699
## GO:0010517 6352/3702/5031/3208/8698/1956/9373/5724/728/2769/117/7294/9170/5997/2321/5335/27329/552/10316/3265/6401/148/378/27/5156/5330/183/5319/3491/3815/5741/25/636/400/5170/22925/2260/5538/4916/3356/5322/2263/6622/2776/627/5590/2261/1902/553/283/2247/2099/4908/5159/1909/4035/4915/185/3357
## GO:0046785 26271/3925/84722/4733/55835/22919/9793/10048/2288/5058/10426/402/8851/4133/7756/79998/55125/157922/59341/5879/79649/1859/10844/859/2801/10382/6188/4233/23332/51199/1453/58497/6904/25/6249/2258/23271/55755/4204/114791/27229/2242/1639/6622/50810/4131/1027/29098/10142/11076/23122/11075/25999/89795/4926/24139/23116/27124/4137
## GO:0006633 9415/6319/341/80142/2171/6916/11332/239/79152/3638/873/215/79071/4282/246/345/55301/3692/5743/4644/551/672/8560/64834/242/27349/51102/57761/51144/1544/201562/10062/241/51094/10728/2194/337/972/4706/552/3995/51085/3553/9444/58526/5730/9536/54995/1559/1565/5571/634/10613/5740/79602/1906/59344/5565/4048/51495/5319/2879/9926/2695/9524/7376/22937/23038/3990/240/31/26063/1576/11343/1571/23417/1558/51422/23411/5354/51141/9104/5742/55825/5562/5825/11160/55258/5563/5564/37/3248/1543/79966/2181/225/8644/27306/33/10464/6785/7923/11019/1907/1581/60481/5166/4023/2948/84869/7494/32/247/4056/54898/2053/9370
## GO:0061351 9833/259266/5080/9355/9928/79801/29127/2173/6663/8326/8624/6496/4067/9289/2253/64211/9048/4771/7422/23028/5629/3091/1000/81853/6376/4192/6240/1950/728/2047/80237/5455/7101/2637/1522/3398/9283/8323/22809/10763/5309/1813/6608/747/27185/7472/1627/58158/10653/51286/547/57096/7476/6660/63925/2889/50937/23654/7471/9181/2316/7040/7005/22933/58155/6895/2016/6692/4673/5454/116/6604/5048/10818/57165/90410/3642/387/2624/6259/7976/9839/5803/473/2258/429/2771/8650/6095/23595/2260/1495/2309/2263/2009/3611/55679/6532/4763/7424/1499/7157/3736/7474/54820/3400/2308/5108/55198/6469/7832/85458/5764/2737/2018/4036/1524
## GO:2000117 27074/4102/4318/2537/2810/8530/5447/409/939/7422/5329/1410/5743/551/25816/4504/10049/3428/1032/23204/6714/5272/6197/2876/8837/8740/55795/6195/64780/5062/1447/2168/4193/51176/10542/7429/79886/51499/55011/331/8996/207/960/5894/80196/9314/11315/54475/9709/7531/1654/22900/135/10935/27018/55031/5896/1800/5607/5076/7057/6622/1718/408/3476/4057/3082/831/6478/4804/4803/358/4671/2621/7021
## GO:0007589 1448/362/4830/1535/5471/353/3783/4939/100/7422/8997/2692/9474/3091/3099/5469/7372/7498/790/9148/242/1056/6531/4883/134/462/10062/1723/1314/4580/5617/2806/1447/7421/1131/6343/6869/8673/27023/65125/51043/5581/302/1906/2979/7392/9612/7432/2981/1385/4986/5066/538/4879/6777/4762/57835/6582/8648/27347/6776/6779/4881/595/5021/540/5029/6583/54843/358/8835/5618/7494/857/2697/6863/1036/7349/79864/2066/10551
## GO:0097711 4751/983/5347/10733/54801/7277/203068/7283/10383/55835/22919/9793/55722/79959/55559/4957/9702/4867/3320/9657/23354/55125/80776/5566/23322/79598/79867/1069/8766/10121/8636/5518/9662/8655/11258/11190/11116/57787/10382/22994/22897/51134/23332/7531/5116/1453/26005/261734/5048/79441/1778/80321/10540/22995/27077/55755/11064/22981/26123/1454/7846/54903/8481/79600/1639/146057/54806/80254/95681/9738/55142/80184/7840/1781/10142/9814/54820/5108/347240/22832/5577
## GO:0006900 1075/3638/6396/5027/7039/2153/10113/9217/10959/51693/54732/1522/56681/27095/5265/10342/10802/83696/1173/9554/27183/64083/2348/5584/8615/8976/5861/23256/5537/90411/4905/59349/8724/3998/10175/7879/51128/81876/55291/10972/22870/6811/8301/2801/553115/9871/9570/302/6281/7109/1453/8775/29082/54874/11196/22872/10282/9218/374/9632/8729/966/10427/79090/8546/6399/6517/2157/9919/2890/5071/10484/64689/23243/8452/375056/10016/1294
## GO:0090277 10874/952/114/5208/6659/5467/2692/3091/1956/3814/1080/25874/7036/8431/9971/8447/5019/65985/2243/51768/2266/1813/3799/9255/65220/7447/3651/2645/2850/5879/4825/5715/3630/3717/846/5581/2244/51762/23435/51714/640/2852/572/27230/2822/116/2695/8398/8600/3670/3077/2696/6810/6934/1392/5532/6453/408/8660/11132/2752/2746/9501/6717/9854/54795/23410/5950/2691/8938/4035/55638/2697/55107/7349/18/25924/2922
## GO:0016042 1381/57110/7941/2173/26279/23007/5320/6715/313/80339/5194/9388/336/51302/341/5336/1594/2171/57016/8877/1019/10449/6783/27293/6696/23175/4759/215/55289/2172/5467/7124/54363/345/8513/2108/79887/5406/4504/1588/57733/9588/1374/26291/3417/27349/1666/1056/51102/7533/79644/51365/51196/1593/2760/84830/1544/134/208/10005/5050/3949/949/5096/30814/4668/5660/3033/5264/5294/10825/747/7067/6822/5335/1591/27329/337/1892/6718/10478/4051/23646/51171/3553/2168/5140/2475/5331/1545/9784/6610/5465/27163/5332/23659/5337/7879/51/50487/6343/2170/2109/3630/23600/54979/81579/51099/5828/207/10908/22933/8879/5581/3988/1208/1962/60526/8578/2639/1891/8074/5408/5330/5049/51179/1376/2822/412/283927/5319/13/5048/63874/3074/4594/1632/3032/79718/8398/34/5338/7291/5051/1579/9651/3030/3712/4258/57406/6342/338/5538/3990/8630/22876/26063/1576/11343/56603/23417/5168/1268/55512/5322/5580/23236/2110/51573/10858/5333/6609/64784/55825/5562/57104/30/5825/2581/11145/1373/35/8660/23259/37/224/2717/79153/5920/5191/427/11057/225/8644/2169/2517/5095/51170/80724/11001/33/8605/5919/64600/1581/1384/2166/8310/56898/4023/1592/3952/1149/3295/10455/3991/4035/32/8309/8228/3667/66002/54677/150/9370/2167/5346
## GO:0033673 5347/7453/7345/6317/1029/4067/23603/2950/11314/2810/1031/5788/22843/1852/4771/7128/1445/26191/4690/1030/23636/2048/348/54920/3301/54900/5795/26973/9021/655/10221/5771/64793/8651/9535/1032/152559/6422/78986/1849/63904/5575/2646/57761/3170/836/4869/1050/11072/1026/25793/5997/2873/11221/7023/4221/11329/5770/5987/3553/5062/5611/2041/55924/9711/51654/3843/9113/5777/9555/7016/51637/2660/10408/10114/5518/10527/4298/171392/4616/3192/58533/11116/4040/859/11261/65125/1845/207/103/634/3156/197/28951/5999/11315/2764/10019/6895/5998/4041/5585/7251/64853/84619/51562/5525/135/64754/5663/104/56940/5728/1855/51347/10935/5515/8692/1647/25/10519/25937/5576/5170/23624/9270/79643/8850/51763/25998/5573/1850/10636/54922/5859/7249/5569/9647/5580/79893/51422/23411/7026/6609/9104/29108/399/9655/6879/3611/7070/64798/5071/1353/200734/2874/3315/5925/113791/2776/4763/8660/1027/1028/54997/1843/324/55450/80279/3087/57493/10641/5753/1848/9961/10614/5577/6653/9052/3480/11213/857/1846/9370/2167/652/4137/11122
## GO:0071634 1001/55353/6375/3696/3965/8710/5743/3091/6376/100133941/3596/7305/4052/5345/3326/3694/5045/2627/1386/50943/4089/10159/23607/1385/7057/4345/4088/4602/947/3685/4179/7042/4060/7481/2615
## GO:0033260 81620/5888/2237/54962/5984/5111/51053/1763/8317/5427/23649/5982/5557/79915/7884/5558/5424/11200/5983/5425/54107/6119/675/5985/10714/6117/5426/58525/51507/7014/6118/5976/10269/5422/51750/80174/7013/57379/2260/5981/546/604/57804/1602
## GO:1903364 6790/5347/1075/7336/7128/5702/9978/348/11124/7415/5704/4478/55741/1950/10221/9532/10134/55212/55737/2932/5716/8975/26263/5747/5886/1050/8078/3949/5700/3320/6613/23640/2185/27185/5706/5962/7917/55743/55294/4193/4287/2332/5701/57154/975/64110/859/754/7341/207/5705/22933/149628/4780/8312/65992/28951/114881/2931/9817/9709/1263/1453/6872/11236/7430/29978/5663/55070/93974/25898/5728/1855/51136/4092/28952/3300/55823/6449/1452/5601/863/26471/8554/10273/1454/9992/9695/2729/9104/9655/5071/1601/54209/9810/26234/29997/79589/51339/90865/10769/5988/857/4035/1191/4036
## GO:0006661 5336/55697/9600/8813/8898/3631/8733/6305/54545/377/3635/2358/3636/8776/23533/84720/5291/5294/5277/8394/116986/660/5293/5305/8395/83394/8818/79837/3358/64419/5155/4534/9108/9110/55361/8503/8897/4952/5296/5290/3612/54344/51552/8867/9107/27315/8871/5868/5298/5297/5154/5289/9487/8396/51227/1040/51604/5728/10026/80055/5288/59338/59339/56623/26751/30849/5281/51763/9896/3356/22876/57664/472/5287/80235/9091/10423/5286/80230/200576/54872/5295/23396/9488/55650/65258/23556/5283/22908/66036/2247/5783/8821/3357/27124
## GO:0014033 4902/6664/23603/2296/8092/3091/9221/655/1908/5594/6949/6422/2637/8828/202018/10371/6608/1072/2348/2303/2668/59349/1947/6899/4040/3084/553115/657/1906/3911/4089/65979/5979/5308/2335/9839/9464/7291/3670/8854/6662/1910/6405/3280/90/8929/5595/182/10016/4208/8829/6591/6469/58495/83989/4254/10512/1909/2487/3357/652/2066
## GO:0002224 6280/6279/51311/79931/8767/91543/330/3654/4067/1535/1520/9258/5641/11314/3329/23547/3689/7096/1514/27293/3659/3929/409/7128/81622/929/26191/7097/8772/4792/7321/57162/9641/1147/6441/57402/10333/7184/2672/10010/9971/1508/3662/4615/6197/695/2243/9261/10062/2266/7311/23643/23151/3665/8517/7099/7301/6271/3146/6885/54726/841/7323/6233/4795/7316/10454/329/3684/8915/7314/3661/64922/5581/2244/58509/7189/7187/7867/10695/29110/57142/148022/5289/7322/23180/9684/79155/23118/55366/10318/5170/51284/30849/51135/11027/7100/23098/7098/8737/338/9865/5802/2150/26060/2874/10211/4057/22841/948/9867/55198/4214/1513/2099/11213/857/81035/3551
## GO:0006027 10855/3161/8372/1464/1463/10675/63827/57214/2588/411/176/60495/4669/57115/2720/23553/8993/11261/7040/960/10894/3074/6382/375790/9672/8692/2990/3423/2799/6383/3425/2719/2262/23670/6385/138050/55576/6548/3373/3073/2517/2817/4060/5549/2247/6448/3339/1462/633/2239/2331/1634/11081/4958/4969
## GO:0006521 5688/5709/5698/5693/5713/4953/5721/5691/5685/5690/5684/5686/5695/10213/23198/5699/5714/5702/1312/5708/5692/5704/23657/5683/5694/5718/5682/5716/5707/1728/9971/5696/51582/5719/5700/5717/10197/5706/5710/4946/5689/5720/5701/9491/5711/5715/3630/9861/5705/11315/493/4947/635/23409/51686
## GO:0032835 8842/6943/28999/2296/8710/7490/100133941/655/1286/3570/3975/4643/51196/9788/8837/10409/2303/2302/5155/4854/284/5156/8826/1285/186/23213/4358/2028/26508/5979/285/4868/55366/25937/5420/5800/7827/59/5076/2828/3280/5175/7010/4811/182/1958/596/947/4208/5159/3913/9863/80310/9370/652
## GO:0030705 9493/24137/7345/4651/84790/203068/80128/10376/117178/3091/4644/10125/22820/3797/80179/79989/8936/6845/5870/4133/3799/10128/25777/7275/1780/6647/55201/8976/5861/6683/9001/7014/998/547/1740/83658/8943/51098/8636/81565/667/8409/11020/57576/8655/10749/3192/3798/3916/7314/2319/23224/6687/1176/26146/23162/22994/23299/22920/6421/81/320/351/51668/23095/23011/55764/4976/54874/2647/80173/5048/90410/8120/55081/22858/3064/55207/5195/23353/28981/636/23059/11127/1201/9531/3842/6103/55288/8546/9321/7846/4641/403/89941/4130/3315/10947/9638/9371/4131/56912/63971/5813/5590/66008/55686/64792/8100/51626/4747/4744/5108/9742/5874/80208/57728/79659/79443/55112/3800/55638/4137/25893
## GO:0072395 79733/983/1111/51514/6790/891/6664/5347/51512/5111/1869/2810/995/11200/7027/3276/6659/672/1820/988/23019/5591/835/5371/60561/2765/29086/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/27339/79184/51499/51343/4848/2033/55367/11277/1263/8738/9577/4850/57472/8555/9337/5934/51720/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:1903320 991/11065/27338/4085/55765/5347/55215/9636/23560/6502/8767/26271/330/79139/8877/575/706/10059/409/80758/7128/9111/1020/6659/26191/23028/9474/83737/3301/85453/7415/672/9373/2280/7321/57162/5582/10625/9532/7334/3984/5716/55611/3326/7332/10010/57761/201254/7965/54472/64127/8291/3309/10196/26272/11170/3320/5970/80149/23640/10892/9683/9349/2534/55743/5861/11338/55294/51035/22976/2475/26232/54726/59343/10075/54165/54552/6201/51160/9733/6187/329/1616/11146/10362/331/8915/51343/284/11261/754/7314/7046/2801/207/6188/553115/7329/5581/23251/8312/11315/10116/54765/2931/7189/9320/9709/6737/23376/405/6872/148022/57599/8841/5663/25898/8555/5728/4092/79594/51588/10363/3300/5414/64844/10210/10318/25/51438/51366/5601/5300/6135/25950/9646/8554/10273/9112/9529/8473/1025/65018/7375/554/23077/2729/5071/54778/2874/1407/154/23328/10401/7337/9759/1499/2295/408/825/64689/8452/1958/819/7466/6478/80762/9810/80279/10016/29997/8864/857
## GO:0032963 4312/4321/4318/4316/5645/4324/1520/5653/3066/1514/3549/409/8751/8710/5467/2805/1509/5027/3569/3091/4880/265/1305/5345/5184/9313/1508/5657/871/5045/4261/26276/51430/2147/7040/3688/9508/383/5906/4323/55323/63894/9697/57333/7431/64175/1310/3673/7148/4320/2022/55512/55214/4317/9509/9902/28984/4602/90993/2149/1490/1306/4314/10609/3397/4322/1278/1277/164656/5468/4319/1513/4313/10536/2191/5159/1471/11117/1289/57332/54361/7043/7349/23371/652/4239
## GO:0048762 2146/4902/6664/6772/6317/6943/23603/2296/8092/3066/2253/3182/8751/3569/3091/4192/9221/655/1908/11171/10736/5594/2651/6949/265/8091/2932/80237/6422/3170/2637/8828/202018/10371/6608/1072/10155/25805/2348/51094/3553/7074/2303/7472/6910/4851/51176/2668/2475/59349/51384/6386/6615/1947/6275/6899/653/26585/3037/3516/4040/7046/7040/3084/553115/657/1655/9820/7080/23187/1906/10630/3911/23332/4089/4087/65979/57142/26508/5979/23275/5728/4092/10439/650/5308/5515/1605/25937/2335/9839/9464/7291/3670/80199/8854/55223/2260/6662/2022/57669/5076/1910/6405/64081/3280/2263/90/8929/5595/1499/2295/1601/10521/23493/4088/4017/28984/3082/182/7474/9231/596/1942/10016/23462/10252/7042/23122/4208/8829/7048/753/2042/1277/6591/6469/58495/55273/83989/4488/4254/7481/10512/1909/7041/4487/3249/54361/2487/7043/3357/7049/652/2066/3169
## GO:0032760 5004/914/8767/1535/64135/3066/5788/7096/2207/23586/3929/1652/3965/929/4282/7097/8772/64170/1536/5795/10125/7305/5724/54440/3593/729230/6693/64127/7855/9261/6363/23643/1660/566/7099/943/5781/3133/177/9181/353514/3717/10564/5196/351/148022/51561/83786/7291/3670/11027/7098/10392/8737/4317/29108/7057/3315/4776/57506/5295/7474/948/4023/3952/1191/9590/26137
## GO:1905954 8792/9388/51083/29923/6696/4282/5027/348/10938/1588/4792/9641/5360/5444/6721/949/80149/10062/4481/114885/5727/3553/6754/654/5608/26154/5020/335/2170/51499/19/302/114897/4923/1906/4790/9227/718/2587/8398/22925/8600/7376/10347/9619/1579/7110/6342/338/4824/56729/10396/1392/5580/23411/26119/51761/2874/4602/948/5025/4023/1149/5244/4035/32/6863/9370
## GO:0007043 7368/1894/59272/51599/6624/865/9076/7124/1365/5578/79977/92140/50848/9971/56288/23114/402/7414/4867/7855/6722/5584/11187/5566/9948/50855/1636/6615/928/59341/1739/79983/1969/5318/3982/79778/81/5586/84612/10015/8443/64398/6093/183/261734/7094/6904/6801/2705/9475/387/3728/1828/10052/4301/5583/5872/5800/287/1495/8502/4641/7082/8506/2702/23136/83660/51564/9231/100506658/324/2701/57493/201163/1003/6591/7481/857/10207/3551/2697/7122/10266
## GO:0010522 3627/6373/4283/5026/4067/1535/11151/5031/1812/578/5024/6375/55151/930/9474/5027/6262/4644/57214/6376/3596/2280/55636/5371/117/9002/9446/920/1729/623/2056/581/4842/5621/2185/5335/9472/2534/2902/9001/5566/1756/5777/7222/57158/1193/22953/5144/2147/7040/5581/4923/2852/57338/7009/5319/3064/10345/799/25/5170/287/6546/6622/7070/825/10268/845/596/2149/5025/844/187/5311/3270/6717/2281/7220/2946/477/857/775/5350
## GO:0042136 445/2643/60482/3458/51733/3689/3383/706/5806/1644/7124/5743/140885/1785/10333/54/3326/384/1728/6531/2644/6507/10394/3320/80149/199/4842/747/2185/3586/43/189/7099/3553/2475/1545/4843/5879/2572/207/3717/9314/5053/8570/5740/186/961/1906/148022/493/183/9475/4846/6095/6697/9722/23576/223/7054/9104/4317/1806/6532/23564/6582/4088/10365/2571/2717/3643/3043/947/3067/948/5025/5311/857/6542/1191/7166/18/80736/1524
## GO:0031341 3902/5551/10859/3575/3458/26228/3853/2597/5788/259197/3383/4068/6375/8807/409/3965/6318/5027/56253/2208/8772/5817/2213/10125/3135/164/3596/7305/1773/9437/10018/3134/3593/3592/51571/3805/3326/5272/6372/10666/57115/11126/7409/1604/3565/3133/8993/4843/3684/177/567/3916/922/634/59067/383/8417/572/1776/3594/1398/51561/23705/966/5819/6777/5532/2150/100507436/3952/3075
## GO:0045921 23413/136/8941/3458/8372/3689/2207/10059/1020/9545/164/3596/1080/5724/3134/9367/4878/8447/6845/8027/2243/2266/27183/3745/192683/5873/11267/7447/6386/7879/8723/6804/3684/8673/3916/9146/376267/2244/23086/537/9525/23332/7251/10015/5868/23400/3566/6382/2624/8398/5864/6810/1268/55512/2268/783/22871/2150/6622/6385/56848/9846/27243/10497/23122/57126/6812/5874/93664/6857/776
## GO:0031109 220134/81930/146909/11004/26271/3925/84722/1410/4733/55835/22919/9793/26586/10048/2288/5058/10426/402/3796/8851/4133/10300/7756/4281/79929/79998/55125/6683/157922/58526/59341/5879/79649/1859/10844/9181/859/2801/10382/6188/4233/23332/51199/1453/58497/6904/10013/25/6249/10519/2258/23271/55755/4204/114791/27229/2242/1639/6622/50810/146057/4131/25876/1027/29098/324/10142/11076/23122/11075/25999/89795/347240/4926/24139/23116/89927/57551/27124/4137
## GO:0045778 6664/9636/8326/26271/1051/2824/7480/5027/3569/655/4880/3570/54857/2778/1050/7477/1192/93/654/5020/2201/6869/51374/5587/51430/7040/4745/3727/537/23051/657/1052/4041/2658/92/3491/10766/650/5741/659/9260/56998/8519/4090/6546/7020/90/8626/3611/25836/154/4086/1499/4921/4088/490/4057/860/3082/182/7474/8840/7042/84059/4208/3400/9365/4488/5764/116039/7704/658/54361/2737/2697/7043/6863/3572/3479/652
## GO:0048839 890/4171/713/7399/54845/5459/8820/8557/2253/1749/3208/7545/8549/4647/3638/10541/2138/2254/2558/9474/8013/474/2048/613/5629/3776/525/3777/55636/23513/5456/53904/79955/2637/1050/8323/4669/2562/5660/9261/2561/6647/5781/50508/793/23322/6657/6495/11020/57053/3198/6899/9368/7471/55283/3516/26281/4760/7040/51168/10083/1052/8022/4358/7849/55584/4919/2103/4976/5048/1855/90410/5754/4094/9132/9750/650/4610/2624/2736/7976/11078/9423/9935/1687/10427/2260/220/4916/6662/25861/1750/3714/5076/9321/4762/54903/51141/8516/1856/3280/2263/7020/9620/9890/51761/6385/8929/3784/54806/2535/2299/23493/26020/29/10253/1301/80184/1027/182/4920/7474/5816/1280/7042/84059/8825/55084/5396/8642/6469/54360/79633/26018/5159/5205/6678/3249/2737/2487/7043/6935/652/80736/9547/2625
## GO:0051208 3627/6373/4283/3932/1236/4067/1535/5336/11151/5031/30001/1812/5788/1234/6375/8989/55151/930/9474/5027/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/811/1649/7184/9002/9446/1729/623/6363/581/1813/4842/3954/10523/2185/5335/9472/22821/57192/9001/5566/1756/3358/5777/6366/55283/8996/57158/1193/5144/2147/7040/5581/4923/2852/57338/3064/10345/79085/25/5170/287/25998/3356/3709/6546/6622/7070/825/845/2149/80024/844/187/540/5311/3270/6717/53373/2247/2281/7220/2946/477/775/5350/3357/3708
## GO:0033138 8767/3458/7295/409/7422/6789/8115/4282/7124/3569/2641/5743/551/1956/1981/3059/3589/3326/9125/5058/10456/5217/5008/3320/79109/4842/673/10178/9530/9113/11235/1440/2074/5587/284/5290/207/7040/960/8536/5894/8312/11315/369/54386/351/29110/493/5979/64754/25865/10013/799/3976/9623/4916/65018/3456/6622/4985/408/10268/10253/7474/596/10142/1389/65981/10411/2621/4908/857/4915/7349
## GO:0006911 8685/51411/11314/26228/3689/2207/575/246/9938/2213/23616/3071/4240/6845/199/4481/4627/9844/998/3684/19/55113/718/2624/3673/10347/7057/2150/94134/2209/948/54209/51454/8678/1793/2934/5468/55198/11031
## GO:0045773 3897/7422/3984/51393/6792/5058/7224/1954/1002/6722/27185/51330/11344/8766/1826/9175/81565/23191/23394/2664/5048/8482/5458/659/2335/9423/57698/4916/23499/3611/4131/29882/22902/2803/8829/9037/6387/4035/4137
## GO:0050434 5435/5440/23076/51497/5433/6882/6597/5437/904/5439/5431/5436/1660/7023/2959/51176/5438/5432/51193/6827/6598/2963/6829/9150/22938/2033/64710/5434/25920/51773/3725/29969/5430/1025/6667/1105/5441/2962/3249
## GO:0045216 7368/1894/59272/51599/6624/4771/865/9076/7124/1525/1365/5578/79977/92140/9074/50848/9971/56288/23114/9080/402/7414/4867/7855/6722/5657/5584/5818/11187/5566/9948/50855/1636/6615/928/3801/59341/1739/79983/1969/7046/5318/7040/1829/3982/79778/81/1436/5586/84612/10015/8443/64398/6093/183/261734/7094/54549/6904/6801/2705/9475/387/3728/1828/10052/4301/5583/5872/5800/287/1832/25861/1495/8502/4641/7082/2150/8506/55679/2702/23136/83660/4088/51564/9231/2149/100506658/324/2701/7042/57493/57126/201163/1003/6591/7481/857/10207/3551/2697/7043/7122/10266/57502
## GO:0071333 6770/4830/2730/114/56943/1535/3383/5127/6659/2692/5165/3091/1080/25874/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/65985/7351/3799/6722/3745/4221/65220/51085/5798/1361/7074/7447/3651/5566/3956/2850/5879/10891/2044/177/55011/9324/2021/6598/5290/4760/846/5581/5894/3156/5906/51714/1946/2852/2901/9230/4976/572/79727/2822/9448/8398/4986/6810/7776/2309/26056/5076/1392/7054/1215/2729/51024/5532/5562/51092/5530/8609/408/10497/8660/5563/22841/9024/5799/6717/9854/5176/1581/54795/2281/50507/7494/2621/8938/4035/55638/55107/26137/150/5105
## GO:0046717 10874/366/26279/8792/5320/8564/29887/10257/6510/1244/4282/6850/8500/5027/1133/551/10755/887/6446/885/5321/1814/134/6507/522/30814/1813/8541/3274/8497/189/552/3553/2744/6754/5608/5020/1636/65010/2917/4843/50487/6804/6512/6616/6511/9368/81579/846/2912/186/57030/4923/4889/1906/6529/320/54407/22999/135/5319/9026/6506/7223/624/4987/8398/22925/8600/8499/1815/1579/22930/5864/8714/6622/3784/4763/10497/9256/5025/5021/6844/9900/27165/64600/6812/3952/5244/4915/6857/7349/6505/18
## GO:0032102 55872/10563/7850/2173/56833/3559/6347/11240/2950/9258/2841/26228/7103/1812/1991/8530/5788/239/2840/100/27293/7473/6696/7353/1652/7128/215/4210/7143/4282/79132/5329/10875/83737/613/5692/348/63906/2213/11202/6376/9021/2160/4192/7133/1588/5054/10221/4277/5771/1496/3593/140885/3558/5682/55737/6397/885/113/5345/54/1814/708/384/2161/6091/6531/2896/6223/2895/84830/2358/1026/134/64771/2043/5340/57175/2243/2876/3949/8573/80149/3848/5328/10062/58529/2266/199/1813/5734/55666/2113/325/7448/11221/3586/2811/6647/4598/80763/1361/2902/1269/7301/5055/4851/3565/335/5155/5465/55558/928/8993/784/4795/3273/7001/58189/177/3630/9860/26585/1845/60343/2147/22933/79004/634/7132/50943/2244/9314/5495/3156/27202/5740/5156/5270/114548/10019/6895/26146/58509/83481/114897/29937/57680/4889/55870/1906/23332/2852/4790/5169/10475/22900/5154/81858/135/5598/116/5728/1855/285/55966/79594/1398/8780/2693/6259/3818/4907/7105/8620/2294/64838/79671/4846/3670/11027/8195/6095/7035/5094/5800/9378/59307/22876/3827/5580/5802/29108/7057/9655/4345/7130/350/2874/710/9975/5925/25959/29956/26007/4088/4057/7010/23621/3082/29/1027/56547/7474/4925/5624/947/225/1843/5592/54941/11005/23122/9353/8829/5176/1003/5627/727/2247/6591/5468/55198/4681/10203/7056/23005/9037/3952/585/4856/2191/90355/54361/5654/347/2697/5327/7349/9607/3479/114899/18/9370/79148/2625
## GO:0050803 991/7804/5100/8326/78999/9758/10288/10507/7336/575/203068/22943/10059/7534/8997/1020/9456/7124/7097/2048/348/1000/7415/2213/23657/3556/11202/1981/91752/3587/2047/23769/1496/55737/9148/1432/6792/2049/382/4914/10097/5747/54583/1141/40/2895/8851/8828/1399/2043/58504/26050/1813/9762/4761/1072/5621/55607/9419/27185/3586/4593/5818/4076/2534/26280/7074/2902/2119/54413/1627/5020/7476/869/2904/23316/5063/6495/25978/1607/1006/3706/3630/54434/23191/9746/57408/4897/23394/378/8536/577/22865/22883/64218/79012/816/1946/351/10458/27286/4976/23237/5048/5728/375790/387/23613/2693/1605/102/11141/25/51104/10152/9423/4038/2596/5800/9378/5538/4916/10611/5913/81926/5649/22899/5789/7846/5802/26052/6405/79414/1639/22871/22859/55752/6622/1760/8321/7337/6453/4776/627/23767/115703/29882/7474/9231/2823/1942/5021/26037/23284/80823/65981/4208/26045/64284/7058/5764/7162/2045/6678/79953/8292/4915/2239/55638/54674/576/347902
## GO:0048146 890/891/990/4609/1869/8877/1019/4282/1956/3596/5591/5371/6277/2069/1026/685/1660/972/7472/5155/51548/7471/7040/5156/79621/2355/3981/5154/1021/183/5319/3725/23063/2335/57178/4724/4921/4602/7474/80169/358/56034/2621/2099/5159/3479/80310
## GO:0008360 6347/11135/1690/3055/4651/6354/11151/10507/3689/3383/6285/7422/221061/6357/29780/51177/2011/2245/23580/4478/55660/6356/7940/55171/5747/1729/4289/2035/25805/2185/226/4627/5962/752/2534/2768/9948/7429/79784/5028/55843/10269/23654/9368/23191/1739/23370/2147/6284/10810/2038/56882/310/301/6369/55785/64218/8994/10630/1436/1613/10428/10458/221472/7430/10672/3074/2039/1398/6708/3815/1605/57194/2335/989/116985/2059/755/54873/2909/10395/9344/2242/2268/10435/5921/23136/3791/54014/7168/4628/10979/23268/1902/2620/5064/55742/5764/5364/3249/3679/9723
## GO:0014075 983/445/4830/3066/1812/3383/3251/6001/9734/790/1814/1787/5997/1813/6647/7390/2902/1269/41/1816/3746/5020/5153/3747/5999/383/11093/2903/135/8787/5903/2731/3673/1815/7054/5530/1373/1621/5021/4929/26575/3176/6571
## GO:0031648 5347/440193/79139/5591/79577/55737/79763/1512/6714/5886/26272/5621/55743/55294/4193/27042/59343/51548/23163/6477/5828/2033/149628/6048/6737/11236/79594/3064/650/23291/64321/23411/6622/5071/29116/8945/825/1387/8452/79831/3397/2934/7494
## GO:0060711 133/79805/2709/50814/6768/5604/9021/655/5594/10049/79977/10959/54583/2885/7855/677/7477/9394/3586/7472/10653/841/1046/59343/653/3516/207/3726/1045/6692/3491/8521/79893/5333/3280/2263/23493/22846/8648/4435/23462/51294/58495
## GO:0061614 8061/5467/4781/3091/688/7490/6597/11006/4775/6721/6688/5970/2113/6722/3586/5617/4091/5155/5465/7015/7040/9314/657/1655/4089/7528/6774/3725/650/2624/6662/7003/4086/9759/7157/4776/2908/4088/4804/7042/2353/5468/652
## GO:1990089 1869/85377/11151/867/9775/10938/988/6132/382/4914/8936/3309/10094/3746/6456/2889/3747/11021/207/5906/6272/1783/351/23527/23095/5728/1398/1938/10519/1385/5170/2648/57498/2309/9101/9693/7337/3397/11075/5764/6863/9863/4137
## GO:0090175 5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/409/23198/1951/5699/5714/5702/5708/5692/5704/5216/5683/1175/5694/5718/5682/5716/6422/5707/64750/5696/1857/8323/81839/1173/5719/7855/5700/5717/10197/8324/5706/5710/7074/998/50855/7476/5689/5720/5701/9491/57154/5879/1213/5711/5715/7471/9861/5705/23002/9968/161/4919/1855/5754/387/6259/163/25/7976/10427/54903/2719/1856/9620/8321/1601/2535/22881/8322/1952/4920/7474/4300/51339/7481/2239/9863
## GO:0002701 10859/336/3162/10225/30009/6375/7124/2213/5591/3134/684/3586/3718/3598/335/284/7040/79004/50943/383/7009/4092/933/9984/3440/3077/3456/604/11005/7042/10039/90865/11213/7043
## GO:0042092 3620/91543/942/9466/30009/6375/3569/729230/384/64127/3606/7292/3586/972/3565/975/3142/602/383/114548/301/3566/1893/3440/10538/3456/9655/163486/6778/5914/604/5590/90865/2625
## GO:0001678 6770/4830/2730/114/56943/28999/1535/3383/5127/6659/2692/5165/3091/1080/3607/25874/26291/2626/6597/3170/9971/5428/2081/56652/6434/5019/65985/7351/3799/6722/3745/4221/65220/51085/5798/1361/7074/7447/3651/5566/3956/2850/5879/10891/2044/177/55011/9324/2021/6598/5296/5290/4760/846/5581/5894/3156/64710/5906/51714/1946/2852/2901/9230/4976/572/79727/2822/9448/8398/4986/6814/6810/7776/2309/26056/5076/1392/23411/7054/1215/2729/51024/5532/5562/51092/5530/8609/408/10497/8660/5563/5295/22841/9024/4804/5799/6717/2308/9854/5176/1581/54795/2281/50507/7494/2621/8938/4035/55638/55107/26137/9607/150/5105
## GO:0006939 10874/952/136/6870/1812/8877/5024/100/5743/1908/5724/1143/5910/151/51196/1141/152/134/5997/1813/6722/7137/6647/80005/80763/10316/2668/5020/9312/6865/1131/80852/3352/2017/6869/1739/148/22953/5144/23213/1906/2852/1613/493/6093/183/5023/1136/9475/6525/387/2693/624/3815/8398/3673/8195/6915/84193/59/3356/4638/4762/2982/1910/6546/3363/5286/9732/490/6752/5592/2149/4887/5021/1907/2281/10203/3778/477/857/1909/1264/3357/150/18/4629/1311
## GO:0002768 50852/2633/28823/28424/952/1493/3932/94025/3126/3537/8767/2533/5688/3055/917/5709/28639/1236/10859/5698/727897/919/4651/915/28778/4067/5693/5713/27242/5336/9473/3702/11314/5721/28755/5691/26228/2867/30968/3514/10288/3783/5685/23547/5788/5359/916/259197/5690/5684/3937/5686/2207/5695/2210/100/10213/2219/23198/5588/1445/865/5699/930/5714/26191/4690/6850/10095/5702/8013/10096/5708/1378/7454/5692/9404/64170/3119/5704/5142/2213/5971/54900/5795/3071/79037/3135/100133941/1380/5683/7525/958/728/9402/5594/6654/4277/5694/5771/54542/8891/5567/4585/4893/8454/7334/1147/5718/3984/5682/5716/719/931/8934/11006/7294/4775/5707/10552/3326/7006/10097/5568/3500/5747/3122/973/5058/6714/10006/5534/10092/5696/5579/2885/2212/4332/920/3635/2358/695/4586/1399/27040/3385/5719/10109/5700/3320/5970/80149/581/10094/5717/10666/50856/10892/5291/7410/10197/5621/5335/10385/5079/11126/5602/5293/7535/7409/10093/5284/5706/8517/63916/9844/7917/8976/2534/5710/5062/4584/7456/60/6885/5566/998/10462/3384/3265/5777/4772/5689/4583/5063/5720/11119/5599/3845/9840/3113/784/2889/5701/9491/10454/5879/975/1540/5711/5715/10787/1967/23191/8915/5296/5290/9861/65125/8890/5144/1845/2033/5705/6188/634/5581/50943/5894/51324/778/5609/27202/23228/5906/3115/7189/961/71/640/8892/4790/26253/5074/10458/7430/5663/2822/10163/23180/56940/3725/10616/8893/25865/30835/3120/56667/59338/7462/1398/933/149041/23118/147179/3815/8398/25/5583/5170/3958/5338/11027/5601/51517/5819/23291/6464/5580/2268/4641/5532/7070/26060/2874/9846/1998/5530/5595/6416/1997/8945/2209/57876/8631/163486/6500/5295/6794/1387/596/9252/26999/1793/2206/4208/4589/2353/2241/4588/55198/4214/3551/2205/4582/10451/3117/2625
## GO:0021536 5080/5307/6496/6715/5449/8820/2253/9095/5457/999/2692/26047/1141/2637/6531/8828/30062/10215/10371/581/1813/2113/6608/190/9001/3746/6657/3747/27023/7471/3516/5626/7314/657/8022/7080/27089/5454/116/6658/650/5308/2624/2736/9839/1385/3670/22930/8854/1392/3280/8648/2735/6299/7474/4929/8829/6469/2691/9037/5764/4487/54361/652
## GO:0044766 3838/9688/9631/3434/6396/23165/55706/23636/5901/79720/4927/79902/10762/8480/11097/9972/8934/81929/89870/57122/8563/7514/79023/9397/3837/9818/3839/684/7311/23511/3836/23633/6993/23279/89853/57187/7175/2332/10332/51271/6233/7316/51160/7879/23225/8021/53371/7314/4928/80145/79228/8086/7251/9883/30835/5903/348995/858/9984/55746/55048/2060/10966/857
## GO:0072401 79733/983/1111/51514/6790/891/5347/51512/5111/1869/2810/995/11200/7027/3276/6659/672/1820/988/23019/5591/835/5371/60561/2765/29086/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/27339/79184/51499/51343/4848/2033/55367/11277/1263/8738/9577/4850/57472/8555/9337/5934/51720/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:0072422 79733/983/1111/51514/6790/891/5347/51512/5111/1869/2810/995/11200/7027/3276/6659/672/1820/988/23019/5591/835/5371/60561/2765/29086/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/27339/79184/51499/51343/4848/2033/55367/11277/1263/8738/9577/4850/57472/8555/9337/5934/51720/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:1902579 3838/9688/9631/3434/6396/23165/55706/23636/5901/79720/4927/79902/10762/8480/11097/9972/8934/81929/89870/57122/8563/7514/79023/9397/3837/9818/3839/684/7311/23511/3836/23633/6993/23279/89853/57187/7175/2332/10332/51271/6233/7316/51160/7879/23225/8021/53371/7314/4928/80145/79228/8086/7251/9883/30835/5903/348995/858/9984/55746/55048/2060/10966/857
## GO:0002062 50515/8200/11173/3549/5447/2254/4781/7480/4192/10736/4880/176/265/8091/51320/1432/54928/5970/5915/871/654/2734/7476/6660/7045/64764/9451/26585/4209/7046/7040/22856/657/23213/2822/81792/3207/4094/650/2736/5741/659/5916/1893/2260/6662/6474/9321/55512/51222/579/399979/1499/4088/4017/860/94/5745/1301/8840/1490/1280/2261/7482/4208/7048/6591/54360/7227/81029/4488/2202/85477/4856/116039/8817/7704/658/2737/5744/1311/652
## GO:0060411 6664/1482/2253/7468/6659/5629/655/9421/55636/2626/54583/6091/3398/8828/64783/6608/5915/4193/6910/4091/4851/2627/6899/653/3516/7046/657/9249/4089/26508/3491/4853/4092/659/4846/3670/6909/60485/2022/54903/3280/2263/90/8321/2702/7157/2535/23493/5914/182/7474/6586/23462/7042/9353/8829/7048/10370/55742/4488/7481/10512/23414/7049/6926/652/4036
## GO:0006835 8564/55144/81034/1244/6573/9356/8500/5027/551/10165/23657/10755/79751/1468/2352/885/23204/55238/134/6507/64849/8541/8402/2348/8497/189/552/57084/9058/2744/65010/2917/10861/6804/6512/6616/6511/3766/2912/26266/57030/4923/4889/320/54407/22999/135/5663/1836/6506/2350/11230/8499/22930/9016/89874/5864/65012/80131/6622/4763/10550/10497/6561/9256/6844/27165/8604/6812/10560/5172/8864/477/4915/6857/1811/6505/18/4036
## GO:0046364 26330/6576/2821/5226/7086/7167/2597/5230/2023/467/2539/5223/6888/5106/4190/2542/10993/468/2805/2641/10165/57001/1642/5771/3607/1468/2820/2027/5236/231/8789/4191/229/8402/226/2806/230/57223/10447/2645/5465/2538/5207/10891/3630/60343/2033/2026/5091/10776/1609/10296/140710/5903/6652/8850/2648/283871/57818/8473/23411/5224/1407/1196/92579/5164/8604/2308/3953/5950/3952/8864/2203/2819/51363/4485/114899/9370/5105
## GO:0031145 991/11065/27338/983/4085/9212/6790/891/9232/5347/701/5688/5709/26271/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/10213/23198/5699/5714/5702/5708/5692/10393/5704/5683/5694/7321/5718/5682/5716/25906/5707/5696/1017/5719/5700/5717/7311/10197/51433/5706/5710/996/5689/5720/6233/7316/5701/9491/7324/5711/5715/51343/9184/7314/9861/5705/8881/8697/29882/8452
## GO:0051899 2537/8326/2730/3757/239/706/215/142/2805/5027/10021/610/2257/54831/885/1137/10962/7533/1141/6714/774/55012/6327/6331/6336/773/781/784/785/859/3759/11315/10369/4923/1906/6324/135/5774/8913/93974/3725/4092/8620/25/288/8973/287/6546/2729/783/777/2702/3791/29098/596/5590/5025/54795/477/27092/2273/4653/23327/857/775/23171/55800/2697/1634/776
## GO:0017156 23413/136/55503/1138/8941/8372/321/3351/1812/10059/1020/10675/5027/10755/28964/1142/5582/2932/23513/255057/1137/6809/1141/9381/91683/5579/6855/8447/5217/6845/8573/1813/8541/3745/192683/9515/5978/594855/8618/7476/2332/9699/6853/488/6804/5028/23208/6616/5030/6854/815/148/11261/5908/5906/26059/9783/8867/320/2901/5868/8775/22999/135/5023/5663/1855/1488/9751/2771/22930/8973/114088/5864/6814/51150/3356/1268/783/22871/5532/6622/107/9341/9581/10497/27445/23396/23621/1129/9501/9162/6843/6844/9900/8448/6812/93664/85477/8938/11069/6857/150/776
## GO:0035066 672/29117/10856/8986/4842/3553/22976/55124/10891/55011/6598/7040/50943/11143/4089/23558/3976/3670/2648/26053/56848/5595/408/9252/6591/4674/4582/2625
## GO:0051209 3627/6373/4283/3932/1236/4067/1535/5336/11151/5031/30001/1812/5788/1234/6375/8989/55151/930/9474/5027/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/1649/9002/9446/1729/623/6363/581/1813/4842/3954/10523/2185/5335/9472/22821/57192/9001/5566/1756/3358/5777/6366/55283/8996/57158/1193/5144/2147/7040/5581/4923/2852/57338/3064/10345/25/5170/287/25998/3356/3709/6546/6622/7070/825/845/2149/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/775/5350/3357/3708
## GO:0051283 3627/6373/4283/3932/1236/4067/1535/5336/11151/5031/30001/1812/5788/1234/6375/8989/55151/930/9474/5027/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/1649/9002/9446/1729/623/6363/581/1813/4842/3954/10523/2185/5335/9472/22821/57192/9001/5566/1756/3358/5777/6366/55283/8996/57158/1193/5144/2147/7040/5581/4923/2852/57338/3064/10345/25/5170/287/25998/3356/3709/6546/6622/7070/825/845/2149/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/775/5350/3357/3708
## GO:0002088 5080/6664/6496/1412/7111/1411/1019/4771/1410/5629/5469/23657/1421/1418/6656/5309/7477/5818/7472/28996/7476/23424/50937/147912/1739/51343/1969/10765/7046/7040/3982/1419/6497/1497/10818/204851/7431/2301/6498/357/9839/8419/10152/4916/1499/4088/2703/1027/1028/4211/25945/7474/23047/8412/7482/7048/81029/2697/652/2625
## GO:0071674 6278/3627/7941/8792/6352/56833/1230/6347/4067/6354/5641/6283/3735/7124/3569/1240/4192/728/5054/3570/140885/729230/57402/719/1432/79647/6368/796/6223/2358/199/2321/6346/3146/5155/59341/2660/177/653/1435/26585/7040/10488/158747/301/961/3958/8600/5800/23236/7057/5175/5595/1843/5919/9353/4681/4856/6387/80310
## GO:1903524 10874/952/59272/133/2643/1482/6870/3383/100/5743/6262/551/1956/1908/5724/153/4878/5732/152/5997/522/2243/1113/2266/3274/552/1131/488/6869/476/148/81285/5144/207/846/2244/5999/2931/3269/1906/387/9722/3356/2150/3784/2702/23493/7168/2149/1490/1621/7042/3270/1907/54795/857/55800/2697/7349/6505
## GO:0008637 3002/4318/2537/8326/1869/2730/2810/578/292/9141/10449/637/664/79017/11040/7027/10059/409/7534/10105/3433/7159/2395/5329/551/3099/8739/57805/10018/5366/55737/2932/885/5716/4719/10971/10962/7533/5534/7029/2876/581/2139/51025/27141/92609/64422/7529/841/79680/5599/54978/5516/51499/28978/8996/815/207/1386/4000/487/2931/2852/7531/4976/572/93974/9026/3725/79594/291/7161/26355/8398/25994/23368/5533/4836/55288/598/65018/56947/2729/51024/29108/8626/89941/5071/7157/7755/3082/8743/596/64112/638/1191/3479/2066
## GO:0006261 79733/9837/81620/51659/4174/4171/990/3159/79075/5888/898/9134/4175/4173/2237/54962/5984/29980/84296/5111/64785/26271/51053/641/1763/55159/8317/5427/23649/4176/5982/5557/79915/30968/25939/7884/5558/4172/5424/11200/8099/5983/4683/8882/5425/84268/54107/1663/11177/6119/675/997/5985/9126/201254/5428/4796/1017/56652/10714/6117/4361/5426/4999/58525/51507/11232/55294/3980/7014/6118/29935/59343/9093/8243/5976/10269/79892/5422/10533/64710/51750/80174/7013/10735/254394/5000/11284/7486/9984/50485/5980/5423/57379/2260/5981/1025/546/22891/56897/604/5813/57804/54465/6419/1602
## GO:0090090 6663/55612/1482/5688/5709/5698/5693/79412/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/23198/6789/5699/5714/5702/9978/5708/5692/348/1000/5704/23240/4192/5683/25928/5694/5718/5682/2932/5716/6422/1649/5707/1432/10297/55681/10856/5696/6788/1857/8323/5719/5700/5717/3065/10197/2010/5706/3484/5710/10146/59349/9113/5689/5720/6657/10076/2889/5701/9491/1540/5711/5715/9368/23072/26585/4040/9861/5705/8312/2931/57680/8994/4163/27130/261734/6425/1855/650/25937/27121/1452/3670/80199/4038/5800/6662/64321/2309/6934/2719/1856/5071/8321/80114/166/1601/79960/6794/5204/2735/8452/4920/1958/7474/4300/6478/27303/324/7089/27122/2308/51339/6591/6469/3485/81029/3489/7481/857/2737/2487/63923/27123/3487/6424
## GO:0002067 5080/4821/2253/5629/3596/79084/2932/3172/6009/6608/5915/4221/6256/654/3651/2627/4825/653/4760/2931/1021/572/3642/9575/650/5170/429/5916/406/5991/3280/2263/8626/51092/5914/7474/3202/54361/25803/652/3169/10551
## GO:0002448 136/4067/3162/11314/867/2207/5880/3965/8013/10125/3596/10814/57102/30817/4878/8832/5272/695/6845/27040/1113/5294/5293/3598/50487/8723/8673/6284/284021/3566/7462/2624/3815/2294/5170/6813/2242/2268/56848/9846/8773/6812
## GO:0051146 3627/4283/983/2146/891/8538/7345/1482/7504/4904/55544/8557/58/963/2539/575/22943/409/57817/7422/4624/9456/7480/9474/51177/5629/1000/10938/688/7273/7490/1525/27101/6261/9734/88/3756/2626/1147/10038/811/26263/4878/1432/836/5058/50804/8291/4205/3792/5997/84033/2876/58529/4654/4842/6722/6608/5915/8837/8740/10939/8324/9472/4627/552/1948/6256/6910/8048/4851/1756/2475/2627/5465/22954/928/3845/975/50937/9043/10269/27302/3192/6899/26287/7471/9518/26585/3516/25776/148/859/9150/22953/207/7040/3084/577/4000/3688/5999/5156/186/4633/79933/2931/6272/71/79810/3856/1906/4323/4089/11214/7528/4621/6497/9643/183/64754/2323/3566/10818/824/6382/90410/4868/9750/650/8912/1048/858/51778/27063/5300/9794/4656/2648/11155/5573/3488/23135/10611/70/6474/10529/56603/23363/4015/6546/91807/90/10014/3880/8289/6443/1760/5925/55909/5530/6416/9759/10211/627/607/23493/825/9149/8038/845/6548/5914/596/7168/4628/2318/844/7248/4208/1140/79365/50507/6469/26509/8470/10324/6444/4856/7494/5159/4487/30846/80206/6926/3479/9254/4629/1311/652
## GO:1902117 10615/10733/29899/79734/6624/3936/7124/23636/10801/5629/55835/4478/23019/10807/9908/6714/202018/49856/5305/51100/23300/55704/79837/9001/10146/6386/27302/9662/4848/57787/7984/9525/1437/1906/10015/55329/8396/57472/1778/6382/3064/387/989/5899/5601/22930/80199/9696/8408/2909/91807/6385/9738/3567/53407/22873/85459/8678/9924/51364/4926/585/57535
## GO:1903169 3627/6373/4283/4067/1535/5336/11151/5031/1812/3208/274/2539/6375/55151/930/9474/6262/4644/57214/5142/6376/3596/786/2280/55636/6769/1394/4878/255057/375346/9002/9446/8291/1729/6786/623/581/1813/4842/5294/5621/2185/5335/9472/2534/6271/9001/5566/1756/5777/781/2332/784/785/2631/859/2859/57158/7341/1193/5144/2147/7040/5581/6236/28954/4923/2852/7531/57338/57165/3064/782/10345/799/4987/8398/25/63892/5664/5170/1815/287/9722/9992/27075/6546/9104/783/6622/30845/7070/6588/10681/825/10268/845/6548/2669/2149/844/187/79026/5311/2259/3270/6717/481/2281/3306/7220/2946/477/775/5350/150
## GO:0010464 6772/4609/3549/2254/7422/4781/6608/7472/6495/9678/6899/4000/657/4041/5154/2294/56998/2260/6662/6474/2263/1499/8660/7474/6468/8646/5396/7048/6469/7481/5764/6935/652
## GO:0097306 5888/7804/641/6354/11184/114/5031/55915/1019/8751/999/1788/1536/9131/672/1080/3157/2230/113/57476/6422/2742/5732/23209/6688/2770/65985/109/6608/7292/5727/23367/9400/1646/23514/2782/5030/4040/19/207/5581/9314/114881/2741/1946/3779/2822/5728/10270/3728/1605/112/31/1495/2309/3709/4779/5562/687/3624/56848/107/1499/5729/5563/490/108/10365/3371/8644/5737/196/1581/5468/54762
## GO:1904894 6352/11009/3575/4067/3458/11314/3066/3600/64109/7124/3569/9021/3596/958/3297/3059/3587/3570/3593/8651/3558/3592/2688/231/55620/5008/3606/2056/9244/51379/3562/51094/2185/3586/5617/2534/4851/3565/1545/23568/3588/23529/3717/2147/7132/59067/55801/1437/4249/1436/6774/183/8995/51561/3815/3976/3670/3440/1270/3280/5175/3567/2322/2149/2261/10464/5753/3952/5618/3263/2690/3572/1489/3479/2066
## GO:0110110 4609/2253/22943/7128/7422/5469/7490/4192/655/9500/265/3975/6091/5292/581/3227/6608/8837/10409/7475/7421/7472/4851/2668/6495/27302/1435/26585/3516/7046/7040/186/1906/4089/7849/183/10818/3217/3207/650/55366/9464/7291/3976/2260/6662/2022/6431/5076/2263/7020/90/1499/2252/182/947/7482/2246/10252/7042/7048/7494/5764/10512/3249/54361/367/652/2625
## GO:0051348 4085/5347/7453/7345/26271/6317/1029/4067/23603/2950/11314/2810/1031/5788/22843/1852/4771/7128/1445/26191/4690/1030/23636/2048/348/54920/3301/54900/5795/26973/9021/655/10221/5771/64793/8651/9532/3984/2932/9535/1032/152559/6422/78986/1849/63904/5575/2646/57761/3170/836/4869/6714/1050/11072/1026/25793/5997/2873/11221/7023/4221/11329/5770/9349/5987/3553/5062/5611/2041/55924/9711/51654/3843/9113/5777/9555/7016/51637/2660/6201/10408/10114/5518/10527/4298/171392/4616/3192/58533/11116/4040/859/11261/65125/1845/207/103/634/3156/197/28951/5999/11315/2764/10019/6895/2931/5998/4041/5585/7251/7013/64853/84619/51562/5525/135/64754/5663/104/56940/5728/1855/4092/51347/7538/10935/5515/8692/1647/25/10519/25937/5576/5170/23624/9270/79643/6135/8850/51763/25998/5573/1850/9529/10636/54922/5859/7249/5569/9647/5580/79893/51422/23411/7026/25913/6609/9104/29108/399/9655/6879/3611/7070/64798/5071/1353/200734/2874/3315/5925/113791/2776/4763/7157/8660/1027/1028/54997/1843/324/55450/80279/3087/57493/10039/10641/5753/1848/5468/9961/10614/5577/6653/9052/3480/11213/857/1846/9370/2167/652/4137/11122
## GO:0050679 4321/6664/6352/1001/54959/4609/9982/5365/79805/4830/1535/3148/3162/9420/1749/3549/2138/7128/2254/7422/8013/5629/3091/7039/1956/5469/4192/728/6356/56005/5967/5578/4893/1232/6422/5068/64127/3164/8291/2896/8828/6868/6608/6331/80004/8837/8324/5335/3586/3676/5798/7472/654/4838/2683/3146/2475/7476/3265/5155/51548/6869/6899/653/3037/5587/10765/7046/207/7040/55109/26051/657/27202/383/6239/6369/2658/2064/405/57142/57599/6774/572/7051/3725/25865/4853/2301/2693/650/2624/374/3690/10000/659/858/2324/5170/7291/1893/2260/538/6662/7857/5607/1750/6431/6934/5076/6667/23411/2263/8626/3915/57343/4763/1499/1960/2252/7010/2752/94/51162/3373/3791/7474/6776/595/187/2246/10016/3912/3397/8829/283/2247/1012/57608/6469/9037/7494/51157/5764/6387/116039/3249/5654/2152/185/3357/367/7060/3479/652
## GO:0042108 51311/1054/4050/336/3162/942/1991/5788/916/7096/3659/940/3929/5588/10148/6850/7124/3569/1536/7305/5724/3578/3593/729230/10333/6693/3552/3662/920/2069/941/10394/5970/9261/566/7099/943/3553/11146/177/602/8915/59067/7189/351/29110/148022/6774/51284/7098/6777/7057/3315/1958/7474/9590
## GO:0010524 3627/6373/4283/5026/5031/1812/578/5024/6375/930/5027/57214/6376/3596/117/9002/9446/920/623/581/5335/9472/2902/9001/7222/57158/22953/2147/4923/2852/5319/3064/10345/799/25/5170/6622/7070/825/10268/2149/5025/844/187/5311/6717/7220/2946/857
## GO:0019226 3737/1812/5024/7143/1890/1133/26047/551/1134/1143/2257/23114/1180/4099/6647/552/6323/1816/2332/79784/4897/2859/27094/4544/3060/2898/2741/2852/6324/183/5023/5048/2693/27345/288/3673/54112/4916/10242/8506/3736/1901/5025/57731/2281/83700/3751/4915/9607
## GO:0032663 3902/2633/8767/9454/942/5788/916/30009/6375/940/7128/5588/9308/64170/5142/7186/11326/54440/6441/729230/3552/9971/3662/920/941/10892/5621/5987/3553/6885/11146/10524/5144/6188/50943/301/7189/7430/25865/7538/25/6711/6777/9455/51564/947/79679/89795/2625
## GO:0051937 3351/3737/1812/1133/151/1814/1137/1141/6531/152/6530/156/1113/1813/6581/3745/60/2668/5020/6804/5028/5865/26281/11315/186/6580/1861/135/183/6623/2693/4986/1815/4204/8973/3356/65018/1392/1268/6622/5071/4887/5021/6387/6571/11188/9607/150/18
## GO:0006364 3669/23560/705/23246/54512/23481/9188/55759/10200/27341/10360/5822/10436/5393/6839/9775/54663/54433/51118/9136/23404/54881/56915/55661/9221/54555/55505/57602/23160/55636/4809/2091/114049/22984/51096/55651/25926/92856/54606/55813/55226/6223/51202/10885/55127/5036/4931/51729/10171/79050/27340/9790/27043/29960/81887/26168/10199/79863/27042/50628/55178/6217/81875/6194/51106/11340/8602/23016/27292/6201/6187/57050/55006/11056/51504/57418/65083/79922/55272/57109/10813/10607/115939/10438/6129/51013/6208/9277/6232/79707/6229/6155/11103/51018/6234/8780/6165/6203/51077/6209/29063/317781/54853/23378/6135/55781/404672/25879/117246/130916/23411/23517/55035/9045/5394/55164/10521/51093/10412/9724/55623/6041/22894
## GO:0071887 9212/3620/6352/3559/917/1236/10859/1029/3575/4067/27242/578/1234/2207/1514/100/939/5588/3965/4282/8013/5027/3569/5133/8772/3091/23657/79444/356/3059/10018/3558/384/836/64127/10758/26155/695/1399/29124/101/6868/3579/6363/581/5291/3586/5293/972/3665/3707/3718/6194/1676/9093/6366/10461/10945/8915/207/3661/1178/5585/56891/5728/2693/842/3958/5896/8737/23411/9693/7157/8660/604/7474/558/1942/4208/1831/4254/2621/6387/2737/652/5304
## GO:0099565 5026/1138/5024/409/1020/9775/5027/1134/1143/1144/8898/1142/2932/1137/2742/1141/2895/134/2562/1813/22997/2185/55607/8001/4988/2902/50944/1145/54413/7476/869/23316/9699/784/6804/1135/57053/54434/22953/207/23542/9294/5999/1742/57030/1146/6455/3060/2931/4923/2898/2741/351/2901/4355/9127/55584/10458/22999/135/5023/1136/5728/1855/23613/1815/4204/22930/8973/9378/5649/22871/6622/154/1760/5530/10497/5590/5025/4887/9162/4208/1140/2743/18/57502
## GO:0022898 4318/23630/81831/3755/6347/3458/1520/5336/51083/5031/3753/3208/483/10105/3359/9456/2048/6262/4644/5142/1080/2280/5724/88/1612/2257/5923/8811/6769/1785/729230/1394/1814/4878/255057/7533/375346/9446/10368/8291/2745/6786/11331/10063/2056/1813/4842/3799/6327/5621/2185/9472/4988/2902/50944/6271/60/3787/9943/9001/5566/54413/1756/3746/2904/1740/781/2332/784/3747/10891/3630/785/9368/54800/2631/1739/859/11261/2859/57158/7341/1193/5144/23542/4544/5581/1741/6236/823/50488/11315/7114/1742/28954/10369/11060/4923/7225/81/7531/351/6324/2903/57338/30819/5774/2893/5728/8787/3064/10345/2892/4987/8398/63892/288/7291/1815/287/8737/538/10768/5649/9722/9992/2040/65018/1392/9104/2890/783/22871/6622/30845/6588/27091/10681/56848/7881/154/51719/845/6548/2915/2669/3736/27347/54997/7402/29098/596/482/54209/10142/844/6844/79026/5311/4734/2259/4208/3270/6717/481/4747/2281/5243/1393/3306/2946/477/27092/2273/23327/857/23171/5350/55800/2697/2891/150/5348/776/5174
## GO:0006469 5347/7453/7345/6317/1029/4067/23603/2950/11314/2810/1031/5788/22843/1852/4771/7128/26191/4690/1030/23636/2048/348/54920/3301/54900/5795/26973/9021/655/10221/5771/64793/8651/9535/1032/152559/6422/78986/1849/63904/5575/57761/836/4869/1050/11072/1026/25793/5997/2873/11221/7023/4221/11329/5770/5987/3553/5062/5611/2041/55924/51654/3843/9113/5777/9555/7016/51637/10114/5518/10527/4298/171392/4616/58533/11116/4040/859/11261/65125/1845/207/103/634/3156/28951/5999/11315/2764/10019/6895/5998/4041/5585/7251/64853/84619/51562/135/64754/5663/104/56940/5728/1855/51347/5515/8692/1647/25/10519/25937/5576/5170/23624/9270/79643/8850/51763/25998/5573/1850/10636/54922/5859/7249/5569/9647/5580/79893/51422/23411/7026/6609/9104/29108/9655/6879/3611/7070/64798/200734/2874/3315/5925/2776/4763/1027/1028/54997/1843/324/55450/80279/3087/57493/5753/1848/9961/10614/5577/6653/9052/3480/11213/857/1846/9370/2167/652/11122
## GO:0051282 3627/6373/4283/3932/1236/4067/1535/5336/11151/5031/30001/1812/5788/1234/6375/8989/55151/930/9474/5027/6262/4644/7226/57214/6376/3596/356/2280/6261/55636/1649/9002/9446/1729/623/6363/581/1813/4842/3954/10523/2185/5335/9472/22821/57192/9001/5566/1756/3358/5777/6366/55283/8996/57158/1193/5144/2147/7040/5581/4923/2852/57338/3064/10345/79085/25/5170/287/25998/3356/3709/6546/6622/7070/825/845/2149/80024/844/187/5311/3270/6717/53373/2247/2281/7220/2946/477/775/5350/3357/3708
## GO:0033683 5984/5111/5982/5424/2072/5983/142/9978/5425/6119/1642/9557/5985/10714/4913/6117/2968/7311/6118/8451/6233/7316/7314/2071/4968/8450/2965/2073/404672/5981/2967/2067/22909/2068/1643/57804/7507
## GO:0042596 116372/1812/2558/348/4192/1981/885/153/1977/7101/7416/7419/4761/64854/41/3358/55515/23542/1803/2898/116/1815/4204/4862/5896/1620/5179/1392/10522/3350/596/4887/1621/4208/27136/2697/7349
## GO:0060079 5026/1138/5024/409/1020/9775/5027/1134/1143/1144/8898/1142/2932/1137/2742/1141/2895/134/1813/2185/55607/8001/4988/2902/50944/1145/54413/7476/869/23316/9699/784/6804/1135/57053/54434/22953/207/23542/9294/5999/1742/57030/1146/6455/3060/2931/2898/2741/351/2901/4355/9127/55584/10458/22999/135/5023/1136/5728/1855/23613/4204/22930/8973/9378/5649/22871/6622/154/1760/5530/5590/5025/4887/9162/4208/1140/2743/57502
## GO:0000186 8767/1956/1950/5610/5594/4914/1326/134/1399/2911/4342/4294/4296/6885/2889/9175/28956/8754/2074/4616/4217/9020/7046/10746/3717/5894/5663/4293/10818/1398/51776/4215/23043/57498/8737/9344/8649/5595/4216/2149/4803/4214/7786/9607/652
## GO:0000819 55143/991/9493/1062/10403/23397/9787/51203/10460/4751/4085/81930/81620/7272/64151/9212/9319/9055/3833/891/24137/9928/11004/990/5347/29127/701/11130/10615/79075/9700/2237/9918/699/1063/26271/23310/10051/5885/84722/54908/10592/8260/23212/23636/3619/1663/7517/5901/7273/80218/5119/5889/11044/25906/29781/81929/3834/9126/3835/8379/3837/23137/11331/4361/84861/27183/10300/7756/4342/55795/79998/56984/79003/23244/9183/55294/51510/9113/10664/7175/996/8766/9555/6795/8243/25978/5518/3192/23383/79892/9184/9525/6421/26993/91782/57132/29082/51451/51143/10735/55719/10270/23063/55755/79643/55781/8697/472/56155/8658/546/3550/25836/5925/27243/1499/8452/23047/1843/324/8678/10464/4926/23126
## GO:0042100 1503/952/1493/7037/51237/3574/3575/22806/959/27242/11314/79915/1880/3329/5788/100/930/4282/51293/2213/3071/3596/7293/1380/7305/958/57162/3558/931/836/973/1141/4332/3635/1026/695/581/3586/972/7099/5897/3565/975/23529/59067/23228/5585/5074/148022/933/149041/25/472/5580/3456/8660/3567/604/596/196/4208/10451
## GO:0002708 3902/7037/91543/4436/79915/3329/7468/5788/259197/4068/30009/2207/6375/8807/940/7124/5027/3569/4049/56253/2208/8772/5817/7186/10125/3135/164/958/3134/54440/3593/3558/3592/51571/3805/695/55183/7855/3606/10666/10892/7292/11126/7409/3553/6885/22976/3565/8809/3133/975/567/3916/23529/7040/50943/59067/114548/7189/8741/8417/718/3594/54537/51561/23705/4292/22890/5819/6777/7158/6778/3554/81545/5590/3263/2625
## GO:0032434 55872/6790/5347/79016/7336/51377/7480/9978/7415/10755/57805/10221/10134/55212/2932/5716/26263/3326/5886/6599/1050/8078/6613/23640/9097/9683/51322/7917/55743/3093/2768/4193/51035/6386/4534/11146/11011/7341/207/22933/4780/65992/28951/11315/369/2931/9817/9709/7874/1263/23376/1453/6872/29978/5663/55070/25898/1855/4092/3300/6449/1452/5601/56893/5887/6135/6880/863/3077/8554/10273/23274/1454/9529/8473/2729/9655/4130/5071/2295/1601/23429/819/2272/29997/6469/90865/10769/5988/857/1191
## GO:0050864 3149/952/1493/7037/56833/51237/3574/22806/27242/4436/11314/79915/1880/7468/5788/9466/30009/100/940/64092/939/7128/930/4282/6850/3569/51293/2213/3071/3596/7293/7305/958/55024/57162/3558/3623/6422/836/1141/64127/3398/4332/3635/1026/695/55183/677/7292/55795/3586/972/7099/22976/3565/2302/5777/975/1540/23529/7040/50943/59067/8741/5585/4323/5074/148022/572/54537/79155/933/149041/4292/9984/6830/472/6777/7158/3624/8660/6778/3567/604/596/678/196/4208/10039/7494/10451
## GO:0071622 6278/3576/6352/1236/6375/3735/3929/5880/1240/3071/4192/728/57118/57402/719/708/1432/4354/79647/8291/3579/6363/23604/972/6366/59341/2660/5879/1435/27202/683/158747/1906/9750/51561/7057/5595/5919/9353/83700/7060
## GO:0031016 10232/5080/4821/578/3549/10220/6659/3569/5629/50674/3175/6927/3570/2932/3170/7547/3172/6009/6608/4221/5078/93/654/3651/2627/9480/4825/6928/9451/653/4760/207/2931/123872/51714/4087/1021/572/3642/9575/55036/2695/2294/5170/3670/2696/8854/6662/6934/406/5991/3280/579/51092/1499/3643/7474/7466/4212/2308/2494/6469/7494/79971/652
## GO:0072332 1869/54541/79915/11200/5457/23028/4282/7159/675/5366/5371/3428/80237/64065/8445/1026/64782/581/972/7917/4193/29965/28996/6201/10514/3622/51499/602/26287/60401/754/7314/22938/2033/960/3094/51741/1655/1870/204851/54700/5458/624/7161/64844/10210/23368/23378/6135/6880/26471/23411/29108/8626/23612/5071/7157/6794/51065/5164/51616/596/2272/4487/4582
## GO:1901224 3654/8877/1116/9618/939/3965/929/7124/7097/1956/7186/5610/54542/3593/10333/811/8795/192669/64127/11156/3987/26523/5970/3606/6363/10892/4142/8740/10913/7099/3553/6885/8809/9966/177/26585/2033/6188/64922/54765/1896/29775/7189/54386/1906/81/351/8717/7205/10616/387/149041/51561/51284/10920/7098/10392/10725/4317/3611/23328/79092/54209/56892/4306
## GO:0048144 890/891/990/4609/1869/2950/11314/8877/1019/4282/4049/1956/3596/5591/5371/79577/6277/6422/2069/1026/26272/685/581/7477/1660/2010/972/7472/5155/22954/51548/10269/7471/5828/51003/7040/5156/186/79621/2355/6497/5074/3981/5154/1021/2495/183/5319/3725/23063/2335/1385/26471/57178/4724/23515/11285/81857/4763/1499/4921/7157/4602/7474/80169/5468/358/56034/2621/2099/5159/3479/80310/1602
## GO:0060021 6664/6943/55003/8092/1302/2304/1749/63976/3638/10541/10220/2048/6654/55636/55212/2049/60529/2562/93/51176/7476/6615/6899/1739/7046/7341/8879/657/64386/5156/9249/80144/4089/4087/6497/25976/8131/9242/59338/9464/7291/6909/54880/1750/3714/51141/7020/3624/8321/2295/2535/23314/7474/1280/84159/444/7042/4208/5396/54796/7048/6591/6469/7481/116039/4487/2737/65250/2615/4223/7043/7049/7122/6926
## GO:1903035 7103/239/6696/7143/5329/348/11202/2160/4192/5054/5345/2161/84830/1026/2043/5340/2243/8573/3848/5328/58529/2266/325/7448/11221/2811/1361/5055/5155/928/3273/58189/177/9860/2147/634/2244/3156/5156/5270/10019/83481/114897/1906/23332/5154/5728/55966/1398/3818/4846/7035/22876/3827/5580/5802/7057/350/710/29956/4088/1027/5624/947/5592/23122/5627/2247/7056/2191/54361/2697/5327/18
## GO:0043154 27074/4102/4318/2537/2810/5447/409/939/7422/5329/1410/5743/551/25816/4504/10049/1032/23204/6714/5272/6197/2876/8837/8740/6195/64780/5062/2168/4193/51176/10542/7429/79886/51499/55011/331/8996/207/960/5894/80196/9314/11315/54475/9709/7531/1654/135/10935/27018/55031/5896/1800/5607/5076/7057/6622/1718/408/3476/3082/6478/4804/4803/358/4671/2621/7021
## GO:0008625 3148/3162/637/467/3383/7128/6789/7124/8772/11124/7186/672/4118/356/5054/1612/5366/6422/8795/6788/51202/2243/2876/581/2266/8837/56616/841/355/1616/653/9181/9994/64114/7132/55367/5894/2244/80196/11315/10116/6272/6672/1654/8717/8738/572/5728/8682/23017/6498/3958/27018/4846/9531/8737/6810/11337/598/8567/7057/4763/5295/3082/8743/596/64112/4803/9812/7078/658
## GO:0016331 9355/6664/133/5100/6491/8543/5898/8092/9585/2253/4522/6789/6659/6768/3091/5216/6862/655/5567/9421/79977/10959/23513/6422/2926/6788/8323/7408/1072/7477/2348/5727/7475/7289/7472/4838/3651/5566/4524/2668/10653/51384/23242/6495/6201/51098/54910/11146/23654/6928/653/8915/26585/7040/7189/23213/9968/6692/3911/65979/7849/6497/317/55764/5979/1855/5754/55081/2736/25/7976/9839/7291/5916/80199/2648/7403/8854/10427/220/6662/7249/3714/57669/5076/2909/10395/54903/1856/29072/79600/2263/7020/9620/8626/8289/6385/8321/7424/1499/2535/10522/5914/7474/7248/7482/7042/11019/6469/58495/585/7041/54361/367/652/4036/2625
## GO:0035821 6280/820/6355/10578/4069/6352/5551/7298/3838/85236/6351/3429/6590/8970/3458/6283/1991/3853/2597/5479/5806/57817/6406/6357/23076/5702/5027/2208/348/5610/6882/10018/9367/9217/6441/8091/6597/23513/904/9126/5272/6372/3841/6223/3837/920/8542/5340/3839/1669/80149/1113/57115/3065/3836/1072/1670/325/7023/10898/566/6256/6156/23633/2959/51176/3347/28996/5978/841/293/51193/2332/10332/8993/4843/3273/3840/3151/79792/6598/9150/10533/22938/2147/7040/2033/64710/5091/383/10670/302/23435/5196/572/8812/3725/9218/30835/8692/1605/10318/3346/858/1671/51763/25833/4916/64848/2040/6667/598/11334/2150/1105/5071/4088/4057/8106/4153/3643/3685/1511/4589/358/25827/3249
## GO:0051494 4751/6712/29767/3925/7111/11151/119/899/8500/7454/5216/672/22919/1496/26586/3834/10432/2288/4869/5217/822/57175/4133/10300/6710/4281/79929/55607/5962/50944/58526/11344/4591/7429/9463/1859/55604/9181/859/29766/10382/4233/10565/7114/23332/4089/10163/10677/9026/395/6904/10013/2039/6708/10519/11078/2258/4682/55755/8195/8850/116985/51763/2648/2059/6711/10395/5580/5756/4070/51332/6622/50810/5071/23189/56890/146057/118/27243/4131/23075/25876/1901/324/23122/11075/6709/9353/2934/57731/25999/89795/24139/585/85477/51474/4653/10391/89927/57551/50853/80206/25802/27124
## GO:0048048 5080/6664/6496/3549/5629/655/25806/64220/7855/5915/28996/51384/2201/668/65979/10818/204851/7291/5916/6909/220/6670/5076/7054/4237/7020/8289/2295/7474/2202/6935/2200
## GO:0051954 59272/8564/5027/551/10991/885/23204/1141/156/1813/3745/552/2668/5020/6865/6804/5865/4923/6529/135/183/5663/4986/1815/22930/65018/4887/5021/6812/6387/9607/18
## GO:0072350 445/4200/3418/50/1737/3419/5160/2271/3421/5161/3417/1431/6389/4191/1738/6391/6569/3420/1743/4967/8802/47/23530/6390/48/6392/8801/8803/23409/5162/2746/10873
## GO:1901890 59272/7422/9076/5795/6422/3987/4867/3273/5879/1969/8826/6281/6093/183/261734/9448/25/9270/57669/9647/7070/6385/10211/4088/7010/3791/7248/8829/4653/857/54361/1307
## GO:0001704 4318/2001/4324/7296/2296/3689/7473/22943/2138/4771/8013/6862/655/10736/9421/79577/8091/3975/89870/3281/2139/6722/2132/1284/8324/3196/7448/3676/2303/4838/5566/2627/6615/3691/6657/6928/1969/3678/9314/657/3688/6886/4323/4087/3914/23275/3207/23168/3690/659/2294/2335/3673/2116/9646/7403/5573/2260/23135/57669/64321/6911/5076/8516/29072/54623/2263/90/2114/4317/8289/3624/55614/4086/1499/4088/1291/1301/7474/57045/3685/79923/8646/3675/3912/1295/1290/4313/3693/1294/7481/1289/3909/79971/3679/652
## GO:0071166 55110/9688/10212/56943/11260/7884/9631/4116/6396/23165/55706/6427/9775/29107/23636/5901/4927/79902/10762/8480/11097/26019/4686/3267/9972/81929/29118/1977/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/81608/23511/9887/10898/65109/29890/2733/22916/11338/23279/6426/10921/6429/10250/57187/7175/51362/26097/26121/23225/5976/6432/8021/53371/84271/22794/4928/8888/80145/79228/8086/26993/9883/5903/6209/348995/9984/55746/23293/91746/55781/10482/8189/6830/6431/9295/29072/9939/6430/9877/8106/7248/3087
## GO:0006275 79733/890/983/81620/990/79075/23560/54962/5984/29980/5111/26271/51053/641/1763/8317/5982/79915/30968/11200/5983/4683/6282/11124/1956/27101/675/5985/9126/1017/2069/4361/26057/4142/1660/58525/23244/55704/55294/3980/7014/3265/59343/8243/5879/5518/10269/3364/10533/64710/10919/3060/80174/545/2658/7270/7013/10735/253980/3725/23063/5515/2736/7126/79991/57379/2260/546/5930/5884/466/6416/7157/22891/3399/56897/2735/94/604/80169/253461/1471/64061/7349/1602
## GO:2000241 991/259266/7272/6790/10549/8372/3066/55840/55726/7262/100/1761/6789/5047/7783/2827/7490/655/5724/79084/4880/5567/5810/811/6422/708/64750/6714/6690/5017/3239/6788/51441/1618/79400/10184/10371/55231/6736/4342/2661/6256/4838/2683/5020/55124/6615/56979/5518/5028/2796/51343/3955/6954/22933/11251/23213/2741/91/10519/8912/85360/7076/3976/397/26471/5573/6662/4824/56729/64848/8521/1268/23236/1910/2263/2516/3624/5139/56339/9759/1499/8654/6794/268/4882/7320/1027/3643/7474/5016/1843/27306/5021/167/5176/10370/6469/6812/4488/3625/2099/4487/23414/54361/367/3479/652/79846
## GO:0006360 55506/5435/10849/5440/5457/468/4141/1663/5469/23160/6597/5437/25926/9533/55127/64425/221830/2968/4691/11137/64768/9014/2475/9555/10269/2074/55011/9451/6598/2316/23133/2071/11176/7343/5434/7270/2064/79101/6872/9013/4331/54700/2965/9015/6908/1022/404672/902/2967/5441/2068/5595/84172/29997/284119
## GO:0046365 5214/3101/26330/2821/57103/7167/2584/2529/2597/5230/2023/5223/5208/5315/3099/3607/2027/5211/2528/5236/3795/2582/2592/10690/9942/10327/5313/229/83440/2720/226/230/2526/2645/2523/5213/8277/2026/3098/89/2527/4041/669/572/2524/6652/51084/51181/5224/7157/26007/8604/64080/216/2530
## GO:0042177 27074/55872/4085/55353/575/51377/23450/1956/4248/10755/57805/5476/5371/5582/55737/2165/3326/8291/51582/6599/2043/55432/5970/1459/51009/116986/3586/9097/9683/9349/80011/51322/7917/2534/51035/28996/5245/5045/8724/6386/4534/6201/29761/9491/4843/3630/51374/9860/7471/51465/54971/11011/2316/22933/4745/3084/3156/65992/11315/5270/302/7327/7874/6872/2903/11345/23400/6093/5774/5663/10869/10956/64844/7076/6449/5300/6135/6880/9827/3077/2905/23274/9529/8473/23077/6622/4130/4088/23429/819/1942/2272/4194/80279/29997/7078/210/6469/6625/11213/1471
## GO:0001906 820/3002/3902/10578/4069/1075/5551/57823/85236/10859/1054/8970/3575/3458/11151/80328/26228/6283/1991/3853/2597/5788/259197/3383/4068/6375/203068/8807/5052/409/57817/3965/6406/3251/10383/6357/6318/5027/56253/2208/8772/5817/2213/10125/3135/164/3596/7305/1773/9437/10018/3134/3593/7264/735/3592/51571/3805/1512/3326/5272/6372/6223/3004/8542/6845/1669/3606/1113/10666/57115/1670/566/11126/7409/5873/1604/6156/3565/3347/3133/5777/8993/4843/3273/3151/3684/177/567/3916/2147/922/634/59067/383/8417/5196/572/718/1776/3594/1398/80329/51561/23705/3346/3811/1671/966/6813/5819/1130/6777/11334/5532/2150/2013/4057/100507436/4153/1511/4589/3952/3075
## GO:1904375 5347/2633/29899/116372/3458/1445/1020/8500/7124/2048/1956/245812/6769/382/6809/2770/391/1173/2035/10434/27183/8878/3799/5584/60/8048/3265/8766/7429/1213/3630/8673/1739/10490/1969/8301/64114/207/7040/5581/23433/3688/9495/5906/5780/10369/8417/2852/4323/5525/23096/7430/55022/2693/1605/102/10519/5583/5170/3958/9912/27237/2037/8650/11079/6711/6810/598/26119/9528/26060/1601/5295/10268/5357/126353/9482/22841/2181/29098/5590/54209/3675/2042/10580/25999/4926/4035/2239/54585/367/131578/10551
## GO:0042130 3620/1493/80380/3559/10859/1051/27242/10288/6375/3549/3965/83737/23240/3135/11326/57162/6441/6693/384/836/8379/7356/5621/3586/10385/10457/2302/5777/11146/2796/1739/7040/51043/50943/383/2064/5074/149041/64844/5573/6385/8654/9231/57045/79679/6469/2615/652
## GO:0006635 10449/215/55289/5467/2108/1374/27349/1666/51102/208/10005/3033/1892/10478/2168/2475/5465/51/2109/23600/5828/207/1962/2639/1891/1376/1632/3032/34/7291/3030/3712/6342/26063/23417/1268/2110/30/5825/35/8660/37/5191/225/80724/11001/33/1384/8310/56898/3952/3295/10455/32/8309/3667/54677/9370
## GO:0042440 1001/8833/4948/5471/3162/10606/706/100/1652/3251/2395/4644/3145/23657/211/10755/402055/259/6121/644/3658/7390/212/5631/54576/7299/434/1638/1352/10891/200205/3163/6470/1371/4157/6490/2235/1497/93974/4891/1355/54977/645/7306/9839/4935/7389/9693/4779/26060/5498/51151/4435/7474/596/210/56898/7220
## GO:2000573 4751/9212/79075/22948/5984/4609/5982/908/10576/409/5983/5588/7203/10574/5594/10575/2264/79977/5985/3326/6714/65057/8550/3181/26272/4931/3320/25849/2185/10728/10694/5155/5063/26585/3184/7520/9314/5609/545/55135/5073/25865/80351/11284/3178/140609/472/25913/8658/5595/1499/28984/3082/4216/79618/2247/50507/5159
## GO:0022600 10874/55765/29881/362/336/8435/29887/3783/57817/1890/1133/9245/5406/9414/887/11171/6518/4585/6446/1056/1814/64240/50848/64127/5731/4883/2035/3949/949/10062/3274/1314/3658/7099/7421/2168/5020/335/1645/65010/4583/1131/7429/6523/6343/6869/80168/65125/4760/7430/48/6514/9026/56667/2693/4987/4986/6662/1392/4762/64081/3784/5357/12/27347/6779/2169/948/5021/6584/5950/4588/358/7357/3952/51474/6863/7349/150
## GO:0042692 3627/4283/983/2146/891/133/8538/7345/1482/7504/4904/55544/8557/58/7290/963/274/2539/575/3475/22943/409/57817/2254/7422/4624/9456/23028/1786/7480/9474/51177/5629/1000/10938/688/7273/7490/1525/27101/6261/9734/88/3756/1496/2626/1147/6300/10038/811/4775/26263/4878/25842/1432/836/5058/50804/8291/2069/4205/3792/5997/84033/2876/58529/4654/4842/26057/6722/6608/5725/5915/8837/8740/10939/8324/4617/57591/9472/4627/552/1948/6256/663/6910/9444/8048/4851/998/1756/2475/5155/4772/2627/5465/22954/928/6495/3845/5936/488/54910/975/50937/9043/11146/10269/27302/51725/3192/6899/26287/6929/7471/9518/26585/3516/25776/148/859/9150/22953/207/7040/8536/3084/577/80306/4000/5600/3688/5999/5156/6895/186/4633/79933/1491/2931/6272/71/79810/3856/1906/2852/4323/4089/11214/1013/7528/4621/6497/3020/9643/183/64754/2323/3566/6604/10818/824/6382/90410/4868/9750/650/4618/3815/25/2294/8912/1048/858/51778/27063/5300/9794/6909/4204/6095/4656/2648/11155/8554/287/5573/3488/23135/10611/6662/84193/2022/6830/1495/70/6474/10529/56603/1025/23363/4015/1910/23411/8516/6546/91807/3280/2263/90/10014/3880/8289/6443/1760/5925/55909/5530/6416/9759/10211/1499/4776/627/607/23493/825/9149/8038/4303/845/6548/5914/596/7168/4628/2318/844/7248/23462/4208/1140/79365/50507/23345/6469/26509/8470/10324/6444/4856/7494/5159/4487/54361/30846/6935/80206/6926/3479/9254/10266/4629/1311/652
## GO:0022613 3669/23560/51388/705/55003/23246/6634/55794/54512/6631/10907/6632/85865/23481/9188/54496/11168/4839/6636/51154/55759/10200/27341/8662/6637/10360/5822/10436/11051/5393/6839/6628/23212/79833/9775/2886/3692/54663/10713/54433/51118/29889/9136/5901/28985/23404/54881/56915/55661/9221/54555/11171/79084/55505/23019/57602/23160/55636/11273/4809/2091/4686/6936/114049/6633/22984/708/3646/3326/51096/55651/26574/9908/25926/92856/192669/54606/4869/84864/55813/7514/55226/6223/51202/2971/26523/10885/8664/55127/55153/51116/5036/4931/3320/96764/51068/1965/51729/6635/10171/29883/79050/55239/27340/9790/27043/54680/11052/1660/10728/10978/29960/1656/8562/8487/11137/81887/10419/26168/6426/1207/10199/10146/79863/10772/27042/50628/10073/55178/6217/81875/8668/6194/27339/51106/10480/10946/8451/9092/11340/8602/27335/23016/54552/1653/27292/26284/6201/26121/10514/9733/8669/6187/57050/55006/11056/51504/9416/57418/55011/65083/51657/29102/10153/79922/79631/8996/4848/55272/10291/57109/79869/10813/8667/10607/24148/8661/115939/103/79760/8665/9129/58155/51386/22907/10438/6895/6733/10594/6129/51013/26065/8994/25819/545/6208/9277/6232/1939/79707/1654/1983/26747/6229/6228/6155/11103/10659/9169/51018/57472/5728/1778/8450/23451/54700/6234/8780/149041/6169/6165/6203/51077/6209/10658/23064/8175/636/23020/29063/317781/54853/10421/23369/23378/6135/6880/91746/8666/55781/404672/8233/25879/117246/192670/130916/6431/472/64794/22889/7375/6311/54960/23411/23517/55035/22868/9045/5562/5394/55164/23405/51340/10521/5563/6430/2752/7536/51093/10412/9724/7248/55623/6041/9924/29997/22894/10181/1153/4137
## GO:0045861 27074/55872/7850/332/9232/4102/4318/7980/79094/2537/1475/6590/6317/5266/5973/2810/8530/2597/5271/274/3697/5447/409/1469/9806/1476/79853/939/51377/7422/1020/27344/6318/5329/1378/1410/5743/551/25816/27290/10755/4504/57805/5054/11326/10049/5371/5582/3428/1032/5345/259/23204/3326/10816/3933/6714/26998/6690/5272/1522/6197/725/6599/2043/5275/55432/684/2876/7077/65264/1459/8837/5621/8740/5858/55795/3416/2055/51009/7448/6195/3586/9097/9683/9349/80011/64780/51322/7917/1361/5062/1604/1447/2168/4193/51035/51176/28996/10653/2734/5045/6386/4534/3698/10542/7429/50859/6201/29761/9491/90199/1474/79886/58189/3630/51499/55011/331/722/9860/7471/51465/8996/11011/10047/8301/207/2147/960/64215/5894/80196/9314/65992/11315/5270/1285/7327/54475/9709/6692/6737/7874/7531/351/1654/6872/22900/11345/135/6093/5774/51050/5663/334/718/10013/10869/10935/5037/10956/64844/7076/6449/27018/1201/1893/56925/6135/6880/55031/966/3077/5896/7035/1800/23274/9529/3700/5607/8473/5076/3827/2719/9528/7057/8434/6622/4130/2/710/1992/23409/26952/1718/7157/5269/408/3476/4057/3699/23429/3082/1470/831/10406/819/2619/1942/1472/6478/2272/4804/4018/55450/11005/4803/29997/6694/7078/5627/727/1293/210/80760/6695/358/6469/10879/51232/4671/6653/1294/2621/1471/3730/58503/5327/1473/7021
## GO:0044344 10563/79801/3576/6352/6347/54845/9982/6770/2730/5435/2253/867/2251/2591/5440/2254/27006/5433/63978/988/5594/23769/2257/2264/26291/4686/5437/6422/3975/3164/2885/5439/3185/1399/9702/9158/5431/8822/5436/5725/80004/677/5781/22916/2250/5438/5432/6899/2963/10765/26281/960/10817/7073/51552/23543/8826/5434/23213/25778/8823/8074/2249/3187/2248/10818/27020/25865/8036/7538/8692/23064/3178/9270/80199/2260/5430/2263/2729/7057/4670/7072/6622/5441/200734/55614/5595/1499/1373/1960/2252/23767/860/2962/3373/90993/7474/1490/678/2261/2246/2817/1277/2247/9365/79633/8817/54361/10631/3730/2625
## GO:0050764 6347/3561/3055/1535/336/11314/26228/8877/1794/5788/5806/3600/1445/3601/6850/246/9474/7124/7097/613/2213/5795/3071/4240/57118/5582/140885/1785/6441/3560/811/6556/8291/725/2358/949/5657/7275/566/5873/6647/3553/3146/64422/7287/335/8724/2889/23208/10461/722/7040/197/5906/961/10960/718/5728/2624/717/3673/10347/2268/29108/2150/26060/29/4153/3685/948/5468/55198/11031/2621/4035/9370
## GO:0060349 2296/1749/3549/5447/3638/6862/4880/1305/54/54928/2778/249/1954/3636/9350/5915/871/1044/654/10498/2734/4665/59341/10269/3037/4209/7040/22856/60676/4664/4041/9249/4323/5075/2249/6497/3207/6781/659/51715/7291/5916/4325/55790/6662/6474/56603/9321/55512/1112/4762/51141/2263/7020/7059/4057/7010/860/5914/5191/1280/2261/4208/4322/7048/1277/4488/116039/8817/4487/658/2737/7043/6424/1311/652
## GO:0007266 1894/3925/9289/8997/345/613/7454/348/2245/6654/5923/1147/3984/6091/391/23229/393/84033/50649/55200/55160/7410/1072/7409/7074/4650/335/396/9138/5879/10276/54848/26230/4168/9181/6014/148/19/23370/27/4233/5894/56882/3688/7984/79933/55785/9826/10630/65979/11214/23101/6093/221472/253980/7204/51495/8874/395/9475/387/9750/6655/4983/79567/5741/25/7126/80243/27237/9423/50618/397/286205/57698/26030/54922/10160/22899/392/2909/10395/8727/9459/9620/2150/23263/23189/10256/5175/10211/6453/25959/64787/408/26084/29/394/8452/604/64283/54869/2149/4804/3675/9639/23268/57493/1902/9411/1278/8829/50650/201163/9855/23365/1012/1281/55701/4653/5159/388/185/9828/150/10451
## GO:0046488 26279/3613/5320/5341/10380/5336/55697/9600/8813/1133/79887/8811/8898/3631/5321/54928/8733/6305/54545/377/3635/2358/30814/3636/8776/23533/84720/5291/5294/5277/8394/116986/660/5293/5305/8395/83394/8818/79837/93210/3358/64419/5155/22979/4534/23167/9108/9110/55361/8503/8897/81579/4952/5296/5290/3612/54344/79143/51552/3633/8867/9107/1436/27315/8871/5868/5298/5297/5154/5289/9487/2822/8396/5319/51227/1040/51604/5728/10026/3628/80055/5288/59338/59339/56623/26751/30849/5281/9651/51763/9896/3356/22876/57664/472/5322/23236/5287/80235/9091/10423/5286/80230/200576/9807/54872/11145/5295/23396/51447/9488/55650/3632/65258/23556/5283/22908/8605/66036/64600/2247/5159/5783/8821/3357/27124
## GO:0048145 890/891/990/4609/1869/2950/11314/8877/1019/4282/4049/1956/3596/5591/5371/79577/6277/6422/2069/1026/26272/685/581/1660/2010/972/7472/5155/22954/51548/10269/7471/5828/51003/7040/5156/186/79621/2355/6497/5074/3981/5154/1021/2495/183/5319/3725/23063/2335/1385/26471/57178/4724/23515/11285/81857/4763/1499/4921/7157/4602/7474/80169/5468/358/56034/2621/2099/5159/3479/80310/1602
## GO:0001667 3868/10563/6286/4902/3695/4318/51378/154754/55612/9982/5646/23603/2821/3458/5613/8092/3162/6273/5641/2253/3689/239/575/7422/5467/5801/5743/5629/348/3091/506/5216/23616/6862/655/1908/10755/958/11171/411/1460/9734/5578/5371/811/5606/1512/708/1839/382/64750/5747/7101/5058/2637/6714/6091/3164/2896/11156/84830/5217/8828/9219/393/154796/6868/57175/10371/2876/949/80149/1954/9350/2113/6722/6608/1072/2196/2348/10487/51094/8394/2185/11221/5335/4627/3676/80005/1948/5781/2303/55294/5829/2768/4838/3146/22976/4851/3565/55466/2050/2668/2475/9530/1545/7476/335/5155/11235/8766/5063/7429/3640/1947/498/3273/3849/8754/27302/6869/8503/54566/6899/26585/3037/14/5587/56999/284/1969/5290/7046/207/7040/8879/634/4233/5581/9314/4780/3688/7114/186/301/23380/83481/29775/6239/64218/1803/5585/1906/3911/8823/23332/2658/5586/65979/56413/6672/4163/91/2249/57142/10982/27286/183/5979/2822/10163/3036/8874/5048/3725/5728/285/25865/889/9475/54345/10013/2039/387/3728/5308/2624/8692/9448/6781/3815/3690/10000/659/25/23473/10519/85360/2335/7076/3673/9839/2324/5170/9464/57111/7291/4215/9270/4846/3670/4204/6915/397/5872/2260/7145/6662/7857/5607/57669/64321/60626/6667/5168/23129/9647/2719/1910/23411/6405/64081/4070/7026/6546/90/5286/10014/7057/54828/23499/3611/23189/350/26060/6385/8929/23328/3315/5175/4763/7424/25959/4921/2013/1960/2252/22846/4017/7010/2752/28984/94/9922/3373/306/3791/51564/375056/7474/6776/1942/5025/3964/3675/25960/84159/1235/5797/2246/10016/7042/1793/23122/3397/4208/9353/8829/7048/5176/2241/79899/2247/5468/1012/57608/55198/6469/5793/58495/9037/79812/10769/4254/4856/2191/51157/7481/5764/10512/90355/388/8817/6678/90627/4223/9590/3357/6863/51466/1634/652/2066/2625
## GO:0002704 10859/3575/3162/11314/10225/5788/30009/6375/409/3965/6318/1378/613/2213/3135/3134/729230/3805/8832/5272/725/684/3718/3598/3133/2302/5777/722/634/50943/383/56940/4092/1398/2294/9984/3440/3077/3456/5532/29/100507436/604/10039
## GO:0042220 890/1789/6870/3351/3066/1812/3359/1020/9456/1788/8772/1785/1814/3326/1141/6531/3309/5309/1813/2185/4988/7074/4193/1816/2475/5020/5999/6529/4986/1815/3356/1392/1268/6609/9455/10014/6622/7337/5021/23284/1393/3176/27092/18
## GO:0032481 4321/6772/51311/8767/3654/5336/3148/5435/64135/3329/81030/3659/23586/5440/26191/6850/79132/7097/10622/5591/1147/3428/5437/3663/89870/9533/4615/661/2547/4361/5970/1660/3665/10621/7099/4791/5781/10084/27297/55703/51728/2033/7520/3661/10623/5434/4790/1654/29110/148022/51428/8780/51284/7098/55718/29072/5441/10211/1499/57506/1387/6778/9208/26137
## GO:0060291 114/5641/1812/10288/6285/7143/2048/348/7305/5594/2932/6780/6809/7101/91683/134/2043/3710/11170/4900/1813/8878/5621/2185/55607/54413/6616/177/3630/23373/22941/5270/23385/351/4355/2903/135/23237/27020/5728/2695/25/1385/4204/10636/6810/5649/1392/6543/10858/22871/6622/107/27065/4763/4776/5590/6844/26045/4311/10769/5764/4915/1524
## GO:1900182 983/5347/51512/1894/22948/3458/908/10576/7545/999/142/8882/5743/5901/7203/10574/3059/5594/10575/1432/6714/80149/51068/6608/10155/2534/10445/10694/3843/7175/7015/3630/9451/2316/5296/207/2147/7040/149628/11143/11315/29775/23435/8841/63928/5663/23607/3728/8692/51366/3976/9531/5580/57506/4088/5295/6794/55696/4804/80279/81603/6469/3952/2737
## GO:0045445 3627/4283/5307/1841/6361/3475/2251/5467/7480/7124/55796/6862/25928/6300/1649/1432/79647/3606/4654/6722/6665/677/8740/3486/4851/5978/3956/2660/50937/25988/26287/26585/4217/3516/7040/2319/3084/9325/3156/694/1655/55662/9573/2323/6382/9750/4154/3670/9794/6909/4656/27231/6662/6934/23236/3611/7881/5925/10521/825/3399/182/2034/4208/6469/10324/6926/3479/652/9547
## GO:0048644 1482/2296/8557/5457/4624/5629/6262/7273/5469/2280/9421/55636/7135/8928/54583/5081/7137/4617/6256/2303/7472/4851/4634/51548/27302/4625/6899/3516/7046/5318/7040/3084/657/4633/79810/4089/7134/4607/27230/104/4092/10277/650/4618/3976/27063/3670/1270/1832/2022/70/6474/4638/6939/2263/7139/8321/2535/23493/1301/7474/1901/7168/84159/7042/57493/1281/23414/7049/4036
## GO:0071158 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/5457/6659/672/1820/23019/835/5371/8091/2765/9125/3398/1017/7029/8851/1026/581/29883/51379/4849/9349/4193/10498/5566/1874/2627/5526/10514/51499/4848/7040/2033/55367/1263/8738/4850/57472/7709/3642/9337/5934/7161/1647/5325/57060/23378/4656/472/81857/7157/28984/4303/1027/4194/5311/7832/10769/2191/4582
## GO:0002209 116372/1812/2558/348/4192/1981/885/1977/7101/7416/7419/4761/64854/41/3358/55515/2033/23542/1803/2898/116/1815/4204/4862/5896/1620/5179/1392/10522/3350/596/4887/4208/27136/2697/7349
## GO:0002711 91543/3329/5788/6375/5027/3569/8772/5817/7186/3134/54440/3593/3592/51571/7855/3606/10892/7292/3553/6885/8809/3133/975/567/50943/114548/7189/8417/3594/51561/22890/5819/3554/81545/5590/2625
## GO:0007431 5080/2253/4781/7124/1956/655/7052/10371/5361/80004/10913/29842/1181/284217/7040/1896/3911/5154/1605/5423/2260/4824/23129/2263/2252/3082/57045/55727/7042/8829/6591/6469/7494/1471/10512/7043
## GO:0016572 890/983/9212/1111/6790/891/1812/1020/7443/5578/8091/9031/8986/5579/1017/3553/9555/2332/6795/10269/3717/5585/26993/10270/7291/472/1025/5580/9730/5562/5595/5563/7320/9252/79858/7786
## GO:0071604 1001/55353/6375/3696/3965/8710/5743/3091/6376/100133941/3596/7305/4052/5345/3326/3694/5045/2627/1386/50943/4089/10159/23607/1385/7057/4345/4088/4602/947/3685/4179/4054/7042/4060/7481/2615
## GO:0001836 4318/2537/8326/2810/578/9141/637/664/79017/10059/409/10105/2395/5329/551/8739/10018/5366/885/5716/10962/2876/581/51025/27141/92609/51499/8996/207/4000/2852/4976/572/3725/26355/8398/25994/598/65018/56947/51024/29108/5071/7157/3082/8743/596/64112/638/1191/3479
## GO:0010518 6352/3702/5031/3208/8698/1956/9373/5724/728/2769/117/7294/9170/2321/5335/552/10316/3265/6401/148/378/27/5156/5330/183/5319/3491/3815/5741/400/5170/2260/4916/3356/5322/2263/2776/627/5590/2261/1902/553/283/2247/2099/4908/5159/1909/4915/185/3357
## GO:0032890 8792/59272/8564/2058/4282/6850/5027/551/10991/885/23204/134/208/5997/522/552/3553/6754/5608/5020/2917/2170/207/5999/383/186/4923/4889/1906/6529/135/183/5663/8398/22925/8600/1579/22930/7057/6622/9611/10550/8660/27347/5025/9900/6812/3952/8864/477/18
## GO:0060688 53335/7422/7124/4192/655/9500/10736/6422/3975/3239/11331/6608/6256/7472/2119/2668/63943/6495/51548/9175/6928/26585/859/7040/186/23213/7849/57142/5154/183/3217/55366/25/2260/6662/6474/5076/4070/2263/5228/1499/2252/3082/7474/7482/55727/6591/6469/2099/367/652
## GO:0090183 4318/8842/6772/4609/5613/2297/8710/7422/7490/100133941/655/9500/10736/3570/3975/6608/8837/10409/2668/5155/6495/10413/6928/26585/7040/186/7849/5154/183/79727/5979/3217/55366/25937/3976/6662/5076/4070/1499/4435/1958/7482/201163/6469/79633/5159/54361/80310/9370/652/2625
## GO:1903749 3002/1869/2810/9141/637/7027/7534/5880/7159/10055/57602/5366/10971/7533/7332/6721/5534/7029/7855/1459/51100/59286/55294/7529/841/10075/5599/7323/9776/2931/79778/27429/7531/8314/572/89781/7161/9520/10425/55823/23368/5533/4836/65018/54741/5562/8626/7157/596/3305/22885
## GO:2000756 1111/28999/3066/6659/9474/672/29117/10856/8986/6688/26155/4842/6418/3553/22976/10664/55124/10269/10891/55011/6598/7040/50943/11143/4089/55209/23558/2624/1487/7291/3976/3670/2648/4297/23411/6879/5562/6622/26053/56848/5595/408/23741/5563/9252/26036/201163/6591/4674/4582/2625
## GO:0071426 55110/9688/10212/56943/11260/7884/9631/4116/6396/23165/55706/6427/9775/29107/23636/5901/4927/79902/10762/8480/11097/26019/4686/3267/9972/81929/29118/1977/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/81608/23511/9887/10898/65109/29890/2733/22916/11338/23279/6426/10921/6429/10250/57187/7175/51362/26097/23225/5976/6432/8021/53371/84271/22794/4928/8888/80145/79228/8086/26993/9883/5903/6209/348995/9984/55746/23293/91746/55781/10482/8189/6830/6431/9295/29072/9939/6430/9877/8106/7248/3087
## GO:0031018 5080/4821/578/6659/3569/50674/3175/3570/2932/3170/3172/6009/6608/4221/5078/654/3651/2627/9480/4825/9451/653/4760/207/2931/1021/572/3642/9575/2695/5170/2696/6662/406/5991/3280/51092/7474/2308/652
## GO:0044060 51083/3814/3623/1394/2778/64111/2661/3553/5781/654/6865/80223/81285/668/9727/51762/186/114897/4089/183/2587/5972/4986/2260/4824/56729/26056/1392/2150/3624/1407/2702/2149/1393/3952/3625/185/6863/7349/114899
## GO:1990090 1869/85377/11151/867/9775/10938/988/6132/382/4914/8936/3309/10094/6456/2889/11021/207/5906/6272/1783/351/23527/23095/5728/1398/1938/10519/1385/5170/2648/57498/2309/9101/9693/7337/3397/11075/6863/9863/4137
## GO:0006479 2146/59336/200424/1789/6634/3006/63976/3008/7468/3009/54496/3276/6839/23028/6628/1786/25940/9545/2641/3007/672/2091/9757/2672/9971/3720/80204/387893/10196/2935/5081/79823/5870/55183/5110/26038/4221/79918/5079/59335/399818/22823/11137/10419/79723/56950/8085/10498/22976/4524/10664/9555/64324/56979/63925/26097/2107/5929/23476/23512/51504/5865/55011/56341/6598/94104/23463/9869/8726/22938/25895/4000/10919/55818/55870/4089/55209/51451/64754/79091/11107/9070/7799/80335/23168/6018/635/54904/9739/2122/30827/79609/80349/51742/55471/6304/4204/79813/9646/7403/84444/54880/84193/6830/10782/8473/11108/4297/23081/23411/29072/54623/546/23067/26053/57343/1499/5926/3275/4602/51111/55251/29104/2145/55693/6419/5252/9836/196483/7832/51409/79624/2625
## GO:0008213 2146/59336/200424/1789/6634/3006/63976/3008/7468/3009/54496/3276/6839/23028/6628/1786/25940/9545/2641/3007/672/2091/9757/2672/9971/3720/80204/387893/10196/2935/5081/79823/5870/55183/5110/26038/4221/79918/5079/59335/399818/22823/11137/10419/79723/56950/8085/10498/22976/4524/10664/9555/64324/56979/63925/26097/2107/5929/23476/23512/51504/5865/55011/56341/6598/94104/23463/9869/8726/22938/25895/4000/10919/55818/55870/4089/55209/51451/64754/79091/11107/9070/7799/80335/23168/6018/635/54904/9739/2122/30827/79609/80349/51742/55471/6304/4204/79813/9646/7403/84444/54880/84193/6830/10782/8473/11108/4297/23081/23411/29072/54623/546/23067/26053/57343/1499/5926/3275/4602/51111/55251/29104/2145/55693/6419/5252/9836/196483/7832/51409/79624/2625
## GO:0051302 9493/79733/259266/5080/9212/9055/146909/10112/9928/990/5347/29127/1894/23594/994/4609/641/4904/9585/2810/2253/10263/2251/2254/7422/23636/3619/79187/6755/7039/26189/4192/10755/5933/55660/675/28964/25909/8202/10807/1814/3552/80179/5473/2124/2069/5008/685/1813/27183/643/79998/5727/51289/51100/64762/3553/6683/998/2250/1069/5155/7564/8766/6795/81606/56287/7040/9727/50838/22933/5581/79848/6886/5586/6840/1263/2249/5154/5289/2103/9903/2248/387/5934/847/10519/30849/9270/5300/7405/55958/4824/64321/598/84440/56155/29072/7423/8502/2263/8626/5228/7424/9371/9738/2252/23503/63971/8452/8678/2246/7042/201163/2247/6469/585/79884/56034/10628/5764/5988/4674/7043/3357/114327/7060/80310
## GO:0000209 11065/27338/51514/6502/3429/5688/5709/5698/63893/51191/5693/5713/55008/5721/5691/867/5685/7336/5690/5684/5686/5695/10213/23198/7128/9111/865/5699/899/5714/26191/55905/5702/9978/5708/83737/5692/10393/5704/55016/7186/580/672/9373/5683/7319/55336/5694/54542/7321/57162/997/8454/127544/7334/5718/5682/5716/55611/26263/5707/9690/25847/7332/64750/64127/5696/8291/80204/25793/26272/55658/7064/5719/5700/5717/7311/23608/6049/144699/10197/51433/23623/9025/5706/54708/5987/5710/55743/3093/55294/64795/26232/55521/54476/27339/996/10075/5689/22954/5720/150726/7323/7328/6233/7316/5701/9491/57154/7324/329/5711/25897/26235/5715/51725/331/6477/80176/51343/10193/51619/7174/7314/9861/5705/85363/80196/55284/6047/267/54765/7189/7326/7327/11060/80028/51283/6048/9320/149603/6737/10477/27246/1161/6872/10475/4012/81858/10299/7322/10616/10013/642/22888/149041/64844/54850/23759/9520/23014/10210/26190/64718/8881/10425/80351/51366/27252/10273/26001/23295/8697/23291/79176/4008/81847/8658/5930/4779/23304/5071/54778/2874/23328/54546/7337/26268/26118/29116/1643/1499/2295/8945/6500/29882/7320/8452/81545/596/6468/6478/9666/26145/54941/9810/26234/91694/26249/23194/4734/285231/54551/23327/220972/25893
## GO:0032640 5004/914/8767/10859/1535/2950/2841/64135/3066/23547/5788/7096/9466/2207/706/23586/3929/409/1652/7128/3965/671/929/26191/6504/945/4282/7097/8772/64170/1536/5795/10125/6376/7305/5724/3297/54440/3593/140885/729230/54/6693/384/9971/64127/64771/7855/80149/9261/6363/23643/50856/1660/3586/566/7099/943/5987/5781/3146/10457/5443/3133/5777/4795/23208/177/602/51465/9181/353514/284/3717/11277/50943/4157/27202/58509/961/10564/5196/351/148022/10270/7538/2693/51561/83786/7291/3670/11027/7098/64343/10392/8737/4317/29108/7057/56848/3315/23405/4776/57506/4057/5295/5914/7474/558/947/948/54209/4023/3952/1149/2621/11213/1191/9590/26137/3479/9370/1524
## GO:1903555 5004/914/8767/10859/1535/3458/2950/2841/64135/942/3066/23547/5788/7096/9466/2207/706/23586/3929/409/1652/7128/3965/671/929/26191/6504/945/4282/7097/8772/64170/1536/5795/10125/6376/7305/5724/3297/54440/3593/140885/729230/54/6693/384/9971/64127/64771/101/7855/80149/9261/6363/23643/50856/1660/3586/566/7099/943/5987/5781/10457/5443/3133/5777/4795/23208/177/602/51465/9181/353514/284/3717/11277/50943/4157/27202/58509/961/10564/5196/351/148022/10270/7538/2693/51561/83786/7291/3670/11027/7098/10392/8737/4317/29108/7057/3315/23405/4776/57506/4057/5295/5914/7474/558/947/948/54209/4023/3952/1149/2621/11213/1191/9590/26137/3479/9370/1524
## GO:0007098 4751/983/3832/1111/6790/5347/9768/10733/54801/6491/284403/899/6566/117178/23636/7517/26973/672/55835/675/5119/9793/64793/55722/79648/79959/3834/10432/55559/4957/4869/7514/1017/402/22809/55968/23354/55125/51510/50855/1069/4591/25978/8409/9662/11190/2801/57787/22994/9525/51199/57132/26005/10015/79441/9475/152185/22995/1647/4682/55755/11127/8850/4659/2648/7405/23032/137886/7516/9696/2242/1639/1070/56890/27243/1107/1499/80254/9371/9738/55142/23177/9851/85459/54820/9639/5311/5108/54875/585/79884/10769
## GO:0034113 3695/1824/3932/914/7412/10288/3689/5788/246/7124/912/1525/655/2651/140885/23114/64065/2243/2266/3687/3586/3676/3553/335/177/4897/65125/5318/960/3678/2244/9314/4155/3688/1829/965/961/8174/5598/3557/3728/3690/1832/5607/7070/4345/10211/8631/29119/3685/55742/3679/4680/9370
## GO:0046635 8767/4860/864/3458/942/5788/916/6375/100/3549/940/5588/3965/9308/10808/865/10148/6850/3071/54440/3593/8651/729230/3592/941/3606/6363/10892/7292/11126/7535/3707/1604/3133/8943/975/3142/51043/50943/114548/301/3566/3594/387/51561/8546/9655/5914/4602/5590/7048/6469/7704/2737
## GO:0016571 2146/59336/200424/1789/3006/63976/3008/7468/3009/54496/3276/6839/23028/1786/2641/3007/672/2091/9757/2672/9971/3720/387893/5081/55183/26038/4221/79918/5079/59335/22823/11137/10419/79723/56950/8085/10498/22976/4524/10664/9555/64324/56979/63925/26097/5929/23476/23512/55011/56341/6598/94104/9869/8726/22938/4000/10919/55818/55870/4089/55209/64754/11107/9070/7799/80335/23168/6018/54904/9739/2122/30827/80349/51742/6304/4204/79813/9646/7403/84444/54880/84193/6830/10782/8473/11108/4297/23081/23411/29072/54623/546/23067/26053/57343/1499/5926/3275/4602/51111/2145/55693/6419/5252/2625
## GO:0051346 27074/332/9232/4171/4102/4318/7980/26472/2537/221692/3001/5365/1475/6590/6317/5266/336/341/5973/2810/9088/10507/8530/2597/5271/274/3697/5806/5447/409/1469/9806/1476/939/10105/3434/51377/7422/6059/27344/6318/60385/23076/7124/5329/345/1378/1410/5743/284352/551/25816/3071/27290/2280/4504/5054/9734/10049/10959/2932/3428/1032/22853/51291/259/57718/23143/23204/50848/10816/3933/54583/8178/6714/26998/6690/5272/51400/6197/9049/402/5514/2779/5275/154796/5927/5997/684/2873/2876/7077/4133/65264/80316/58529/5511/4842/51025/8837/8740/6418/5858/55795/325/7448/5147/27328/6195/7137/27329/10842/9097/5962/64780/51129/261726/5062/55125/1447/2168/4193/51035/7014/10199/63935/51176/10653/9530/5045/3265/3843/335/1676/1740/3698/10542/7429/50859/9491/90199/5018/1474/79886/58189/51499/55011/331/51657/23645/8996/64062/11261/10047/8301/65125/207/960/54866/5894/80196/23307/9314/56882/1741/5504/10565/11315/8826/1285/5524/8725/54475/6272/9709/6692/4249/7013/7531/10776/351/1654/23523/80034/22900/135/6093/11153/5598/7009/51050/334/93974/9749/116/718/4331/9475/10935/5037/81566/25/63892/636/79609/7076/3958/22925/10421/27018/4846/2771/8195/23504/1266/1893/56925/55031/5896/7035/1800/6295/3700/5607/10188/10160/2029/5076/2719/23411/9104/399/7057/54828/8434/6622/4642/7139/2/2874/56848/1992/26952/1718/63898/7157/5269/408/55105/3476/4057/3699/57082/3082/1470/10253/831/10406/9858/5590/1472/6478/4804/11211/4018/9814/7248/9162/11005/5799/4803/10252/7042/6694/9353/9665/54843/3953/7078/5627/727/1293/2281/80760/6695/358/10879/585/51232/4671/6653/5502/23677/1294/2621/5764/1471/5350/3551/3730/58503/10788/5104/1473/1408/7021
## GO:0031111 3925/22919/26586/2288/4133/10300/4281/79929/58526/1859/9181/10382/23332/6904/10013/10519/2258/6622/50810/146057/4131/25876/324/23122/11075/25999/89795/24139/89927/57551/27124
## GO:0038128 9542/5801/2886/1956/1950/6654/5578/1839/6714/2885/2069/4145/685/3320/5290/3084/8895/5782/2064/8065/2549/10273/6464/2065/26469/11140/55914/5295/5753/4653/2066
## GO:0097479 23413/136/1138/321/3351/1812/10059/80128/1020/10675/8224/5027/1000/10755/28964/1142/5582/1785/2932/23513/1137/6809/1141/9381/91683/5579/6855/8447/5217/8573/4133/1813/8541/5873/9515/54413/594855/8618/7476/2332/9699/6853/8943/488/6804/5028/6616/5030/6854/815/148/5908/5906/26059/1176/9783/8867/320/2901/27253/5868/1861/8775/22999/135/5023/2647/5663/5728/1855/8120/29058/1488/9751/22930/8973/114088/5864/8546/6517/3356/65018/1268/783/22871/6622/5071/107/10947/9581/1499/10497/27445/23396/23621/1129/9024/9162/6843/6844/9900/8825/8448/6812/80208/93664/79953/6857/9863/776
## GO:0030856 5080/2146/4318/1515/8842/6772/54845/55506/1051/3458/5613/2296/1594/2810/1834/1514/865/10626/7480/7124/474/5469/8456/100133941/3596/1041/5054/79977/7498/2932/8202/360/3975/5068/5275/6009/8689/6608/677/5727/3553/7421/654/4838/2668/2302/9555/4825/10413/8643/634/7132/9294/694/55810/2931/81537/9817/2658/9573/7849/6820/6093/572/55966/9475/7538/9575/3890/2301/4610/25937/9839/5583/2116/429/3976/6662/6431/4855/5076/6777/406/5991/3280/8626/3204/118/8609/54806/1499/23493/94/1027/1028/182/4435/5624/7716/595/84162/3397/1003/4926/58495/1513/55273/4488/79633/857/3551/2487/247/6935/7122/6926/6424/9370/652/2625
## GO:0032680 5004/914/8767/10859/1535/2950/2841/64135/3066/23547/5788/7096/9466/2207/706/23586/3929/409/1652/7128/3965/671/929/26191/6504/945/4282/7097/8772/64170/1536/5795/10125/6376/7305/5724/3297/54440/3593/140885/729230/54/6693/384/9971/64127/64771/7855/80149/9261/6363/23643/50856/1660/3586/566/7099/943/5987/5781/10457/5443/3133/5777/4795/23208/177/602/51465/9181/353514/284/3717/11277/50943/4157/27202/58509/961/10564/5196/351/148022/10270/7538/2693/51561/83786/7291/3670/11027/7098/10392/8737/4317/29108/7057/3315/23405/4776/57506/4057/5295/5914/7474/558/947/948/54209/4023/3952/1149/2621/11213/1191/9590/26137/3479/9370/1524
## GO:0002720 91543/10859/2867/9188/2207/6375/23586/3735/4282/8013/3569/7186/3135/3134/54440/3805/1432/64127/7855/3606/10892/7292/51704/11126/972/7099/3553/6885/8809/3133/1653/975/567/8915/3098/114548/7189/148022/8482/2150/5595/57506/3554/7474/5590/948/2625
## GO:0019319 26330/6576/2821/7167/2597/5230/2023/467/5223/5106/4190/2542/10993/468/2805/2641/10165/57001/1642/5771/3607/1468/2820/2027/5236/231/8789/4191/229/8402/226/2806/230/57223/10447/2645/5465/2538/5207/10891/3630/60343/2033/2026/5091/10776/1609/10296/140710/5903/6652/8850/2648/283871/57818/8473/23411/5224/1407/1196/92579/5164/8604/2308/3953/5950/3952/8864/2203/2819/51363/4485/114899/9370/5105
## GO:0010972 983/9212/6790/29980/5688/5709/641/5698/5693/5713/5721/5691/5685/5690/5684/5885/5686/5695/10213/23198/8883/4683/63967/5699/5714/5702/9978/5708/5692/5704/672/5683/5694/8454/5718/5682/8091/5716/5707/60561/5696/5719/5700/5717/27183/60672/10197/5706/5710/5689/5720/5701/9491/5711/5715/9861/5705/51347/55031/472/1112/9344/6500/4303/80279/23194/29997/25949/2273/5988/57551/51149
## GO:0046427 6352/11009/4067/3458/11314/3066/3600/7124/3569/9021/3596/958/3297/3059/3587/3570/3593/8651/3558/3592/2688/231/55620/5008/3606/2056/9244/51379/3562/51094/2185/3586/5617/2534/4851/3565/1545/23568/3588/23529/3717/2147/7132/59067/55801/1437/1436/6774/183/8995/51561/3815/3976/3670/3440/1270/3280/5175/3567/2322/2149/2261/10464/5753/3952/5618/3263/2690/3572/1489/3479/2066
## GO:0048704 6664/50515/2138/4522/257/4188/9775/655/10736/79977/3975/2778/60529/1954/3227/5079/4617/7289/2303/4838/6495/3203/3198/6899/3236/1739/27173/7046/3211/5156/9968/3235/4323/4087/3217/3207/7291/80199/4325/6474/7703/3218/29072/2263/7020/3199/3204/1499/3232/23314/10265/4088/860/3373/1301/3215/1280/3202/3216/4208/3212/5396/7048/9742/57728/116039/55112/2737/1746/7043/6935/652
## GO:0031110 220134/3925/84722/4733/22919/26586/2288/5058/402/8851/4133/10300/4281/79929/79998/6683/157922/58526/59341/5879/1859/9181/859/10382/6188/4233/23332/51199/58497/6904/10013/25/6249/10519/2258/23271/55755/4204/2242/1639/6622/50810/146057/4131/25876/1027/29098/324/10142/23122/11075/25999/89795/4926/24139/23116/89927/57551/27124/4137
## GO:0050868 3902/3620/1493/80380/3559/10859/1051/864/27242/11314/10288/30009/6375/3659/3549/3965/865/26191/83737/2213/54900/23240/3135/4192/5771/54542/11326/57162/8651/3558/6441/6693/384/836/8379/7356/80149/5621/7292/9306/3586/10385/972/3718/3146/10457/2302/5777/7001/3142/11146/2796/1739/1845/7040/51043/634/50943/383/2267/301/2064/5074/135/3566/56940/4092/149041/9750/64844/3958/3440/3077/5573/3456/9655/6385/8654/604/9231/57045/79679/6469/2737/2615/652
## GO:1903533 3753/3208/9141/3689/5880/1020/57214/10055/57602/54471/7332/5058/6721/8851/10456/6845/208/55486/7855/1459/5621/3745/51100/2534/59286/55294/9530/3265/10075/3998/7323/784/9776/3684/11261/2664/2931/79778/27429/2064/8314/93974/2039/89781/9520/10519/288/10425/55823/4924/9270/9531/51763/2040/65018/54741/4641/56947/51024/5562/5071/23409/665/23255/9847/6720/3305/5174/22885
## GO:0009063 3620/6999/875/8564/80150/8942/5471/586/23464/191/3028/10247/10993/2805/56922/2653/7915/7263/51268/4357/3034/5009/4143/84890/4842/4552/1738/189/2806/5625/2744/1610/25828/8659/1743/501/4967/3242/4843/64577/2572/6470/10841/5053/1428/383/23569/1491/2639/1629/493/2875/2747/23498/5092/2731/593/58510/26275/4846/3712/89874/10295/38/23576/883/3081/587/27034/23564/55258/2752/2571/549/2184/2746/3067/3155/55556/2954/4329/5860/275/594/3176/64087/8528/443/1036/36/6898/10157/51380/18
## GO:0072329 1381/5194/80150/51302/10449/23175/215/55289/5467/54363/2108/7915/1374/27349/1666/1056/51102/84830/9942/208/10327/10005/5096/3033/5264/6822/1892/6718/189/10478/4051/2168/2475/5465/23659/51/2109/23600/5828/207/1962/2639/1891/51179/1376/283927/4594/1632/3032/5446/34/6652/7291/51084/1579/3030/3712/6342/51181/26063/56603/23417/1268/3425/2110/55825/30/5825/35/8660/37/224/5191/225/5095/80724/11001/33/1384/2166/8310/56898/1592/3952/3295/10455/3991/32/8309/3667/66002/54677/18/9370
## GO:0007492 4318/4324/2253/3689/22943/3175/2626/79577/8091/3975/3281/53918/2131/3227/3065/677/1284/7448/3676/4838/5083/2627/6657/6928/7040/3678/657/9968/7080/4323/4089/4087/9573/23237/3914/23168/2335/9646/57669/64321/29072/54623/4317/3915/3624/55614/1499/2186/4088/1291/1301/3685/79923/3912/1295/1290/4313/3693/1294/1289/3909/3679/652
## GO:0071706 5004/914/8767/10859/1535/3458/2950/2841/64135/942/3066/23547/5788/7096/9466/2207/706/23586/3929/409/1652/7128/3965/671/929/26191/6504/945/4282/7097/8772/64170/1536/5795/10125/6376/7305/5724/3297/54440/3593/140885/729230/54/6693/384/9971/64127/64771/101/7855/80149/9261/6363/23643/50856/1660/3586/566/7099/943/5987/5781/3146/10457/5443/3133/5777/4795/23208/177/602/51465/9181/353514/8915/284/3717/11277/50943/4157/27202/58509/961/10564/5196/351/148022/10270/7538/2693/51561/83786/7291/3670/11027/7098/64343/10392/8737/4317/29108/7057/56848/3315/23405/4776/57506/4057/5295/5914/7474/558/947/948/54209/4023/3952/1149/2621/11213/1191/9590/26137/3479/9370/1524
## GO:0034109 6352/1824/5341/4067/239/5588/6850/5912/1525/23657/23173/3674/5578/2778/7414/9158/2243/2266/5291/5294/4352/4627/5962/1192/10627/7301/60/5777/928/3956/10076/2316/5318/634/2244/5156/5270/10019/1829/114897/71/10630/2623/7094/2039/3728/3690/1465/1048/288/10077/8600/1832/6814/5580/8613/3611/3315/29119/3043/5592/10398/6812/2621/18/1311
## GO:0048708 6279/5080/4821/712/1812/274/6285/5604/7124/3569/1956/4504/728/25825/5594/7101/3398/2896/9283/2358/2043/3949/6608/4099/7099/3553/5781/4851/27339/3845/177/23529/1600/2147/5270/6886/351/4919/6774/135/1021/10100/5454/5663/8893/10319/7431/650/6900/25/3976/4916/6662/8521/5354/3280/5595/4763/4920/54209/3400/6469/4035/3913/3572/4137
## GO:0097061 7804/5641/10059/8997/1020/9456/2048/348/2213/91752/2047/8898/55737/2049/10097/8851/2043/9762/1072/5621/55607/4076/8976/2534/7074/50944/54413/1627/998/7476/2904/23316/5063/2017/3706/9463/3630/1742/816/10458/4976/23237/5048/5728/1855/10013/23613/102/51104/10152/55619/10611/5649/26052/22871/7337/22891/115703/3643/1942/3675/26037/80823/65981/1501/3480
## GO:0090092 7272/6664/55612/9688/50515/8200/63893/2297/63976/22943/1761/2254/142/2805/1030/23625/655/10755/2280/11171/1460/25928/3175/2626/1785/4052/6422/3326/64750/3309/6868/5046/3547/9350/23144/7311/53918/9719/25805/2348/4221/93/654/4838/4091/4851/28996/2734/6386/9480/2201/6233/7316/57154/9110/3622/27302/331/7471/58533/653/26585/3516/859/7314/7046/22938/7040/2033/657/23213/7080/2658/4089/4087/9573/91/6497/23770/5494/6425/92/3491/4092/51341/650/659/25/25937/858/5170/51592/23592/4756/56937/5300/3077/6711/10273/2022/79176/4015/2719/23411/64081/8516/3280/90/7057/3611/3624/8321/10140/1601/7157/4088/6794/1387/94/2662/1028/4435/7474/23089/57045/64388/8646/10272/3675/8425/26036/11030/27122/7048/753/201163/10370/164656/6469/4681/4926/65997/58495/1149/4488/91851/10468/4856/11117/857/7041/4487/5654/7043/6935/9863/2200/7049/6424/23090/652/4036/8483/54829/7021
## GO:0071772 6664/1482/8200/63893/2297/2253/1749/11173/22943/4624/6262/6862/655/25928/7321/2626/6422/64750/9197/5046/1954/9350/53918/269/93/654/4091/4851/28996/10653/2627/8287/4093/7323/57154/27302/331/8239/7471/9958/26585/3516/657/1655/23213/6692/2658/4089/4087/9573/6497/23770/26508/5494/7554/6425/81792/92/3491/4092/650/659/25/2116/51592/23592/4756/3077/4038/4090/6662/2022/79176/55512/2719/3280/90/64102/3611/8929/8321/10140/4086/5595/860/268/94/4920/1958/7474/57045/1280/64388/8646/10272/3675/3397/9765/164656/4681/4926/11167/55273/4488/91851/4487/658/5654/2200/7049/6424/23090/1311/652/4036/2625/7021
## GO:0071773 6664/1482/8200/63893/2297/2253/1749/11173/22943/4624/6262/6862/655/25928/7321/2626/6422/64750/9197/5046/1954/9350/53918/269/93/654/4091/4851/28996/10653/2627/8287/4093/7323/57154/27302/331/8239/7471/9958/26585/3516/657/1655/23213/6692/2658/4089/4087/9573/6497/23770/26508/5494/7554/6425/81792/92/3491/4092/650/659/25/2116/51592/23592/4756/3077/4038/4090/6662/2022/79176/55512/2719/3280/90/64102/3611/8929/8321/10140/4086/5595/860/268/94/4920/1958/7474/57045/1280/64388/8646/10272/3675/3397/9765/164656/4681/4926/11167/55273/4488/91851/4487/658/5654/2200/7049/6424/23090/1311/652/4036/2625/7021
## GO:0016079 23413/136/1138/321/3351/1812/10059/1020/10675/5027/10755/28964/1142/5582/2932/23513/1137/6809/1141/9381/91683/5579/6855/8447/5217/8573/1813/8541/9515/594855/8618/7476/2332/9699/6853/488/6804/5028/6616/5030/815/148/5908/5906/26059/9783/8867/320/2901/5868/8775/22999/135/5023/5663/1855/1488/9751/22930/8973/114088/5864/3356/1268/783/22871/6622/107/9581/10497/27445/23396/23621/1129/9162/6843/6844/9900/8448/6812/93664/6857/776
## GO:0070849 4176/2296/2950/867/4141/8882/1956/5469/5594/790/8837/677/5335/4691/64762/5781/9530/5151/7175/7429/1845/207/8826/5782/2064/10458/1915/56940/7538/5170/429/51763/6662/5076/6777/5595/8631/678/8678/3397/1277/6591/2066
## GO:0120163 55856/3600/468/7480/26027/4898/1649/4883/4858/6868/10062/6009/7099/93/2303/4851/58488/8809/5608/3516/23228/89/3226/4012/7030/55366/7376/57406/406/7090/5925/9807/6794/3910/5334/3397/201163/216/1149/11096/9370/23090/4857
## GO:0006405 55110/9688/10212/56943/11260/7884/9631/4116/6396/23165/55706/6427/9775/29107/23636/5901/4927/79902/10762/8480/11097/26019/4686/3267/9972/81929/29118/1977/57122/9785/8563/7307/6428/7514/79023/9818/1984/56000/3181/6741/55153/23381/51068/81608/23511/11052/1660/9887/10898/65109/29890/2733/22916/11338/23279/6426/10921/6429/10250/57187/7175/51362/10657/26097/23225/5976/6432/8021/53371/84271/22794/4928/8888/80145/79228/8086/26993/9883/5903/6209/348995/3178/9984/55746/23293/91746/55781/10482/8189/6830/6431/9295/29072/9939/6430/9877/8106/7248/3087
## GO:0031023 4751/983/3832/1111/6790/5347/9768/10733/54801/6491/284403/899/6566/117178/23636/7517/26973/672/55835/675/5119/9793/64793/55722/79648/79959/3834/10432/55559/4957/4869/7514/1017/402/22809/55968/23354/55125/51510/50855/1874/1069/4591/25978/8409/9662/11190/2801/57787/22994/9525/23332/51199/57132/26005/10015/5048/79441/9475/152185/22995/1647/4682/55755/11127/8850/4659/2648/7405/23032/137886/7516/9696/2242/1639/1070/54828/56890/27243/9648/1107/1499/80254/9371/9738/55142/23177/9851/85459/54820/9639/5311/23122/5108/54875/585/79884/10769/79864
## GO:0030178 6663/55612/1482/5688/5709/6496/5698/5693/79412/5713/5721/5691/5685/5690/5684/5686/5695/22943/10213/7088/23198/2254/56033/6789/5699/5714/4188/5702/9978/5708/5692/348/1000/5704/23240/4192/5683/25928/5694/5718/5682/2932/5716/6422/1649/5707/1432/10297/55681/10856/5696/6788/1857/8323/5719/5700/10042/5717/3065/10197/2010/5706/3484/5710/25987/3090/10146/59349/9113/4772/5689/5720/6657/10076/2889/5701/9491/1540/5711/5715/2887/9368/23072/26585/25776/4040/9861/5705/8312/51741/2931/57680/8994/4163/27130/261734/6425/1855/51701/650/25937/27121/1452/3670/80319/80199/4038/5800/6662/64321/2309/6934/2719/1856/5071/8321/80114/54894/166/1601/79960/4776/6794/5204/2735/8452/4920/4435/1958/7474/4300/6478/27303/11197/324/7089/27122/2308/51339/6591/6469/3485/81029/3489/7481/857/4035/2737/2487/63923/27123/3487/6424
## GO:0001662 116372/1812/2558/348/4192/1981/885/1977/7101/7416/7419/4761/64854/41/3358/55515/23542/1803/2898/116/1815/4204/4862/5896/1620/5179/1392/10522/3350/596/4887/4208/27136/2697/7349
## GO:0006296 5984/5111/5982/5424/2072/5983/142/9978/5425/6119/1642/9557/5985/10714/4913/6117/2968/7311/6118/8451/6233/7316/7314/2071/8450/2965/2073/404672/5981/2967/2067/2068/1643/57804/7507
## GO:0008207 133/6770/6715/706/2230/231/10948/6718/654/5978/1585/1181/1645/1646/10170/10891/1583/653/1586/1609/3972/1584/650/8912/6777/10858/9256/1958/8644/2488/27122/2232/174/54361/10202
## GO:0014037 983/57211/10397/79152/1020/1959/56288/208/5970/5453/6647/4665/207/22933/3084/4664/9968/6497/64398/5454/1605/4916/2065/53616/3611/8506/79628/4763/23405/9639/2817/4653/3908/4915/3913
## GO:1904892 6352/11009/3575/4067/3458/11314/3066/5788/7428/3600/4771/1020/64109/7124/3569/9021/3596/958/3297/1950/3059/3587/5771/3570/3593/8651/10603/3558/3592/2688/231/8851/55620/5008/3606/2056/9244/29883/51379/3562/51094/2185/3586/5617/2534/11137/3718/4851/3565/1545/5518/23568/2074/602/3588/23529/4760/1600/3717/9146/2147/7132/59067/10019/55801/1437/4249/1436/6774/183/5979/51701/8995/5515/51561/3815/3976/3670/3440/1270/84444/22876/79893/3456/54741/3280/5175/3567/2322/2149/2261/10464/5753/8835/3952/5618/3263/857/2690/3572/1489/3479/2066/11122
## GO:0006942 1824/59272/1482/274/6329/147/55151/6262/5142/10021/2626/4878/7135/9446/134/5997/156/80149/1113/4842/5294/6331/6336/7137/7140/5566/1756/4634/488/27302/4625/1739/476/148/859/2316/7341/1193/5318/5144/3759/89/4633/1829/487/4607/4092/3728/6781/2258/287/1832/9722/6546/30845/3784/1760/4608/2702/9759/8654/845/6548/29119/29098/1490/5025/10142/844/3270/6717/481/54795/2281/2946/477/857/775/5350/7349
## GO:0014047 8564/8500/5027/551/10755/885/134/6507/8541/8497/552/2744/2917/6804/6512/6616/6511/2912/57030/4923/4889/320/54407/22999/135/6506/8499/22930/5864/6622/4763/10497/9256/6844/27165/6812/4915/6857/6505
## GO:0006310 10635/79605/1111/9319/9156/8438/5888/3149/79725/7037/2237/55010/3838/641/3575/55159/959/55237/3148/4436/79915/8607/3329/79703/7468/2956/25939/5788/9466/83990/5885/30009/7374/2072/10213/79000/940/8914/51377/4683/86/142/23028/3014/5531/84268/7454/7517/6119/10721/79677/672/116138/958/675/5591/22944/7334/5889/3558/83444/328/151987/10432/10097/56159/29893/201254/10856/4841/4796/6832/27301/64421/57820/23137/51444/55183/2547/6117/4361/79035/3836/7292/23626/29844/3586/9025/3508/10445/3980/5897/3146/7014/6118/22976/3565/51176/7247/9400/79913/56979/23514/51548/64919/2521/9985/64110/23347/6929/2021/23529/54891/7040/7520/11277/50943/5892/6932/64710/23054/5893/51750/9907/54386/8741/6421/79728/10933/93973/55135/64210/7528/55317/57599/3981/7011/56154/7518/54537/4798/6847/27030/23064/7515/642636/254394/7486/4292/9984/56893/64859/55218/10538/5896/5423/57379/54780/27343/79447/7516/6830/472/5890/9730/5932/29072/7158/23304/10111/4437/2067/22909/23075/22891/6778/7320/23503/604/55693/1235/10039/55086/27434/51149
## GO:0032409 4318/23630/81831/3755/6347/336/3458/9143/1520/5336/51083/5031/3753/3208/483/10105/3359/9456/2048/6262/4644/5142/1080/2280/5724/88/1612/2257/5923/8811/6769/6446/1785/729230/1394/5444/1814/4878/255057/7533/375346/9446/10368/8291/2745/6786/11331/10063/2056/1813/4842/3799/6327/5621/2185/9472/4988/2902/50944/6271/60/3787/9943/9001/5566/54413/1756/3746/2904/1740/781/2332/10110/784/3747/10891/3630/785/9368/54800/2631/1739/859/11261/2859/57158/7341/1193/5144/23542/4544/5581/1741/6236/823/50488/11315/7114/1742/28954/10369/11060/4923/7225/81/7531/351/6324/2903/57338/30819/5774/2893/5728/8787/3064/10345/2892/4987/8398/63892/288/7291/1815/287/8737/538/10768/5649/9722/9992/2040/65018/1392/5580/4297/9104/2890/783/22871/6622/30845/6588/27091/10681/56848/7881/154/51719/845/6548/2915/2669/3736/27347/54997/7402/29098/596/482/80762/54209/10142/844/6844/79026/5311/4734/2259/4208/3270/6717/481/4747/2281/5243/5468/1393/3306/2946/477/27092/2273/23327/857/23171/5350/55800/2697/2891/150/5348/776/5174
## GO:0002719 10859/336/3162/10225/30009/6375/7124/3134/684/3586/3718/335/284/7040/79004/50943/383/4092/3440/3077/3456/604/7042/11213/7043
## GO:0042759 11332/239/79071/246/5743/4644/242/1544/9444/1559/1565/59344/4048/2879/240/1576/1571/1558/5354/3248/1543/2948/247/4056/2053
## GO:0044062 1312/551/1814/134/1813/552/80763/5020/6869/9368/186/1906/135/183/4868/6781/27131/2771/4879/554/1910/4881/185/6863/10699
## GO:0060561 1482/2296/578/1410/655/7133/10018/23513/6688/7855/581/7421/2303/4851/51176/6928/5519/7132/7849/2249/3491/9464/3714/5076/7042
## GO:0061842 259266/4085/6790/29899/55726/55171/10092/3799/25777/5362/1739/23224/23299/51134/1783/29109/51199/7430/5048/5903/23353/4682/51490/126353/10142
## GO:0032412 4318/23630/81831/3755/6347/3458/1520/5336/51083/5031/3753/3208/483/10105/3359/9456/2048/6262/4644/5142/1080/2280/5724/88/1612/2257/5923/8811/6769/1785/729230/1394/1814/4878/255057/7533/375346/9446/10368/8291/2745/6786/11331/10063/2056/1813/4842/3799/6327/5621/2185/9472/4988/2902/50944/6271/3787/9943/9001/5566/54413/1756/3746/2904/1740/781/2332/784/3747/10891/785/9368/54800/2631/1739/859/11261/2859/57158/7341/1193/5144/23542/4544/5581/1741/6236/823/50488/7114/1742/28954/10369/11060/4923/7225/81/7531/351/6324/2903/57338/30819/5774/2893/5728/8787/3064/10345/2892/4987/8398/63892/288/1815/287/8737/538/10768/5649/9722/9992/2040/65018/1392/9104/2890/783/22871/30845/6588/27091/10681/56848/7881/154/51719/845/6548/2915/2669/3736/27347/54997/7402/29098/482/54209/10142/844/6844/79026/5311/4734/2259/4208/3270/6717/481/4747/2281/5243/1393/3306/2946/477/27092/2273/23327/857/23171/5350/55800/2891/150/5348/776/5174
## GO:0006024 9435/50515/10331/1464/1463/6484/10675/9334/63827/57214/1950/9957/2651/176/79369/55501/10678/6482/2131/2132/8703/9394/9955/3553/9469/8704/2683/79586/5155/54480/9348/8702/64579/10090/1213/3037/284/10057/7040/22856/23563/10402/4790/9331/9953/23169/8534/3036/6382/375790/29940/9672/6483/55454/56548/8509/26229/11046/55790/6383/55512/11041/64131/2719/11285/9956/2262/64132/6385/3373/3073/3340/26035/2817/4060/7358/5549/5159/3339/1462/51363/633/2239/2331/1634/11081/4958/4969
## GO:0001658 4609/6943/2297/2253/2138/7422/7490/9500/10736/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/56998/6662/5076/2719/4070/3611/5228/5087/1499/80000/4435/6299/596/7482/5311/2246/8642/2247/6469/79633/54361/2737/652
## GO:0002562 9156/7037/959/3148/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/5591/3558/64421/55183/7292/3586/9025/5897/3146/22976/3565/51176/64919/6929/23529/7040/50943/6932/8741/3981/54537/4292/9984/10538/5896/5423/57379/6830/472/9730/7158/2067/23075/6778/604/1235/10039
## GO:0016444 9156/7037/959/3148/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/5591/3558/64421/55183/7292/3586/9025/5897/3146/22976/3565/51176/64919/6929/23529/7040/50943/6932/8741/3981/54537/4292/9984/10538/5896/5423/57379/6830/472/9730/7158/2067/23075/6778/604/1235/10039
## GO:0030593 6280/6279/2921/3576/1236/6283/3689/6375/3929/5880/6850/51192/5142/3071/1525/4192/1908/728/57118/719/708/4354/8291/6372/3579/6363/5294/23604/5293/972/7409/3680/6366/1441/5879/5144/27202/683/158747/1906/5319/9750/51561/8729/3958/3672/23396/7042/9353/1907/83700/7060/10451
## GO:0051785 9787/11065/51203/81620/6790/9700/2253/8877/940/1761/23636/7039/1908/1950/1814/3552/2069/1618/23137/11331/685/55968/3553/5155/55124/9555/56979/3630/3192/7040/22933/4041/1906/55719/137886/55023/55512/4762/23236/5925/25970/28984/7320/8452/3643/7474/8678/4926/4488/5159/4487/54361/3479
## GO:0098656 8140/2568/366/57348/6536/6508/6535/1364/55117/6541/11254/117247/9123/23507/55144/6510/22802/81034/1184/6522/6573/2542/57282/7439/9022/6566/9056/9356/10237/10165/23657/1080/54020/5724/1183/79751/2554/1468/1374/7417/10991/54831/6520/7355/23204/2742/1179/55238/6507/8542/1180/9629/2569/208/64849/5997/2562/9057/26285/6539/6521/7416/7419/5621/2348/2561/8001/25932/10478/57084/1192/2570/6569/58526/2475/1181/6534/1188/65010/8671/6519/23539/10861/54896/56301/6533/2566/6512/6568/6511/2563/9635/3766/19/1193/207/284439/846/5349/26266/5999/54716/57030/23155/4923/2741/10630/9962/11095/5565/23169/1376/183/5663/11136/6545/1836/6506/1182/23443/2350/55879/11230/9194/51449/2560/53405/9152/9016/57101/788/11046/8737/31/81539/1186/2555/6509/8501/51422/65012/80131/7057/57835/9497/10550/8660/5563/6561/2915/27347/1185/8604/10559/56172/159963/5243/5172/8864/477/6542/23428/32/9498/55107/1811/6505/5348/2743/80736/4036
## GO:0021953 5080/4821/54149/8543/2253/1749/1812/64211/55079/7473/22943/166614/23287/3251/5457/1020/6659/57282/4781/9334/5629/401/2047/29777/5456/6422/3975/3326/2049/5747/1141/7101/2637/6091/55906/6656/2895/22809/8828/1399/2043/5081/10215/2636/10371/4133/3320/1813/6608/26038/27185/81544/5727/7289/25987/7472/8861/7476/869/55558/63925/2128/64919/81565/4825/3236/7471/4040/7314/10716/5881/10660/8022/6886/2016/7080/1436/51199/27089/6324/1453/3226/9331/5663/104/5048/5728/4852/1398/23017/2624/6259/2736/23334/6900/4983/26468/9839/2560/429/8925/3670/1630/6095/538/1454/2909/79600/3280/2263/23077/9693/4779/3624/8929/8321/1499/26058/23314/6299/7474/4929/3400/9353/8829/57731/6695/6469/3952/7832/1009/9201/79659/4915/2737/1746/4137/2066
## GO:0044783 79733/983/6790/891/51512/5111/1869/55159/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/2765/9125/1017/7029/1026/581/29883/4849/51322/4193/10498/6118/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/26058/51065/28984/1027/595/4194/7832/10769/4582
## GO:0002831 4321/3559/6772/5650/8767/10859/330/9447/51191/1535/57103/3329/4064/3600/7353/23586/7128/3434/4282/79132/10875/56253/83737/63906/5817/60489/6376/10221/4277/5578/3593/25818/3592/6397/200316/708/89870/384/2896/6372/10758/64771/80149/55012/23643/26057/10666/55666/10133/1660/11126/3553/1604/654/3146/54476/10084/55601/4795/3273/329/23208/5225/7001/10269/2074/60343/85363/22933/634/5495/9450/383/6895/26146/58509/54765/7189/7187/29110/10475/22900/9698/3594/79594/8780/51561/7105/10077/79671/23369/11027/10392/5094/5819/59307/29108/2150/23328/5595/26007/57506/10497/4057/81545/948/54941/11005/29997/23005/5654
## GO:0035065 1111/9474/672/29117/10856/8986/6688/26155/4842/6418/3553/22976/10664/55124/10269/10891/55011/6598/7040/50943/11143/4089/55209/23558/2624/1487/7291/3976/3670/2648/4297/23411/6879/6622/26053/56848/5595/408/23741/9252/26036/201163/6591/4674/4582/2625
## GO:1900024 2633/23603/10562/10675/4192/1785/811/708/5747/57091/3987/1399/2243/10109/2266/4241/80005/998/335/5879/55604/3037/2316/5881/2244/6281/6239/10630/1946/81/8874/2039/1398/25/10519/11078/9270/55435/4070/23189/4739/1793/8829/2192/4653/10631
## GO:0001776 9133/3559/4067/608/27240/11151/1880/578/2207/100/7128/3965/4282/5027/3569/8772/3091/5142/8456/3071/23657/6654/54542/10018/5366/4004/10603/3558/729230/836/6372/27040/6868/3579/581/5291/8740/5293/972/4352/3707/3718/3146/6194/9093/10461/8915/207/7040/50943/778/10019/301/5585/10312/8314/149041/6708/25/6498/55619/5896/6777/5532/2322/558/596/4208/1831/83700/4254
## GO:0051781 9493/9212/9928/990/29127/1894/994/4904/9585/2253/2251/2254/7422/23636/6755/7039/26189/4192/10755/1814/3552/5473/2069/5008/685/1813/643/51289/64762/3553/6683/998/2250/5155/7564/6795/81606/56287/7040/50838/22933/5581/79848/6886/5586/6840/2249/5154/2248/387/847/9270/4824/7423/8502/2263/5228/7424/9371/2252/8452/2246/7042/2247/6469/56034/5764/7043/3357/7060/80310
## GO:0032259 2146/59336/91646/639/7298/4609/200424/1789/6634/3006/63976/3008/7468/3009/54496/54815/191/4507/3028/54069/3276/60487/1788/142/6839/23028/6628/57019/1786/25940/1312/51805/54514/9545/2641/2653/63978/3007/7490/672/79977/2091/56978/438/114049/8731/9757/2672/2778/9971/3720/4234/64863/6688/9446/1787/80204/387893/1544/10196/56165/9219/2935/5081/79823/5870/4143/55183/96764/10322/64783/4552/5409/10155/5110/26038/51603/56981/4221/79918/5079/29960/29890/59335/399818/22823/11137/7172/10419/79723/29947/56950/8085/10498/8468/63935/29081/22976/115708/4524/55178/8493/51611/10664/55124/9555/64324/63899/56979/63925/27292/26097/2107/5929/23070/23476/23512/79872/55006/51504/10269/24140/9463/5865/55011/56341/79922/57604/6598/57570/79979/94104/5290/23463/9869/9589/8726/22938/25895/79730/11022/8932/4000/4144/11176/10919/55818/55870/4089/27037/9692/55209/55729/51451/10400/64754/79091/79133/53615/11107/9070/7799/80335/23168/56980/6018/635/4255/54904/64745/9739/2122/65990/10785/30827/79609/80349/29063/51742/55471/56257/25840/51531/9718/6304/23378/4204/79813/51490/9646/7403/92342/84444/54880/84193/27430/6830/117246/130916/10782/8473/79066/79828/23091/11108/4297/4548/23081/23411/29072/54623/85002/546/23067/26053/57343/55199/56339/1499/4837/54737/5926/51093/55798/3275/4602/51111/55251/29104/2145/27232/55693/6419/8623/5252/9836/2353/221078/27136/275/196483/3176/7832/23743/51409/79624/2593/2625
## GO:0008154 6712/5341/29767/3055/1236/7111/11151/81624/119/9087/274/57180/3383/57553/4690/246/10095/10096/7454/8440/5216/23616/3071/3059/6356/88/1496/382/10097/51734/8936/79585/10006/10092/2885/10456/1729/5217/822/7408/57175/11170/10109/10094/199/6710/54942/1072/2185/55607/9873/10093/5962/64780/5987/8976/7456/10178/9948/2475/11344/9530/9113/55761/1440/23242/5063/6366/7429/5879/2017/9463/10787/23191/55604/1739/55243/3717/29766/10810/5581/10565/7114/6369/79778/10677/9026/395/2039/387/4868/2693/6708/11078/10152/8195/9645/2059/6711/55435/2909/5580/5756/11034/4641/51332/29108/10435/2150/23189/5921/118/23075/22921/6709/9353/2934/283/57731/2241/54551/9037/585/85477/51474/24142/6387/10788/50853/80206/51466/25802/2006
## GO:0050805 952/114/3351/1812/10288/7143/9775/5743/8898/2770/2895/134/1813/6722/2185/3745/55607/43/3553/1269/41/54413/1816/869/2332/23208/9463/177/23394/22941/5908/9294/5906/2899/2898/4889/6529/27253/23237/5728/8398/2771/57406/3356/2890/6622/5071/22986/6532/4763/7779/4887/9162/590/6812/10769/9370/57502/4137
## GO:0060415 1482/2296/8557/5457/4624/5629/6262/7273/5469/2280/9421/55636/7135/8928/54583/5081/7137/4617/6256/2303/7472/4851/4634/51548/27302/4625/6899/3516/7046/5318/7040/3084/657/4633/79810/4089/7134/4607/104/4092/10277/650/4618/27063/3670/1832/2022/70/6474/4638/2263/7139/8321/2535/23493/1301/7474/1901/7168/7042/57493/1281/23414/7049/4036
## GO:0007193 8685/114/3351/4543/5996/113/1814/2770/4883/9283/2781/2358/134/2914/5997/346562/1813/2861/109/2773/4988/10419/2847/2917/11245/5028/3352/2918/2316/846/2912/9495/11251/2899/1906/1325/4987/4986/1815/2771/112/3354/3355/60626/2913/115/4985/107/2774/108/6752/3350/1901/4887/1902/5064/1909/5138/2550/4886/9590/150
## GO:1990266 6280/6279/2921/3576/56833/1236/6283/3689/6375/3929/5880/6850/51192/5142/3071/1525/4192/1908/728/57118/719/708/4354/8291/6372/101/3579/6363/5294/5657/23604/5293/972/7409/9948/3680/6366/1441/5879/5144/27202/683/158747/7369/1906/5319/9750/51561/8729/3958/51135/3672/5175/23396/3554/7042/9353/1907/57126/83700/7060/10451
## GO:0042107 3902/51311/10859/1054/1051/4050/336/10643/3162/942/1991/5788/916/7096/10644/3659/940/3929/5588/9111/10148/6850/7124/29949/3569/64170/1053/1536/3556/7305/5724/3578/3593/6441/729230/3623/10333/5606/6693/3552/3662/920/2069/3635/941/10394/5970/3606/9261/3586/566/3665/7099/943/3553/3565/2302/9966/11146/177/602/57336/51465/8915/50943/9314/59067/28951/23139/7189/4790/351/29110/5074/148022/6774/51665/7538/2693/51284/7098/10392/5607/59307/6777/1215/7057/7072/3624/3315/1958/7474/79589/3625/5125/9590/1524/2625
## GO:0046632 26279/639/8767/91543/4860/864/3458/2841/942/1880/2529/30009/100/3659/3549/4063/3965/9308/865/6850/3569/5971/3071/54542/54440/3593/8651/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/7535/3707/3718/3146/51176/8809/2475/8943/64919/3142/602/51043/50943/6932/114548/301/64218/5075/6774/3566/4092/3594/387/149041/6146/51561/25/6304/6095/10538/538/8546/9655/6778/5914/4602/604/596/5590/7048/6469/6097/7704/2737/2625
## GO:0048525 3669/6355/9636/6352/4599/200315/6772/91543/6351/6590/4938/4940/8638/8547/5359/5806/2219/3434/6732/8815/7124/22880/5629/60489/27350/5610/9830/5371/8091/3428/200316/89870/684/80149/3065/10155/7726/325/7023/7706/3609/5987/11074/5978/8724/22954/51193/56829/9869/85363/6733/23435/6737/10107/8812/3725/9218/55337/24138/7538/55196/10318/51763/3440/8519/11043/25833/55223/3456/5071/10206/54737/57506/4057/4153/63901/23272/10410/6041/2934/81603/10581
## GO:0070301 983/2146/1894/3934/5111/51765/3066/8877/664/7295/8807/5831/10280/5603/7128/10105/2395/8013/3569/7226/5536/9131/3297/10131/140885/328/1728/6714/9283/5970/5660/2861/2113/3586/2168/4193/1545/5151/11235/10276/2021/4217/6188/4233/9314/4780/383/11315/10494/7225/5074/5598/10013/59338/23064/25/11179/8737/23135/2309/5076/65018/7703/55512/5580/55139/23411/5562/6778/10365/3082/4602/55364/558/8678/2308/358/51157/1471/388/57332/80310
## GO:0006805 26227/6770/26/2950/64757/6283/1557/5447/2180/570/27284/1573/874/1551/3326/1728/9446/80777/9049/3172/1544/2326/1562/10728/1577/8856/2902/218/54576/1545/116285/1645/54490/1555/1559/2052/1565/1727/54905/405/670/4835/13/8824/5446/8574/2327/2941/314/10249/10/6095/1572/4258/1800/23491/1576/56603/1571/6777/1558/10858/5742/4025/2328/9915/6799/1553/7366/1543/6776/29104/54996/196/1429/590/6817/22977/1592/2948/2946/2944/6097/2690/8639/1036/2947/2053/51380/9
## GO:0045017 26279/5320/80339/336/5336/8525/79888/55697/2171/9791/5359/23175/9600/246/8813/2180/8904/1119/1460/2182/9362/9468/8898/56895/55750/3631/5321/8733/9971/51196/6305/54545/56910/27132/377/3635/2358/55326/5833/2710/3949/949/30814/3636/10062/1459/8776/23533/84720/5291/5130/5294/5277/248/8394/116986/660/43/5293/5305/8395/55500/83394/9489/55294/8818/9663/79837/58488/3358/8694/64419/335/5155/4534/1606/9108/5337/9110/2170/55361/10554/8503/8897/81579/80168/4952/51099/5296/5290/254531/3612/23399/54344/8895/51552/6901/8867/9107/10390/27315/56894/1609/8871/5868/8443/5298/5297/5154/5289/10400/9487/2822/8396/5319/51227/718/1040/51604/5728/10026/824/10555/80055/5288/59338/59339/56623/8398/26751/8760/30849/5338/7376/5281/51763/9896/55224/1103/3356/22876/57664/472/64850/5322/5287/80235/9091/10423/23682/5286/9104/80230/200576/54872/1120/56994/23259/5295/23396/9488/2181/81490/55650/65258/23556/5283/3931/171586/22908/51205/66036/64600/283/2247/4023/6720/23446/2819/5783/23171/8821/3357/27124/5105/80736
## GO:0050810 1717/133/4597/6319/6713/6770/3458/3422/1594/2224/706/5447/3638/79071/7124/5629/348/5901/3157/2264/2672/9971/6721/3837/4800/2194/6647/4598/3553/7421/654/4802/5978/1181/6615/2222/10891/4047/653/476/10613/3156/27120/8720/4790/1609/1081/650/51360/9619/22937/4801/338/31/10654/6667/23411/51141/5562/7108/2516/11160/9453/7536/427/1958/3490/8644/2488/2246/27122/6309/1581/6591/3952/6720/32/54361/23541
## GO:0120034 11135/79734/1236/5898/54849/6624/5880/25940/5027/10801/5216/55835/23580/1785/10807/9148/79647/202018/10109/6363/49856/6722/23300/8976/55704/10178/9001/998/2475/11344/3265/23242/2332/6366/2660/5879/81565/26499/9662/10787/23191/7471/7046/9842/57787/23433/54874/55329/10163/375790/3064/23613/9750/3815/989/80199/116985/538/9696/2909/26052/54828/22871/10435/2150/26053/9759/9738/64787/22873/2823/54869/324/1809/8829/5064/51364/585/7043
## GO:0019320 5214/3101/26330/2821/57103/7167/2584/2529/2597/5230/2023/5223/5208/5315/3099/3607/2027/5211/2528/5236/3795/2582/2592/10690/5313/229/83440/2720/226/230/2526/2645/2523/5213/8277/2026/3098/89/2527/4041/669/572/2524/5224/7157/26007/8604/216/2530
## GO:0031663 6352/6347/8767/3055/3654/4067/4064/923/3929/7128/26191/4282/7124/7097/6376/5724/10221/5594/4792/5578/92140/1432/949/3606/23643/10892/7099/3553/1604/654/4795/7001/8915/207/7040/85363/5581/9450/58509/7189/148022/22900/4846/11027/59307/23328/5595/4057/948
## GO:0032615 3620/51311/8767/1236/10859/4050/3458/959/3329/3394/3659/409/3965/4210/6504/7097/1240/3135/4192/958/3593/54/3663/708/1432/5970/6363/7292/3586/7099/3718/3146/177/353514/5600/23139/7189/961/4790/51561/3670/7098/5580/23236/7057/948/10464/3952/11213
## GO:0048008 65009/867/7422/8013/613/5795/5771/4643/6714/5770/5781/5739/5155/2889/868/9678/9860/9368/3717/9146/8879/5156/8826/5782/25976/5154/9026/5728/90410/59338/25/10636/55512/4015/5286/6622/3092/2155/84159/8829/2241/56034/10628/5159/4035/347/2152/5157/9370
## GO:0034754 1381/3294/133/6770/6715/57016/15/8608/6783/706/6696/50700/1312/5947/5469/1588/3284/2230/438/79644/6121/51144/1109/231/10948/3292/949/59342/6718/51171/654/54576/8694/5978/1585/1181/1545/1645/1646/10170/10891/1583/64577/653/51109/3293/53630/8879/79154/5156/9249/1586/1609/3972/25976/1382/9227/3283/1584/59338/650/8912/8854/220/8630/1576/56603/7276/6777/10858/1889/6716/51478/9256/54884/1543/1958/8644/51170/2488/27122/2232/7923/6817/5950/6469/216/1592/3295/2099/1589/174/54361/8228/10202
## GO:0006984 3576/440/6347/467/3638/4690/468/8440/5771/10018/2932/811/1649/7184/3309/1965/55160/5770/3484/55294/22926/1388/488/9451/23645/83734/51043/10613/4780/55161/9709/8720/54499/51360/57003/22937/51141/11160/7157/7466/7494/10551
## GO:0048538 9133/8543/2304/5604/8772/8456/5591/5594/10018/2049/3720/8379/1399/326/6722/6647/7299/6495/64919/7001/10269/6899/7046/5894/5075/5663/3200/171023/25/9464/5896/9935/22890/472/3280/5595/5087/1499/596/80169/6469/2625
## GO:0060324 1749/22943/5604/29123/5594/55636/79977/64220/6722/5781/5083/6899/7040/2033/8879/5894/5156/4621/6497/25976/59338/6658/5916/8195/22930/8854/6237/220/25836/5595/5914/7474/3213/84159/444/1277/585/4313/83716/4487/7043/7122
## GO:0090199 4318/578/9141/637/664/10059/409/10105/2395/5329/551/8739/10018/5366/5716/10962/2876/581/51025/27141/51499/8996/207/4000/2852/4976/572/26355/8398/25994/598/65018/56947/29108/5071/7157/3082/8743/64112/638/1191/3479
## GO:0120032 11135/79734/5365/1236/5898/4651/23603/26228/3383/54849/6624/5880/25940/9474/5027/10801/7454/7226/688/5216/55835/23580/1785/10807/9148/6792/79647/382/391/5217/202018/10109/6363/49856/6722/7419/54942/55607/5962/23300/8976/55704/10178/9001/998/64422/2475/11344/79598/3265/23242/2332/6366/5337/2660/3273/5879/81565/1540/26499/9662/10787/23191/7471/1969/7046/9842/57787/26051/23433/23224/5868/54874/55329/10163/90410/375790/2039/3064/23613/9750/3815/989/4134/80199/116985/5420/2596/5909/538/23329/8814/9696/2909/5580/26052/4070/79874/8558/54828/22871/10435/2150/26053/23189/55909/9759/9738/64787/22873/2823/54869/324/1809/9353/8829/8100/64284/51626/2241/5064/51364/9742/10324/585/857/5205/7043/51466/4117
## GO:0098693 23413/136/1138/321/3351/1812/10059/1020/10675/1000/9373/10755/28964/1142/5582/2932/1137/5575/1141/5579/6855/8851/5217/8573/1813/9515/54413/594855/7476/2332/5337/6853/488/6804/5028/23208/5030/5865/23191/815/148/5908/5906/57030/9783/6455/8927/320/2901/1609/27253/5868/1861/135/6093/5023/5728/1855/1759/8674/22930/8973/5533/5864/9378/6517/3356/1268/26052/783/22871/5532/6622/107/9581/10497/23621/1129/9024/9162/6843/2259/6812/11069/6857/9863/776
## GO:1901184 4318/2537/5641/867/23636/5329/7039/1956/8440/5795/5149/356/1950/6654/5771/9148/1839/9125/2885/2069/134/55658/8027/6868/685/29924/58513/10254/55294/9001/998/89853/6456/7879/5148/58533/3516/1845/207/9146/634/27246/2852/5782/7251/2064/351/84619/57142/183/5774/5663/8874/9026/374/23624/79643/27131/116985/2060/6464/3672/26469/9655/79628/3092/10253/64285/1796/10252/5753/2241/1012/9052/150/10551
## GO:0045333 983/891/6472/9650/1537/4200/3418/9377/54205/63976/637/664/57017/4726/55847/4704/50/1737/158/29796/7386/3419/5160/2395/8013/4725/4723/3091/10165/2108/7415/7915/1349/4708/2271/4700/3421/10131/54539/1351/5161/1329/3417/4719/2820/4697/4702/4694/1340/1431/6389/4712/1544/4722/4191/4711/1337/7381/4710/7384/1327/9167/1738/3416/6391/4706/11232/3420/9238/4717/51079/1743/4967/4720/8802/79072/4709/1352/4843/4713/10514/5018/2109/60493/10891/80025/1345/4701/29103/5290/4729/11277/23530/4714/6901/4696/11315/89/27089/6390/513/79675/6834/10975/2647/7385/1355/374291/847/6392/79085/4707/4204/863/4698/9016/1350/23479/8801/4695/4705/51103/65018/8803/4724/2110/22868/6622/5162/4776/8604/29997/201163/23410/2819/10873/7349
## GO:0003158 3627/3383/239/60484/9076/7124/7852/5629/8985/9414/4478/1460/7498/50848/2876/57826/7477/3687/2194/25932/5962/3553/93/2303/654/4851/7476/2889/3516/5144/5908/634/8721/3084/7132/4233/26051/9294/694/55810/5906/10630/3911/2658/4089/6093/7430/81792/25865/9475/54345/387/6781/4301/659/2116/23135/2022/64321/4855/5802/7026/90/7082/9693/2150/118/5175/2702/1499/26084/23493/94/3791/3215/182/5624/7716/947/1901/80781/2246/2701/23462/3397/57493/8829/1003/10411/55273/5764/388/5138/90627/3551/2697/6935/2947/7122/652
## GO:0019218 1717/133/4597/6319/6713/6770/336/3458/341/3422/51083/1594/2224/706/5447/3638/79071/7124/5629/348/5901/3157/2264/2672/2784/9971/6721/3837/3949/4800/2194/337/6647/4598/3553/7421/654/4802/54576/5978/1181/335/6615/2222/10891/80025/4047/653/476/10613/3156/27120/8720/4790/1609/183/1081/650/51360/3815/9619/6095/22937/10273/4801/338/31/10654/6777/6667/23411/51141/26119/5562/7108/2516/11160/9453/37/7536/427/1958/3490/8644/33/2488/2246/27122/6309/1581/6591/64788/3952/6720/6097/32/54361/23541/185/2053
## GO:0034767 3627/6373/4283/23630/6347/3458/1520/5336/51083/5031/3757/1812/3753/483/2539/6375/3359/930/5027/2048/6262/57214/6376/3596/1080/1908/5724/88/8811/6769/1785/729230/4878/23204/375346/9002/9446/10368/2745/6786/10063/623/581/4842/3799/5335/9472/6271/6569/9001/54413/1756/3746/781/784/3747/9368/2631/2316/11261/57158/7341/2147/3759/11315/7114/10369/4923/7225/81/2852/3779/183/30819/5663/57165/8787/3064/10345/799/25/288/5170/4986/1815/287/5649/9722/9992/65018/9104/783/6622/30845/7070/3784/154/825/10268/6548/3736/27347/54997/482/2149/54209/10142/844/187/5311/2259/6717/481/5243/3306/7220/2946/27092/5348/5174
## GO:0042417 2643/6870/1812/3689/1644/3251/1312/55737/1814/1141/6531/1813/2861/1610/5153/3684/6620/11315/186/2903/1815/538/7054/6622/5071/3350/1621/9627/4881/4929/7042/4128/18/4129
## GO:0050892 29881/336/8435/57817/9245/5406/9414/6518/1056/64240/50848/2035/3949/949/3658/7421/2168/335/1645/65010/7429/6523/80168/7430/48/6514/3784/5357/2169/948/7357/3952/51474/150
## GO:0090184 8842/4609/2297/8710/7422/7490/100133941/9500/3570/3975/6608/8837/10409/2668/5155/6495/26585/7040/186/7849/5154/183/79727/5979/3217/55366/3976/6662/5076/1958/7482/6469/5159/54361/80310/9370/652/2625
## GO:1901985 6659/672/29117/10856/8986/4842/3553/22976/55124/10891/55011/6598/10524/7040/8536/50943/11143/54386/4089/23558/3976/3670/2648/406/5562/26053/56848/5595/408/5563/85459/9252/6591/10411/4674/57551/4582/2625
## GO:1903146 57103/664/706/10059/3091/3099/57602/6721/10456/25793/7855/1459/7416/10133/55294/57154/2017/10193/11315/2931/27429/23400/93974/10645/79594/10013/3064/9927/23274/54832/7249/65018/5071/11140/7157/55187/665/6720
## GO:0007215 81831/6347/6751/3458/9456/2048/2906/6376/88/1612/5923/729230/10368/2895/8851/2914/2911/5621/2185/3745/4308/4988/2534/7074/2902/50944/54413/2904/1740/2332/2917/10891/2918/54550/54800/1739/2900/2912/23542/1741/823/2916/50488/1742/10369/2899/2898/23385/351/2901/2903/2893/8787/2892/1201/2905/5649/2913/65018/1392/23236/2890/22871/23025/2897/27091/154/2915/4208/4747/1393/27092/2891
## GO:1903902 7153/6352/3838/5479/940/3434/3965/6732/79720/26986/5034/1642/10450/9217/10465/9126/6780/5886/5481/920/5478/27183/29883/972/23633/8468/23367/2332/3956/25978/103/64710/5091/6895/6733/9525/6737/5586/7251/1654/10475/7113/51495/104/9218/858/201626/64848/7155/2040/27243/2494
## GO:0071482 55872/9212/1111/993/4609/5111/8372/6247/92815/578/5424/2072/5603/2792/142/23028/468/5743/23173/1642/23746/54929/1259/4869/10856/5481/9397/1026/5145/26155/2986/208/2779/79823/1965/400410/581/9683/6011/4308/4193/79913/2332/5148/2782/5796/51499/51109/2033/11277/4157/545/2979/7528/10988/6872/6010/2339/1258/2978/8450/8692/842/55031/5429/6295/4836/22890/5475/3000/23411/1407/5158/56339/1643/7157/4776/5295/6794/1387/3373/7508/55364/4734/4311/358/2868/5764/1396/138162/1408/4239
## GO:0006575 79094/26279/445/10797/10549/7298/8875/5320/2643/6472/1719/6535/2730/2950/8424/9791/2304/30001/51022/8876/5359/2539/79017/8884/191/5447/4522/58478/81034/1158/6573/50506/8985/7915/5469/23657/27284/51268/1152/5034/1374/2618/92086/5351/3417/5321/5352/51365/54583/2346/26873/2876/30814/51074/4552/2348/2937/6647/2806/471/5625/4524/60496/2739/8659/501/55748/80025/25974/81579/6528/6470/254531/10162/4780/10841/3029/11315/2356/10840/23474/7038/7849/1160/55217/347735/10400/112399/2938/1497/5319/2940/2879/2687/635/2350/2941/51449/34/10955/51301/10404/4258/1800/53905/441024/1734/883/223/256987/5322/114884/2729/4779/2949/11145/7173/81490/2628/33/114882/57515/2954/64600/56605/6583/1735/1384/2948/1733/2946/2944/23743/3249/2952/2947/54677/2593/2625
## GO:0008380 55110/6627/54845/10212/4904/55544/6634/5435/6631/79650/10907/6632/54496/55131/4116/11168/22827/6636/57819/5440/79074/6732/51755/6637/6626/25804/11051/23450/1994/23028/6628/8458/9991/79833/23076/6427/9775/8882/10713/5433/10492/1477/23210/6629/7490/55796/28960/26986/11157/11171/79084/55660/57805/988/8559/51690/9588/10450/10656/10625/4809/4686/8896/6936/5437/6633/10465/151987/708/10922/22913/9785/8563/7307/27336/4841/6428/2081/9967/6434/5439/3185/51202/5546/10992/79753/11189/3181/1198/4858/51634/51319/5431/83443/51163/96764/10285/51729/5511/6635/4654/64783/81608/5436/1479/5725/1478/27258/80004/1660/9410/10523/55234/56259/54957/5093/10898/65109/27257/10978/29890/55954/8487/54883/22916/79622/11338/10419/54715/6426/9444/1207/23658/10199/10921/1665/10772/50628/10073/6429/79042/5978/10250/7737/3189/9128/57187/27339/10084/5438/5432/51493/10946/25862/9092/10236/10286/51362/2332/51637/11100/1653/3183/5936/10657/8449/26121/27238/11319/9733/5518/2521/10914/10891/6432/51691/9416/64121/57794/1859/3192/79171/8996/2963/10291/3184/51593/79869/22794/9589/24148/22938/10262/79760/2334/9129/4928/22826/8570/84991/58155/1993/23543/11017/6733/58509/1655/80145/10594/5434/23435/6421/79228/26993/51428/3187/7009/8241/23350/60625/10659/9169/9541/285672/23451/5411/51341/9360/10147/8621/51329/5515/3191/10658/23064/22927/8175/56949/11325/6433/23020/58517/10949/4154/3958/3178/10421/9984/1659/24144/6231/6651/8227/55094/8899/22985/91746/5094/23283/10150/8189/8233/80746/5430/6830/6431/55702/202559/4236/79066/23091/22889/7375/11129/54960/55119/55596/23517/9295/9879/23524/9939/23398/3550/4670/7072/51747/5441/22828/220988/1196/11066/56339/11193/27332/10284/9584/29896/51340/10521/6430/5295/2962/9716/55696/8106/7536/676/51585/79026/140890/25949/6625/10181/57396/83989/1195/4857
## GO:0000079 891/1033/1164/993/990/5347/1163/23560/641/1029/51191/8941/2810/1031/9088/995/1019/84722/7128/1030/5629/1956/5716/1032/904/836/6714/56647/1050/8851/1026/25793/6868/896/894/7023/4221/892/60/51654/3843/9113/5155/10527/22924/207/8812/4331/5728/27013/2965/1647/8850/1022/57018/905/7026/5310/11140/28984/1027/1028/324/595/5311/80279/3087/10614/81669/9077
## GO:0042089 3902/51311/10859/1054/1051/4050/336/10643/3162/942/1991/5788/916/7096/10644/3659/940/3929/5588/9111/10148/6850/7124/29949/3569/64170/1053/1536/3556/7305/5724/3578/3593/6441/729230/3623/10333/5606/6693/3552/3662/920/2069/3635/941/10394/5970/3606/9261/3586/566/3665/7099/943/3553/3565/2302/11146/177/602/57336/51465/8915/50943/9314/59067/28951/23139/7189/4790/351/29110/5074/148022/6774/51665/7538/2693/51284/7098/10392/5607/59307/6777/1215/7057/7072/3624/3315/1958/7474/79589/3625/5125/9590/1524/2625
## GO:0031571 79733/983/6790/891/51512/5111/1869/55159/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/6118/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/26058/51065/28984/1027/595/4194/7832/10769/4582
## GO:0044819 79733/983/6790/891/51512/5111/1869/55159/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/6118/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/26058/51065/28984/1027/595/4194/7832/10769/4582
## GO:0055008 1482/2296/8557/5457/4624/5629/6262/7273/5469/2280/9421/55636/7135/8928/54583/7137/6256/2303/7472/4851/4634/51548/27302/4625/3516/7046/5318/7040/3084/657/4633/79810/4089/7134/4607/4092/10277/650/27063/3670/1832/2022/70/2263/7139/23493/1301/7474/1901/7168/7042/57493/23414/7049/4036
## GO:0008211 6770/51083/3291/3290/3284/7533/5978/1585/335/653/476/1586/1609/3283/1584/650/8912/4204/10273/1392/27122/866/1589/54361
## GO:0030325 706/7490/4192/64220/190/335/5156/4087/3642/429/1392/2516/4763/5087/4088/1028/6299/3643/10272/84159/27122/10370/7481/54361
## GO:0051642 259266/4085/6790/29899/55726/55171/3799/25777/5362/1739/23224/23299/51134/1783/29109/51199/7430/5048/5903/23353/4682/51490/126353/10142
## GO:0097581 5365/23603/92154/6624/5880/4690/29780/51177/7454/8440/79902/1785/79647/8936/6714/10006/10092/7414/57175/50649/10109/64083/7410/55704/998/2475/11344/7429/2660/3273/5879/2017/10787/23191/7471/55604/1969/960/10810/3688/23380/6239/10630/10163/8874/2039/3815/3983/6643/29984/5800/538/23647/5168/9459/26053/23189/55909/6642/9759/25970/1901/9353/2241/1012/10451/22885
## GO:0043244 6712/5341/29767/7111/119/664/7124/65094/23616/88/26586/56648/1984/10763/822/10300/6710/55239/4281/1072/79929/5962/6683/9711/9948/58526/11344/59341/7429/2107/5976/10269/55604/9181/29766/23332/10677/10013/2039/6708/23064/10519/11078/2258/56893/2059/6711/7405/23274/10241/11034/51332/2150/50810/6588/154/146057/118/4131/23075/25876/3643/9617/324/444/23122/11075/6709/2934/57731/89795/9037/85477/51474/3480/11213/79443/89927/57551/50853/25802
## GO:0099175 7804/8326/78999/10288/10059/8997/1020/9456/348/1000/2213/23657/3556/91752/55737/6792/10097/54583/2895/8851/8828/1399/2043/58504/9762/1072/5621/55607/9419/4076/2534/7074/54413/1627/7476/869/2904/23316/5063/25978/1607/3706/3630/54434/4897/378/816/10458/4976/23237/5048/5728/23613/2693/102/11141/51104/10152/4038/2596/9378/4916/10611/5913/81926/5649/5789/5802/26052/6405/22871/7337/115703/7474/1942/26037/80823/65981/26045/5764/2045
## GO:0032418 136/4067/3162/11314/867/54849/2207/5880/3965/25940/8013/10125/3596/10814/57102/30817/4878/8832/695/6845/27040/1113/5294/5293/4627/3598/50487/8723/81565/8673/26276/79036/79803/9842/6284/65082/23207/284021/23095/2647/3566/54664/10013/7462/55207/2624/3815/2294/5170/5864/6813/2242/2268/56848/9846/54785/8773/6812
## GO:1903052 6790/5347/1075/7336/5702/9978/7415/5704/55741/1950/10221/9532/10134/55212/2932/5716/8975/26263/5747/5886/1050/8078/5700/6613/23640/2185/27185/5706/7917/55743/55294/4193/4287/2332/5701/57154/64110/859/7341/207/5705/22933/149628/4780/8312/65992/28951/114881/2931/9817/9709/1263/1453/6872/11236/29978/5663/55070/93974/25898/5728/1855/51136/4092/28952/3300/6449/1452/5601/863/26471/8554/10273/1454/9992/9695/2729/9104/9655/5071/1601/54209/9810/29997/90865/10769/5988/857/1191
## GO:0048194 1075/3638/6396/7039/2153/10113/9217/10959/51693/54732/1522/56681/27095/5265/10342/10802/83696/9554/64083/2348/5584/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/9218/374/9632/8729/966/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/375056/10016/1294
## GO:0050771 3475/7473/6696/80128/1020/7143/2048/4504/5747/8851/393/4133/6049/4099/55558/396/4168/1600/2664/1949/57142/5663/5728/23105/387/6259/2258/4974/9423/1630/4038/5800/5802/9706/7070/22902/7474/23111/4804/66008/9353/8829/9037/56920/2045
## GO:0030500 9636/1230/8326/1594/5552/2824/7480/5027/3091/655/2185/93/654/55787/2201/10269/51374/26585/4146/7040/4745/197/657/2623/8074/92/3491/650/5741/659/7291/1893/54880/6662/6546/7020/90/154/4921/4088/490/4057/6779/1901/4256/84059/4208/4077/54795/56172/9365/5764/116039/658/54361/5167/2697/7043/4958/1311/652
## GO:0031670 53335/1535/3162/1594/5024/83990/3600/1030/5027/5743/10518/5469/1536/3297/8805/6422/7184/3170/9971/5292/5251/6722/2348/1591/6647/2534/7421/4193/5028/5030/54434/22938/846/6263/8074/6872/7392/10458/4976/2350/5179/2242/54332/8658/25959/490/8648/5164/3371/5025/5029/54795/1277/6591/5468/4023/3952/7494/2621/5764/10631
## GO:0043507 8792/8767/5871/11184/959/22943/6850/7124/7186/79444/10333/5058/2081/1857/2043/7855/6363/7477/2185/5770/4294/4296/7074/6885/9175/1616/177/2074/4217/10746/6188/5609/23162/7984/7189/5585/1906/221472/51495/4293/79594/51347/11183/29969/51776/9839/8600/23043/10595/8737/9064/1856/8325/23328/8322/4920/7474/4216/11211/7786/57551
## GO:0002821 7037/8767/91543/4436/79915/3329/7468/5788/9466/30009/2207/6375/100/940/5588/7124/5027/3569/4049/2208/8772/5817/7186/958/3134/54440/3593/3558/729230/3592/51571/6556/920/695/55183/941/7855/3606/6363/10666/10892/7292/3553/6885/22976/3565/8809/3133/975/3142/567/23529/7040/50943/114548/301/7189/8741/8417/718/3594/54537/51561/4292/22890/5819/23411/29108/9655/7158/8631/6778/3554/81545/5590/3263/3572/2625
## GO:0048709 5080/6664/4821/6663/4067/27242/2950/3066/1031/664/2840/79152/1445/1020/745/7097/9334/7852/4192/7133/8891/1814/3398/1267/10215/6009/3065/7448/11221/4099/10419/54413/4851/9948/2475/928/4825/1967/3766/8890/7040/3084/10810/9968/7080/8892/2064/23385/9331/10100/79885/8893/5728/7223/6900/7161/1605/5803/429/23500/3280/8506/2068/4763/1499/22891/26011/3400/1902/2934/5468/6469/5764/443/4915/1191/2737/1746
## GO:0032609 3595/9636/80380/51311/914/8767/1236/10859/1054/3702/3329/10225/916/9466/3394/6375/8807/3965/10148/929/26191/7124/4049/8772/5142/10125/54440/3593/140885/3558/729230/3623/3592/51571/7294/6693/51744/708/9971/6556/7356/7855/80149/3606/57824/5621/7292/3586/11126/7099/5987/3553/3146/8809/3265/11119/3113/602/5144/50943/59067/11118/3115/961/10312/3594/51561/25/51284/3670/7098/64343/9173/26525/554/29108/2150/3624/5914/3554/7474/558/79679/90865/2621/2625
## GO:0002828 3620/91543/942/9466/30009/6375/3569/729230/384/64127/3606/7292/972/975/3142/383/114548/301/3566/1893/3440/3456/9655/6778/5914/604/5590/90865/2625
## GO:0034694 1236/5031/15/6422/5732/6363/7292/5020/6366/1646/2782/5030/2796/207/5581/1906/7528/10270/112/338/31/5562/5729/5563/3371/8644/5737/5468/7049
## GO:0060491 11135/79734/5365/1236/5898/4651/23603/26228/3383/54849/6624/5880/25940/9474/5027/10801/7454/7226/688/5216/55835/23580/1785/10807/9148/6792/79647/382/6714/391/5217/202018/10109/6363/49856/6722/7419/54942/55607/5962/23300/8976/55704/10178/9001/998/64422/2475/11344/79598/3265/23242/2332/6366/5337/2660/3273/5879/81565/1540/26499/9662/10787/23191/7471/1969/7046/9842/57787/26051/23433/23224/5868/54874/55329/10163/90410/375790/2039/3064/23613/9750/3815/989/4134/80199/116985/5420/2596/5909/538/23329/8814/9696/2909/5580/26052/4070/79874/8558/54828/22871/10435/2150/26053/23189/55909/9759/9738/64787/22873/2823/54869/324/1809/9353/8829/8100/64284/51626/2241/5064/51364/9742/10324/585/857/5205/7043/51466/4117
## GO:0046634 639/8767/10859/4860/864/3458/11314/942/5788/916/30009/6375/100/3659/3549/940/5588/3965/9308/10808/865/10148/6850/83737/3071/54542/54440/3593/8651/3558/729230/3592/384/3662/941/80149/3606/6363/10892/7292/11126/7535/3707/1604/3718/3146/3133/8943/975/3142/177/51043/50943/114548/301/135/3566/4092/3594/387/149041/51561/3077/8546/9655/5914/4602/604/57045/5590/7048/6469/7704/2737/2625
## GO:0097755 133/2643/136/3162/1812/239/5467/9474/8985/348/1956/5724/4880/134/5997/2876/4842/59342/6647/80005/3630/846/4544/186/2852/3779/135/183/116/624/8398/659/4846/8195/3827/2982/1910/3672/2150/9732/2702/1373/5592/5797/3952/2697/7349/2053
## GO:0002820 10859/3575/5788/9466/30009/6375/64092/246/1378/2213/3135/54542/3134/3558/725/80149/7292/11126/5987/3718/2302/5777/722/51043/634/50943/383/3566/8764/56940/4092/149041/9984/3440/3077/9173/3456/5532/604/10039/90865
## GO:0022602 5806/409/3814/835/836/6714/3309/2069/2661/2492/5798/5608/2660/9510/8879/5156/4889/59338/4327/4846/5066/56729/2309/6777/23411/2516/3624/408/8322/268/6586/8204/7042/9353/2620/3952/2099/174/658/7043/5241
## GO:0045839 991/10403/4085/81620/7272/9212/1111/9319/891/5347/1063/26271/5885/54908/8260/7517/655/25906/3834/8379/84861/7756/55795/56984/54998/7175/10201/51451/51143/55755/472/56155/8658/546/3550/28984/1843/324/10040/146691/652
## GO:2000379 59272/445/1535/3458/2950/3689/3383/575/706/5806/7124/5743/1956/7305/7498/1785/10333/1432/3326/2885/2358/1026/3320/80149/199/2773/2185/5873/6647/7099/3553/2902/2475/5155/3684/10193/207/3717/2147/7040/9314/4780/1401/23530/11315/186/1906/148022/183/4835/55022/1647/2771/8737/9722/2309/23576/5580/9104/4317/7057/2150/6622/9759/23564/7157/4088/10365/7755/3643/3043/8644/948/5025/5311/7048/57126/50507/3952/5159/1191/185/4137
## GO:0006094 26330/6576/2821/7167/2597/5230/2023/467/5223/5106/4190/2542/10993/468/2805/2641/10165/57001/1642/5771/3607/1468/2820/2027/5236/8789/4191/229/8402/226/2806/230/57223/10447/2645/5465/2538/5207/10891/3630/60343/2033/2026/5091/10776/1609/10296/140710/5903/8850/2648/283871/57818/8473/23411/5224/1407/1196/92579/5164/8604/2308/3953/5950/3952/8864/2203/2819/4485/114899/9370/5105
## GO:0032602 6280/6279/8767/136/3574/2950/3162/2867/1991/3929/3965/4210/4282/7124/3569/7097/3091/5610/3570/140885/384/9971/6372/6868/3606/326/199/7292/3586/566/972/7099/3553/22954/59341/177/1969/9314/4155/1436/351/1654/148022/3566/116/27159/79594/51284/7291/7098/9173/5607/59307/11334/29108/9655/2150/57506/55914/1958/7474/54209/727/6591/4023/90865/4035/10631/347/247/114899/9370
## GO:2000177 259266/5080/9355/79801/6663/8326/6496/4067/9289/64211/4771/7422/23028/5629/3091/1000/6376/4192/1950/80237/3975/7101/1522/3398/9283/10763/5309/1813/6608/27185/10653/51286/63925/2889/50937/2316/7040/22933/58155/2016/6692/4673/116/6604/57165/3642/387/2624/2736/7976/5803/429/2771/1495/2309/3611/55679/6532/4763/7424/1499/7157/2735/7474/2308/55198/6469/7832/5764/2737/4036/1524
## GO:0070527 5341/4067/239/5588/6850/5912/23657/23173/3674/5578/2778/7414/9158/2243/2266/5291/5294/4352/4627/1192/10627/7301/60/5777/928/2316/634/2244/5156/5270/10019/114897/71/10630/2623/7094/2039/3690/1465/10077/6814/5580/3611/3315/3043/5592/10398/6812/2621/18/1311
## GO:0032946 952/6352/7037/3559/8767/3574/4860/7412/959/11151/79915/1880/10288/5788/916/6375/100/3600/923/940/5588/3965/10148/4282/4690/912/3569/8772/51293/8440/3071/100133941/3596/7293/958/57162/54440/3593/3558/729230/3592/3109/1141/970/920/1026/23308/3606/2056/6363/199/7292/972/4352/7535/7099/3553/1604/3146/3565/3133/9093/63925/3113/1947/975/6869/177/1435/23529/6188/50943/59067/3115/301/7189/11148/148022/2323/3594/30835/51561/6708/6777/3280/29108/8660/3567/604/596/4179/4208/7048/79679/6469/3485/3952/6863/3572/3479/10451
## GO:0048489 23413/136/1138/321/3351/1812/10059/80128/1020/10675/5027/10755/28964/1142/5582/1785/2932/23513/1137/6809/1141/9381/91683/5579/6855/8447/5217/8573/4133/1813/8541/5873/9515/594855/8618/7476/2332/9699/6853/8943/488/6804/5028/6616/5030/815/148/5908/5906/26059/1176/9783/8867/320/2901/5868/1861/8775/22999/135/5023/2647/5663/1855/8120/29058/1488/9751/22930/8973/114088/5864/8546/6517/3356/65018/1268/783/22871/6622/5071/107/10947/9581/1499/10497/27445/23396/23621/1129/9162/6843/6844/9900/8825/8448/6812/80208/93664/6857/776
## GO:0097480 23413/136/1138/321/3351/1812/10059/80128/1020/10675/5027/10755/28964/1142/5582/1785/2932/23513/1137/6809/1141/9381/91683/5579/6855/8447/5217/8573/4133/1813/8541/5873/9515/594855/8618/7476/2332/9699/6853/8943/488/6804/5028/6616/5030/815/148/5908/5906/26059/1176/9783/8867/320/2901/5868/1861/8775/22999/135/5023/2647/5663/1855/8120/29058/1488/9751/22930/8973/114088/5864/8546/6517/3356/65018/1268/783/22871/6622/5071/107/10947/9581/1499/10497/27445/23396/23621/1129/9162/6843/6844/9900/8825/8448/6812/80208/93664/6857/776
## GO:0006023 9435/50515/10331/1464/1463/6484/10675/9334/63827/57214/1950/9957/2651/176/79369/55501/10678/6482/2131/2132/8703/9394/9955/3553/9469/8704/2683/79586/5155/54480/9348/8702/64579/10090/1213/3037/284/10057/7040/22856/23563/10402/4790/9331/9953/23169/8534/3036/6382/375790/29940/9672/6483/55454/56548/8509/26229/11046/55790/6383/55512/11041/64131/2719/11285/9956/2262/64132/6385/3373/3073/3340/26035/2817/4060/7358/5549/5159/3339/1462/51363/633/2239/2331/1634/11081/4958/4969
## GO:0000082 8318/55388/79733/6241/983/81620/2146/6790/891/4174/4171/1033/9928/993/990/51512/1978/898/23594/4998/9134/4175/4173/10926/6502/6347/7298/4609/5111/26271/51053/1869/1029/1719/55159/8317/5427/23649/4176/5471/586/5557/2810/1031/995/1104/1019/637/5558/4172/11200/11040/10263/7027/4678/3276/6659/1030/8882/54107/1956/81853/6119/1981/8328/1820/23019/5591/997/835/8454/5371/79577/51270/328/1032/2765/8462/2672/9125/1977/23026/29117/3398/1017/7029/3741/1026/25793/2935/6868/11170/6117/581/5426/199/29883/26057/894/7465/8453/1876/51379/4849/4999/10385/5962/4193/10498/6118/10457/5537/5001/1874/8900/29935/6194/59343/5777/8451/7015/10657/9510/11319/6198/23476/25988/51499/4863/4848/815/5422/207/23133/2033/55367/9314/6881/3688/1263/1654/8738/91/4149/2103/1021/4850/57472/57165/4331/5728/8450/9337/5934/8065/1647/989/56257/5000/5325/57060/571/23595/1022/8554/138151/8737/472/23236/902/5932/5310/90/8558/3624/10106/5925/5530/25959/7157/79960/26058/51065/28984/3373/3275/8452/1543/1027/596/10217/595/58190/4194/5311/3400/51339/7832/10769/2273/4582
## GO:0007618 5266/3066/1812/100/6406/4543/551/55585/7067/10876/552/2902/1816/5020/43847/5028/6869/7068/4808/7932/23542/5270/351/5023/3074/92/5728/1268/1910/7054/6532/9759/8648/5021/8528/6863/18
## GO:0061028 3383/9076/7124/9414/4478/50848/57826/7477/2194/5962/3553/7476/2889/5144/5908/7132/26051/9294/5906/6093/7430/9475/54345/4301/2022/5802/7082/9693/2150/118/1499/5624/1003/10411/5138/3551/7122
## GO:0071470 362/706/6513/55144/5743/5971/836/8291/231/2547/8531/2056/677/9990/3954/5602/9943/59341/9181/7520/1654/51562/572/624/79085/10367/6517/4638/80131/6326/5269/51719/825/27347/5311/80303/358
## GO:1902893 5467/4781/3091/688/7490/6597/11006/4775/6721/6688/5970/6722/3586/5617/4091/5155/5465/7015/7040/657/7528/6774/3725/650/2624/6662/7003/4086/9759/7157/4776/2908/4088/4804/7042/2353/652
## GO:2000273 6347/54892/57152/3458/1020/2048/7039/5469/1950/729230/8896/8202/151/9148/10368/152/2069/134/6868/55294/54413/26585/5581/3688/11315/10369/6886/351/6872/8787/51389/3077/5649/65018/154/27092/150
## GO:0016925 53335/9688/64135/9631/2138/23165/55706/23636/5905/1959/4927/79902/10055/10762/10054/8480/11097/205564/9972/81929/57122/54472/79023/9818/5970/6612/6613/23511/10155/23279/4193/59343/7175/54552/6804/23225/10362/8021/53371/9063/7341/7329/4928/11315/8086/405/8535/9883/79594/51588/10363/9189/5903/348995/10210/55746/25950/8554/10401/9759/1499/825/26054/1958/26036/54795
## GO:0022617 4312/4321/4318/1515/4316/5650/5645/4324/1520/1991/1514/6624/3936/8751/3569/2264/9313/5644/5340/101/7077/682/440387/2113/4241/5045/7040/960/823/826/1803/10630/23332/4323/649/3817/824/3818/222663/102/4327/7076/4320/4325/7092/7093/1215/4317/3915/2/10211/4921/4314/23122/4322/1511/164656/4319/1513/11096/4313/2191/1471/4035/5654/7177
## GO:0045913 3973/26330/57103/5449/5031/5208/5210/5027/2641/3091/5724/1950/1642/5771/5366/117/51744/6714/5209/8445/208/4142/51085/57223/2645/5155/5465/5207/5028/10891/3630/3037/207/5581/89/4923/3269/2852/4790/10776/405/2103/572/2822/5903/5741/8850/2648/3356/23411/9104/5562/6622/957/5261/8660/5563/5745/3643/8604/2308/10580/2819/26137/3667/3479
## GO:0030865 9493/29127/1894/5341/1020/7124/3996/3071/811/382/2035/27183/752/9948/59341/7429/1739/23433/2036/10015/6093/7430/7094/5048/9475/112464/2037/5872/22871/23136/5357/3551/30846
## GO:0045070 7153/6352/5479/940/3434/6732/26986/1642/10450/9217/10465/6780/5886/5481/5478/29883/8468/23367/103/64710/6895/6733/5586/1654/10475/51495/104/9218/201626/64848/7155/2040/2494
## GO:2000310 6347/3458/2048/88/1612/5923/729230/2185/4988/2902/54413/2904/1740/10891/1739/23542/1741/823/1742/351/2903/2893/8787/2892/5649/65018/1392/2890/22871/4208/4747/1393/2891
## GO:0038034 3934/2537/3574/5499/7124/8772/6376/10018/3558/2932/3552/836/2139/2534/3553/2668/4170/7015/5518/7001/207/5519/51741/2931/1437/5196/2623/27429/1613/5598/572/5979/842/9531/1630/2260/8737/5607/1495/2309/598/2065/3624/26060/4763/596/3685/1280/2872/64112/219699/6591/8406/4254
## GO:0097192 3934/2537/3574/5499/7124/8772/6376/10018/3558/2932/3552/836/2139/2534/3553/2668/4170/7015/5518/7001/207/5519/51741/2931/1437/5196/2623/27429/1613/5598/572/5979/842/9531/1630/2260/8737/5607/1495/2309/598/2065/3624/26060/4763/596/3685/1280/2872/64112/219699/6591/8406/4254
## GO:0060675 4609/6943/2297/2253/2138/7422/7490/9500/10736/55083/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/56998/6662/5076/2719/4070/3280/3611/5228/5087/1499/80000/4435/6299/596/7482/5311/2246/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0090114 1075/3638/6396/7039/2153/10113/9217/10959/51693/1522/56681/27095/5265/10342/10802/83696/9554/2348/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/9218/374/9632/966/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/375056/10016/1294
## GO:0015698 2568/57348/29127/6508/1051/1364/5031/706/23507/55144/22802/1184/6522/2542/57282/7439/9022/468/9356/1080/54020/5724/1183/55867/2554/1468/7417/54831/2742/6556/1179/760/10786/6507/8542/1180/9629/2569/2562/26285/6521/7416/7419/5621/10568/2561/8001/25932/1192/2570/6569/1207/10316/55129/150160/2475/1181/6098/1188/65010/8671/10861/2566/5030/439/6568/6528/2563/9635/1193/846/5349/55367/26266/363/57030/23155/5593/2741/7038/8074/9376/11095/1836/1182/55879/51449/2560/84975/53405/9016/57101/2260/1186/2555/6509/65012/766/80131/57835/9497/6558/6561/51447/2915/1185/56172/5243/5172/5167/9498/55107/1811/6505/5348/6424/2743/1408
## GO:0006612 64108/85377/3753/3208/3689/1020/6731/57214/29927/5830/6227/6132/54471/6745/56288/5058/6142/3309/6202/6223/8851/134/6845/208/7311/11231/6746/6734/5621/5584/3745/9349/23471/2534/6181/55670/6156/64422/6217/11224/6206/3265/6194/6728/6386/6235/6230/6175/6158/784/6201/6233/6747/6187/3684/6729/6170/6143/6134/6176/11261/23463/6188/2664/6192/51762/10369/6193/6129/6147/6222/6208/6210/6232/2064/6204/1121/6726/6229/6228/9409/29082/6167/6155/6128/6152/6171/6161/6133/6160/6141/2039/4736/9697/6191/6234/6169/6146/6165/6203/6122/6136/6209/10519/288/6727/25873/9270/6164/6231/6205/6135/6168/51763/7095/6157/2040/6138/9344/8504/4641/56947/51024/9045/6159/5824/81854/23255/9847/5174
## GO:0051261 81930/146909/11004/6712/5341/29767/3925/7111/119/57553/9829/23616/9793/88/26586/3796/10763/822/27183/10300/6710/4281/1072/79929/5962/64780/6683/9948/58526/11344/59341/7429/6456/55604/9181/29766/6455/8867/9525/23332/2580/10677/10013/2039/6708/10519/11078/2258/9645/2059/6711/11034/51332/2150/50810/6588/146057/118/4131/23075/25876/324/444/23122/11075/6709/2934/57731/89795/347240/9037/85477/51474/89927/57551/50853/25802
## GO:0010970 9493/24137/7345/80128/117178/3091/10125/22820/3797/79989/8936/6845/5870/4133/3799/10128/25777/7275/1780/6647/55201/5861/6683/9001/7014/998/547/1740/83658/8943/51098/8636/81565/667/8409/11020/57576/8655/10749/3192/3798/3916/7314/2319/23224/6687/1176/26146/23162/22994/23299/22920/6421/320/351/51668/23095/23011/55764/4976/2647/80173/5048/90410/8120/55081/22858/3064/55207/5195/23353/28981/636/23059/11127/1201/9531/3842/6103/55288/8546/9321/403/89941/4130/3315/10947/9638/9371/4131/56912/63971/5813/5590/66008/55686/64792/8100/51626/4747/4744/5108/9742/5874/80208/57728/79659/79443/55112/3800/55638/4137/25893
## GO:0099111 9493/24137/7345/80128/117178/3091/10125/22820/3797/79989/8936/6845/5870/4133/3799/10128/25777/7275/1780/6647/55201/5861/6683/9001/7014/998/547/1740/83658/8943/51098/8636/81565/667/8409/11020/57576/8655/10749/3192/3798/3916/7314/2319/23224/6687/1176/26146/23162/22994/23299/22920/6421/320/351/51668/23095/23011/55764/4976/2647/80173/5048/90410/8120/55081/22858/3064/55207/5195/23353/28981/636/23059/11127/1201/9531/3842/6103/55288/8546/9321/403/89941/4130/3315/10947/9638/9371/4131/56912/63971/5813/5590/66008/55686/64792/8100/51626/4747/4744/5108/9742/5874/80208/57728/79659/79443/55112/3800/55638/4137/25893
## GO:0035272 5080/6663/2296/2253/4781/7124/1956/655/7052/10371/5361/80004/10913/29842/3651/1181/284217/7040/1896/3911/5154/1605/5423/2260/6662/4824/23129/2263/3321/2252/3082/3643/57045/25837/55727/7042/8829/6591/6469/7494/1471/10512/7043/79971
## GO:0050678 5080/4321/6664/6352/1001/54959/6772/6347/4609/9982/5365/8200/79805/5268/4830/864/57152/1535/3148/3162/9420/2810/55840/1749/3549/2138/7128/10247/2254/7422/5467/4781/7480/8013/7124/1030/5629/348/3091/7039/1956/5469/4192/11171/79084/9500/728/675/6356/56005/5967/5591/5578/4893/7498/79577/1232/6422/5068/64127/3851/6091/3164/8291/2896/2069/8828/9788/6868/11331/2876/8573/581/6608/6331/80004/8837/26257/677/2321/9255/8324/11221/4221/5335/3586/5727/3676/1948/5617/5798/1361/3150/7421/55294/7472/654/4838/2683/3146/2475/7476/3265/5155/11235/6657/6495/51098/51548/498/64919/58189/5796/6869/10413/6899/653/1739/3037/5587/5828/10765/7046/207/7040/55109/634/1386/26051/657/27202/51146/383/83481/6239/6369/55801/23213/2658/2064/4163/405/57142/57599/6774/55764/1021/572/7051/93974/80173/10818/3725/5728/25865/4853/889/55081/7538/2301/2693/650/2624/374/3690/10000/659/858/2324/5170/7291/3670/1893/26471/8854/60485/2260/538/26277/6662/7857/4824/5607/1750/6431/6934/5076/6667/2719/1910/23411/64081/4070/7026/3280/2263/9104/7057/8626/687/3915/350/5925/57343/55679/4763/1499/1960/2252/4088/22846/10522/6794/7010/2752/2735/28984/94/51162/3373/3791/1027/1028/7474/6776/4804/595/3202/64743/187/5797/2246/10016/7042/3912/3397/4208/8829/5176/283/2247/6591/5468/1012/57608/6469/58495/9037/3952/7494/51157/5764/6387/857/116039/6678/3249/5654/2152/2697/185/3357/367/7049/7060/3479/652/2625/5241
## GO:0002824 7037/8767/91543/4436/79915/3329/7468/5788/9466/30009/2207/6375/100/940/5588/7124/5027/3569/4049/2208/8772/5817/7186/958/3134/54440/3593/3558/729230/3592/51571/6556/920/695/55183/941/7855/3606/6363/10666/10892/7292/3553/6885/22976/3565/8809/3133/975/3142/567/23529/7040/50943/114548/301/7189/8741/8417/718/3594/54537/51561/4292/22890/5819/9655/7158/6778/3554/81545/5590/3263/2625
## GO:0001841 9355/6664/133/6491/8543/5898/8092/9585/4522/6789/6659/6768/3091/5216/6862/655/5567/79977/10959/23513/6422/6788/8323/7408/1072/2348/5727/7289/4838/5566/4524/10653/23242/6201/51098/54910/11146/23654/653/8915/7040/7189/9968/6692/65979/6497/317/55764/5754/55081/25/7976/9839/7291/5916/80199/2648/7403/10427/7249/5076/2909/10395/54903/1856/29072/79600/9620/8289/6385/8321/2535/10522/5914/7474/7248/7042/11019/58495/585/652/4036
## GO:2001237 2537/3574/2730/3148/2950/3162/3383/7128/7124/29949/8772/7186/6376/672/356/5054/3552/8795/6714/2243/2876/5970/2266/10197/8837/2534/3553/2668/841/4170/7015/355/7001/2017/10413/653/9181/3655/8996/7046/64114/207/5894/2244/80196/4000/11315/1437/5196/9821/2623/8717/5598/3064/8682/23017/57144/3958/4846/8737/7857/10771/5607/1495/6934/598/55023/2729/90/7057/3082/8743/596/3685/6478/1280/219699/8829/6591/367/3479/652
## GO:0043506 8792/8767/5871/6317/11184/959/2950/22943/26191/6850/7124/3301/7186/79444/10333/6422/5058/2081/1857/2043/7855/6363/7477/2185/11221/5770/4294/4296/7074/6885/10114/9175/1616/171392/177/2074/4217/10746/6188/5609/23162/7984/7189/5585/1906/64853/221472/51495/4293/5470/79594/51347/11183/29969/51776/9839/8600/23043/10595/8737/9064/1856/8325/23328/8322/4920/7474/4216/11211/7786/57551
## GO:0050671 952/6352/7037/3559/8767/3574/4860/7412/959/11151/79915/1880/10288/5788/916/6375/100/3600/923/940/5588/3965/10148/4282/4690/912/3569/8772/51293/8440/3071/100133941/3596/7293/958/57162/54440/3593/3558/729230/3592/3109/1141/970/920/1026/23308/3606/2056/6363/199/7292/972/4352/7535/7099/3553/1604/3146/3565/3133/9093/63925/3113/1947/975/6869/177/23529/6188/50943/59067/3115/301/7189/11148/148022/2323/3594/30835/51561/6708/6777/3280/29108/8660/3567/604/596/4179/4208/7048/79679/6469/3485/3952/6863/3572/3479/10451
## GO:1901657 9582/1503/7083/7378/200315/8833/262/4830/4860/1841/5471/57016/353/1807/55034/51733/10591/1633/100/191/4507/58478/3251/1890/5901/7372/60489/9414/27350/57733/5634/200316/790/55669/221823/4354/1716/51071/56474/272/1109/231/54963/10327/8573/51727/1723/51074/4552/2773/339/10930/3614/28992/132/2079/471/5636/9567/6569/5631/27304/1740/1645/2987/1646/4833/79631/1739/978/9054/23433/10201/10243/4338/51816/8226/4976/10400/387/4907/8574/55347/51715/55/57379/7054/56953/29922/1806/51292/5729/9583/22875/79873/7084/3615/8644/2517/221443/81602/84869/4337/4832/8382
## GO:0032655 3620/51311/8767/1236/10859/4050/3458/959/3329/3394/3659/409/3965/4210/6504/7097/1240/3135/4192/958/3593/54/3663/708/1432/5970/6363/7292/3586/7099/3718/3146/177/353514/5600/23139/7189/961/4790/51561/3670/7098/23236/7057/948/10464/11213
## GO:0050819 7103/239/5329/348/2160/5054/5345/2161/84830/5340/2243/3848/5328/2266/7448/2811/1361/5055/5155/928/3273/2147/634/2244/5156/5270/10019/114897/1906/5154/3818/4846/7035/10544/3827/5580/7057/350/710/5624/947/5592/5627/7056/2191/5327/18
## GO:0045682 2146/10855/1515/1001/55612/54845/55506/2296/51083/1594/2810/1514/865/10626/5467/7480/7124/474/5469/8456/1041/79977/8202/360/5068/5275/8689/6608/677/5727/7421/4665/9555/3849/8643/4664/81537/9817/4089/9573/6820/8717/6093/9475/7538/3890/4610/3858/27121/5583/6431/3280/8626/3204/8609/1499/23493/7474/11005/7042/4926/58495/1513/4488/10468/247/6424/652
## GO:0002888 136/3689/9188/2207/23586/3596/5724/4878/695/6845/3133/1653/8723/3684/8673/383/148022/3566/718/2624/6810/2268/2150/56848/9846/57506/57126/6812
## GO:0006101 4200/3418/50/1737/3419/5160/2271/3421/5161/3417/1431/6389/4191/1738/6391/3420/1743/4967/8802/47/23530/6390/48/6392/8801/8803/5162/10873
## GO:0006294 142/9978/6119/1642/9557/6117/2968/7311/6118/1069/8451/6233/7316/7314/2071/4331/8450/2965/2073/5887/1022/404672/902/2967/2068/1643/7508/7507
## GO:0033006 136/4067/3162/11314/2207/5880/3965/3596/57102/30817/4878/8832/6845/3598/8723/8673/5169/3566/2624/2294/5170/6813/2242/2268/56848/9846/2241/6812
## GO:0045980 54541/57103/3208/706/10105/142/51085/79849/5465/5207/51548/10891/978/29103/89/6774/55022/387/863/4656/26471/201626/6622/9759/7157/8604/201163/2203
## GO:0071480 1535/11200/23028/3014/1410/85453/3297/2002/3309/1026/2547/79073/4193/3265/10269/10413/11011/7520/11277/545/51776/7486/404672/472/598/7157/1958/50507
## GO:0097327 1978/5888/445/440/5111/641/6770/6715/1719/54541/11184/1789/3162/1019/3383/1317/5603/8751/8914/1244/999/9076/9356/11335/1663/1956/672/5724/3297/1977/6142/80149/2056/8837/7023/51507/23367/9400/5155/2332/23514/2660/8754/1616/3184/7040/11277/11143/383/5906/186/1906/23095/4976/64754/3728/2693/102/4924/842/3178/1495/2309/1392/9101/546/5562/56848/1499/2155/1373/2908/51780/1958/2308/5176/4747/358/10974
## GO:0002437 3559/1236/3148/3383/2207/2840/191/923/940/7124/4049/5692/2213/10125/3593/5682/64806/3568/462/695/2876/3579/10800/3586/4988/3146/3133/975/968/3516/11277/11315/4889/116/718/8620/23135/1268/9240/2625
## GO:0048483 6664/7412/2676/6659/401/1959/4914/2637/8828/10371/3196/51052/2668/55558/6495/3142/6899/3211/65979/5979/104/3642/2335/7976/429/9464/1910/6405/3280/7020/89797/8626/8929/4763/1499/3212/8829/1909/2625/7021
## GO:1900274 3702/5031/8698/1956/5724/728/2769/117/7294/9170/2321/5335/552/10316/3265/6401/148/27/5156/5330/183/3815/5741/25/636/2260/4916/3356/2776/627/1902/553/283/2247/2099/4908/5159/1909/4915/3357
## GO:0002429 50852/2633/28823/28424/952/1493/3932/94025/3126/3537/8767/2533/5688/3055/917/5709/28639/1236/5698/727897/919/4651/915/28778/4067/5693/5713/27242/5336/9473/3702/11314/5721/28755/5691/26228/2867/30968/3514/3783/5685/5788/5359/916/259197/5690/5684/3937/5686/2207/5695/100/10213/2219/23198/5588/1445/865/5699/930/5714/26191/4690/6850/10095/5702/8013/10096/5708/1378/7454/5692/9404/64170/3119/5704/5142/2213/5971/54900/5795/3071/79037/1380/5683/7525/728/9402/5594/4277/5694/5771/54542/8891/5567/4585/4893/8454/7334/1147/5718/3984/5682/5716/719/931/8934/11006/7294/5707/10552/3326/7006/10097/5568/3500/5747/3122/973/5058/6714/10006/10092/5696/5579/2885/2212/4332/920/3635/695/4586/1399/27040/3385/5719/10109/5700/3320/5970/80149/581/10094/5717/10666/50856/10892/5291/7410/10197/5621/5335/10385/5079/11126/5293/7535/7409/10093/5706/8517/63916/9844/7917/8976/2534/5710/5062/4584/7456/60/6885/5566/998/10462/3384/3265/5777/5689/4583/5063/5720/11119/3845/9840/3113/784/2889/5701/9491/10454/5879/975/1540/5711/5715/10787/1967/23191/8915/5296/5290/9861/65125/8890/5144/1845/2033/5705/6188/634/5581/50943/5894/51324/778/27202/23228/5906/3115/7189/961/71/640/8892/4790/26253/5074/10458/7430/5663/2822/10163/23180/56940/10616/8893/25865/30835/3120/56667/59338/7462/1398/933/149041/23118/147179/8398/25/5583/5170/3958/5338/11027/51517/5819/23291/5580/2268/4641/7070/26060/2874/1998/5595/1997/8945/2209/57876/8631/163486/6500/5295/6794/1387/596/9252/26999/1793/4208/4589/4588/55198/3551/4582/10451/3117/2625
## GO:0072431 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:1902400 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:0006892 81693/1445/4644/3996/164/10640/10139/1785/79585/9980/6845/10434/64083/10133/26088/9179/23256/10067/23062/23163/8673/6102/3916/8548/51125/51552/6272/10066/10564/2580/55297/28952/54520/288/8729/55062/27252/6711/55435/54832/6810/2060/403/9919/23499/30845/55614/4430/23230/9341/9522/63971/2181/57020/51479/2803/3875/25837/6844/23041/8773/11031/582/6653/9135
## GO:0007601 5080/1001/7399/6496/3859/6017/6247/5459/24/80207/1411/2070/2140/4647/50700/2780/57282/7439/1413/6004/4644/5149/1421/30813/6094/1415/1418/55212/5876/23746/25806/53904/1259/1141/7101/1420/6121/51475/5949/5145/2986/30062/2779/4901/54982/1417/5147/4942/5875/2700/6011/4308/25794/2570/3617/22926/3257/407/6096/7287/1545/57096/7299/1414/7045/10692/9478/3801/5148/1406/5306/57369/7288/6102/2918/50939/51109/11281/4284/1409/3766/5957/10002/778/2916/5961/9249/2741/1419/2979/1121/8403/22999/6010/9227/4976/611/6425/4649/5995/3299/5082/1258/2978/5470/8787/10319/5132/10052/4990/314/11272/10896/8419/54714/3983/4935/8195/53405/1261/6103/5538/3000/5076/6314/4070/7054/51761/60506/783/25769/368/5158/79738/10265/51151/26504/1301/7466/9187/27241/2034/80781/1280/1429/84059/4060/1277/7078/5950/24139/582/585/2202/55812/3913/11081/2743/4693
## GO:0055001 983/891/133/7345/1482/7504/8557/58/274/2539/57817/7422/4624/9456/23028/7480/9474/5629/7273/1525/6261/9734/88/2626/10038/26263/4878/5058/8291/4205/3792/5997/84033/2876/58529/4654/6722/6608/8837/10939/9472/8048/4851/1756/2475/5465/488/10269/27302/3192/148/859/9150/22953/4000/3688/5999/5156/186/4633/79933/2931/71/79810/3856/1906/4089/11214/7528/4621/6497/183/64754/6382/9750/858/51778/27063/5300/9794/4656/11155/287/5573/10611/2022/70/6474/10529/23363/4015/6546/91807/3280/3880/6443/55909/5530/6416/9759/4776/23493/825/845/596/7168/4628/2318/844/4208/1140/26509/8470/10324/6444/5159/80206/6926/3479/9254/10266/4629/1311/652
## GO:0014013 983/2146/6664/4821/6663/712/1869/4067/430/27242/3418/3066/26228/1880/274/706/4771/7124/3569/4049/7097/7852/1000/4192/7133/728/729230/1814/7101/3398/9283/1399/2043/5309/10215/3949/5970/6009/3065/5501/5584/11221/4099/3553/7074/10419/2119/4851/9948/2475/27339/7015/4825/177/1435/23529/1600/2147/7040/22933/5270/2016/6692/23376/351/6497/79727/116/57165/5324/650/6900/7161/1605/5803/1385/5583/3976/9921/4916/23500/3280/4763/23405/1499/29956/22891/4602/26011/54209/5025/3400/5468/6469/5764/443/89927/4035/1746/3572/4036/1524
## GO:0043627 6770/6715/336/1841/3162/51083/1594/1244/10095/1312/2692/100133941/672/411/5594/8805/6422/760/5272/2056/27043/10568/7706/5798/4193/8085/4091/7476/335/2627/7252/2660/5929/2033/4323/23558/3566/9070/4986/1495/1392/54828/3880/10865/2155/7010/5914/4435/595/7048/10370/5468/1393/3485/2099/5159/857/2737/7043/4982/2947/2625
## GO:0033627 10563/6352/55612/4067/916/3383/100/6850/9404/3071/5054/9780/5747/1399/6868/3694/5328/5294/7448/3676/5781/2303/5140/1545/5777/6366/3273/8754/1969/65125/3678/5881/3688/1803/5979/80173/1398/3690/10519/3673/9270/5420/8631/23075/54997/3685/1942/7042/6591/4856/2200/4582/1307
## GO:0014020 9355/133/6491/8543/5898/8092/9585/4522/6768/3091/5216/6862/655/5567/79977/10959/23513/6422/8323/7408/1072/2348/5727/7289/4838/5566/4524/10653/23242/6201/54910/11146/23654/653/8915/7040/7189/9968/6692/65979/6497/317/55764/5754/55081/25/7976/9839/7291/5916/80199/2648/7403/10427/7249/5076/2909/10395/54903/1856/29072/9620/8289/6385/8321/2535/10522/5914/7474/7248/7042/11019/58495/585/652/4036
## GO:0006446 1978/6352/8872/5499/8662/4690/468/7124/8440/1981/5610/6199/55024/4686/54915/3646/4869/51441/1618/64410/7458/1965/4528/6256/22916/5611/9669/2475/23367/7175/2332/27335/1653/5936/10657/27102/6198/9451/23645/1982/8667/1979/8892/1654/253943/1983/8893/8846/22927/10209/400961/10289/54505/3315/56339/9811/55364/1975/8672
## GO:0031146 9928/5688/5709/5698/5693/5713/5721/5691/5685/5690/5684/5686/5695/10213/23198/5699/899/5714/5702/9978/5708/5692/5704/5683/5694/8454/5718/5682/5716/5707/5696/26272/5719/5700/5717/10197/5706/5710/55294/26232/5689/5720/5701/9491/5711/5715/9861/5705/80028/25937/23291/79176/26268/8945/6500/81545/26234/23194/25827
## GO:1900006 2146/7804/54149/10059/8997/348/84079/655/238/3558/5597/9148/6792/10097/2043/6845/84298/55607/4076/7074/50944/1627/2475/7436/23242/23316/2332/5063/56965/3706/23373/23191/653/1523/8536/8826/9820/816/23011/10458/4976/5663/54664/5048/23613/11141/5649/5789/23363/22871/3611/6453/29882/9231/80823/65981/22849/1902/5764
## GO:0014823 983/6770/6715/2730/1535/1789/867/158/5467/7852/6262/3091/3297/5591/26291/5019/522/7384/3033/4142/1284/3586/2806/654/2475/5020/2660/10891/7352/9804/1906/4976/183/5728/285/847/3673/1385/4656/23135/7054/2729/10014/51024/5562/1407/825/5563/210/3952/5764/10631/23371/9370/5105/1408
## GO:0097194 7153/3148/10059/7159/3569/2641/9131/3297/835/836/3837/80149/400410/581/51025/3836/27141/5062/3146/841/1676/1677/2021/8428/662/207/668/22933/6188/80196/5740/840/2852/27429/55113/317/81858/1776/7976/78989/22985/10595/10904/10395/598/8567/839/3005/7157/11132/80279/63924/1149/2191/5988/57551
## GO:0030049 7111/7136/8557/58/4626/4624/4606/7273/88/7135/7170/7137/7140/7171/4635/1756/4703/1674/140465/4634/7125/4625/89/4633/4632/7134/4621/4607/7431/4637/70/7169/4604/7139/7138/7168
## GO:0033003 136/4067/3162/11314/5359/2207/5880/3965/64109/8013/3596/57102/30817/4878/8832/6845/10666/1269/3598/8723/8673/284021/5169/3566/2624/2294/5170/6813/5819/1268/2242/2268/56848/9846/2241/6812
## GO:0033275 7111/7136/8557/58/4626/4624/4606/7273/88/7135/7170/7137/7140/7171/4635/1756/4703/1674/140465/4634/7125/4625/89/4633/4632/7134/4621/4607/7431/4637/70/7169/4604/7139/7138/7168
## GO:1904591 1894/3458/9141/7545/999/8882/5743/5901/3059/5594/1432/80149/6608/10155/3843/7175/2316/5296/7040/7984/23435/8841/63928/5663/3728/8692/51366/9531/5580/57506/4088/5295/55696/6469/3952/2737
## GO:0055002 983/891/7345/1482/7504/8557/58/2539/57817/7422/4624/9456/7480/9474/5629/7273/1525/6261/9734/88/2626/10038/26263/4878/5058/8291/4205/3792/5997/84033/2876/58529/4654/6722/6608/8837/10939/9472/8048/1756/2475/5465/10269/27302/3192/148/859/9150/22953/4000/3688/5999/5156/186/4633/79933/2931/71/79810/3856/1906/4089/11214/7528/4621/6497/183/64754/6382/9750/858/51778/27063/5300/9794/4656/11155/5573/10611/70/6474/10529/23363/4015/6546/91807/3880/6443/55909/5530/6416/9759/23493/825/845/596/7168/4628/2318/844/4208/1140/26509/8470/10324/6444/5159/80206/6926/3479/9254/4629/1311/652
## GO:0007435 5080/2253/4781/7124/1956/655/7052/10371/5361/80004/10913/284217/7040/1896/3911/5154/1605/5423/2260/4824/23129/2263/2252/3082/57045/55727/7042/8829/6591/6469/10512/7043
## GO:0045777 10874/1535/6870/3291/551/153/151/50848/3398/134/522/552/80763/1816/1585/5020/128/80852/6869/148/65125/81285/5144/183/387/8620/1268/554/7026/7168/5021/9607
## GO:2000249 3055/26228/1020/7226/4192/3059/9535/50848/10456/2185/998/3265/1440/396/7040/27/5156/1436/1613/23607/4853/25/397/29984/4916/2242/54828/7010/8829/10411/4908/9723
## GO:0002286 8767/10859/3458/942/1880/3383/30009/3936/4063/3965/54518/3569/10875/2213/5971/4192/54542/3593/3558/3109/6693/6556/3662/941/80149/3606/3683/6363/5734/10892/7292/5873/3718/3146/51176/8809/2475/6194/975/3142/602/51043/634/50943/114548/301/64218/26253/6774/5663/3566/4092/3594/149041/8995/51561/3958/6095/10538/538/9655/2150/7157/6778/5914/4602/604/5590/4179/7248/911/6097/2625
## GO:0002761 1230/4609/10859/4830/1051/4067/3458/5457/7124/8772/9770/7305/3059/10221/5771/2101/5578/3593/3623/11006/6422/2778/760/3398/2124/920/3635/10456/677/51208/325/972/3665/7099/55294/3565/51176/2475/841/8451/171392/3605/9398/1435/6988/7040/634/537/7189/6886/5196/1021/81501/3725/10766/4853/5458/7030/2624/51561/814/1385/8600/3976/56998/7098/22985/9935/8737/7071/2242/4286/3624/3204/5925/10401/4763/1499/4057/5295/3567/5914/4920/54997/54209/10272/2488/2353/4254/2200/9607/284266/9370/10234
## GO:0032648 51311/8767/10859/3148/64135/3659/23586/9111/7097/5971/10622/140885/3663/10293/661/1660/3665/10621/7099/5781/54476/55703/3661/5495/10623/26146/58509/7187/1654/29110/7528/10475/148022/8780/5966/51284/79671/7098/5802/29108/10211/57506/26137
## GO:0043392 4751/9355/6664/3001/1869/3162/3066/2072/23028/4188/8904/51042/4792/9421/8091/3428/1649/64771/6612/6608/7023/55294/51176/171392/7341/3717/7114/2623/6672/6872/5663/51773/3725/22927/9464/56998/8658/23493/23462/6717/8864/4488/4487
## GO:0044273 875/11332/191/1464/215/1463/10675/63827/7263/2588/411/4357/176/92086/4143/84890/4552/2720/23553/189/25828/1491/283927/3074/2687/3423/2799/38/23417/3425/3373/3073/4060/5549/1462/633/2331/1036/1634/51380/11081/4958/4969
## GO:0045840 9787/11065/51203/81620/6790/9700/2253/8877/940/1761/23636/7039/1908/1950/1814/3552/2069/23137/11331/685/55968/3553/5155/9555/3630/3192/7040/4041/1906/55719/137886/55023/55512/4762/5925/25970/28984/8452/3643/8678/4926/5159/3479
## GO:0048546 6664/6663/6943/3549/3091/1956/10736/2626/55212/6422/2049/3398/3239/64220/93/4838/3142/6928/6932/5156/4087/6425/2736/2294/57669/64321/6474/2263/8626/25836/54806/1499/4088/2735/7474/596/51339/6469/58495/7481/2737/652/10551
## GO:0061647 1111/1789/63976/3009/6839/23028/1786/672/3720/55183/5079/59335/79723/55124/51548/55011/6598/9869/4000/10919/55818/55870/4089/55209/11107/2122/51742/4204/8850/79813/10782/4297/23081/23411/546/56848/57343/5926/4602/26036/55693/4674/2625
## GO:1903727 1236/4067/8525/30968/930/9971/5747/6714/64127/2358/6363/7410/2321/2185/116986/3358/5155/6366/2170/975/55626/5587/7040/6901/5156/824/3815/30849/3356/5580/2268/23682/7010/2322/2181/2261/22863/221395/2247/5159/3357/3667/10451
## GO:0043414 2146/59336/91646/4609/200424/1789/6634/3006/63976/3008/7468/3009/54496/54815/3028/54069/3276/60487/1788/142/6839/23028/6628/1786/25940/54514/9545/2641/63978/3007/7490/672/79977/2091/114049/8731/9757/2672/2778/9971/3720/4234/64863/6688/1787/80204/387893/10196/56165/9219/2935/5081/79823/5870/55183/96764/64783/4552/10155/5110/26038/4221/79918/5079/29960/29890/59335/399818/22823/11137/10419/79723/29947/56950/8085/10498/8468/63935/22976/115708/4524/55178/8493/10664/55124/9555/64324/63899/56979/63925/27292/26097/2107/5929/23070/23476/23512/79872/55006/51504/10269/24140/9463/5865/55011/56341/79922/57604/6598/57570/79979/94104/5290/23463/9869/9589/8726/22938/25895/11022/8932/4000/11176/10919/55818/55870/4089/27037/9692/55209/55729/51451/64754/79091/53615/11107/9070/7799/80335/23168/6018/635/4255/54904/9739/2122/10785/30827/79609/80349/29063/51742/55471/56257/51531/6304/4204/79813/9646/7403/84444/54880/84193/6830/117246/130916/10782/8473/79066/79828/23091/11108/4297/23081/23411/29072/54623/546/23067/26053/57343/56339/1499/54737/5926/51093/55798/3275/4602/51111/55251/29104/2145/55693/6419/5252/9836/2353/221078/27136/196483/7832/51409/79624/2625
## GO:0006626 9141/637/706/56993/5880/10440/10469/10531/10452/10055/100287932/57602/55750/9868/10245/25813/26521/7332/26517/6721/9049/10456/25793/55486/7855/3320/1459/51025/10953/26519/51100/23203/59286/55294/9530/293/10075/3998/51079/26520/7323/9776/9804/2931/79778/27429/8314/93974/3308/89781/9520/26515/9927/10425/55823/9531/130916/65018/54332/54741/56947/51024/5562/5071/23409/665/29928/6720/3305/22885
## GO:0042058 4318/2537/867/23636/5329/7039/1956/8440/5795/5149/356/1950/6654/5771/9148/1839/9125/2885/2069/134/55658/8027/6868/685/29924/58513/10254/55294/9001/998/89853/6456/7879/5148/58533/1845/207/9146/634/27246/2852/5782/7251/351/84619/183/5774/5663/8874/9026/374/23624/79643/27131/116985/2060/6464/3672/9655/3092/10253/64285/1796/10252/5753/2241/1012/9052/150/10551
## GO:0061326 8842/6772/4609/6943/2297/2253/8549/2138/7422/7490/100133941/9500/10736/55083/5455/3975/3237/9788/6608/7477/5727/7475/1282/793/2668/6495/10413/6928/7471/1739/26585/7040/7369/186/3911/4089/7849/26508/183/3217/3207/650/55366/25937/3976/56998/6662/38/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/182/4435/6299/596/7482/5311/26249/2246/4208/8642/2247/6469/79633/7481/54361/2737/652/2625/7021
## GO:0010508 8767/3458/3162/664/11040/4210/3091/3099/79156/10018/1612/92140/2932/25793/80149/5291/10133/2773/5305/8517/51100/51322/79837/6885/3565/23367/57154/55626/10524/5587/10346/6829/10533/10558/11315/2931/7957/9517/6737/1263/29110/5049/148022/6093/572/8396/93974/10645/79594/10013/3064/9927/5899/9531/22930/10392/7405/23274/11043/54832/8408/7249/10241/2309/65018/23411/9528/7942/5562/5071/154/11140/5595/10206/5563/55187/6794/665/3791/8678/7248/2308/201163/53373/81603/23677/10769/79443/26353/1634/57535
## GO:0051784 991/10403/4085/81620/7272/9212/1111/9319/891/5347/1063/26271/5885/1761/54908/8260/7517/655/5810/25906/3834/8379/84861/7756/4342/55795/56984/54998/7175/10201/51451/51143/55755/3976/5573/472/56155/8658/546/3550/28984/1843/324/10040/146691/652
## GO:0060350 2296/1749/3549/5447/4880/1305/54928/2778/249/3636/9350/5915/871/654/10498/4665/59341/10269/4209/4664/4323/3207/6781/659/5916/4325/55790/6662/6474/9321/55512/7059/7010/860/5914/5191/1280/2261/4208/4322/7048/1277/8817/658/1311/652
## GO:0006865 8140/6536/59272/7504/4948/6535/8564/55117/6541/11254/117247/55144/6510/9056/8500/4794/5027/551/10165/23657/10755/79751/10991/6520/885/23204/6556/55238/134/6507/5997/9057/6539/94081/8541/8497/552/57084/2744/6534/6519/2917/54896/56301/6533/6804/6512/6616/206358/6511/3766/55089/2912/5999/383/54716/57030/6540/4923/4889/10630/6529/320/6538/54407/26503/22999/135/183/5663/11136/1497/6545/6506/7223/11230/8499/1201/22930/9152/5864/81539/6509/8501/80131/4779/6622/4763/10550/10497/9256/27347/6844/9900/27165/8604/6812/3952/8864/477/6542/23428/4915/6857/6505/18
## GO:0030509 6664/1482/8200/63893/2297/2253/1749/22943/4624/6262/6862/655/25928/7321/2626/6422/64750/9197/5046/1954/9350/53918/269/93/654/4091/4851/28996/8287/4093/7323/57154/27302/331/8239/7471/9958/26585/3516/657/1655/23213/2658/4089/4087/9573/6497/23770/5494/7554/6425/92/3491/4092/650/659/25/2116/51592/23592/4756/3077/4038/4090/2022/79176/55512/2719/3280/90/3611/8321/10140/4086/5595/860/268/94/4920/1958/7474/57045/64388/8646/10272/3675/3397/9765/164656/4681/4926/11167/55273/4488/91851/4487/658/5654/2200/7049/6424/23090/1311/652/4036/7021
## GO:0070665 952/6352/7037/3559/8767/3574/4860/4067/7412/959/11151/79915/1880/10288/5788/916/6375/100/3600/923/940/5588/3965/10148/4282/4690/912/3569/8772/51293/8440/3071/100133941/3596/7293/958/57162/54440/3593/3558/729230/3592/3109/1141/3568/970/920/1026/23308/684/3606/2056/6363/199/7292/972/4352/7535/7099/3553/1604/3146/3565/3133/9093/63925/3113/1947/975/6869/177/1435/23529/6188/50943/59067/3115/301/7189/11148/148022/2323/3594/30835/51561/6708/5741/6777/3280/29108/8660/3567/604/596/4179/4208/7048/79679/6469/3485/3952/4254/6863/3572/3479/10451
## GO:0000715 142/9978/10987/1642/8533/2873/7311/1069/8451/10980/6233/7316/7314/50813/64708/51138/9318/8450/5887/10920/1643/7508
## GO:0035584 6364/7412/5788/6262/7226/5795/1672/10134/375346/5621/566/5566/2039/4935/9455/51024/22859/2915/3791/5737/6403/2281
## GO:0035813 1312/551/1814/134/1813/552/80763/5020/6869/186/1906/135/183/27131/2771/4879/554/1910/4881/185/6863/10699
## GO:0042359 3458/1594/5641/7124/2672/1593/120227/1591/3553/7421/6615/1583/4790/8074/51588/2260/1576/8029/1543/2638/6591/4036
## GO:0043302 136/3689/2207/164/3596/5724/3134/4878/6845/8723/3684/8673/3916/3566/2624/6810/2268/2150/56848/9846/57126/6812
## GO:0098810 1812/3177/2824/1814/1813/4842/2030/2668/6512/5865/3766/11315/6570/1861/6506/1815/6622/5071/6532/8864/477/6571
## GO:0010927 7368/1482/8557/58/3549/4624/7097/5629/7273/88/8898/6691/3267/9519/23114/4205/84033/58529/6722/8837/8048/928/50487/27302/859/3688/5156/4633/79933/71/3856/23187/1906/23332/4089/11214/4621/8443/64398/5048/5990/1605/51778/27063/7110/11155/9896/287/5573/5819/70/10529/23363/91807/3611/8506/200576/3880/2068/23405/23136/825/57082/845/26011/7168/4628/844/23122/4208/2817/10324/5159/80206/4629
## GO:0006977 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/835/5371/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:0071398 891/445/1869/4830/5031/2867/1019/9076/5165/5724/1374/6422/9971/5732/6714/3949/80149/7292/1646/2782/6602/5030/10891/81285/207/7520/5581/1906/10270/55022/1385/112/338/31/5562/4776/5729/1373/3399/5563/3371/8644/5737/5468/5166/4023/7350/6720/3667
## GO:0006775 1381/3458/6017/1594/5641/873/5467/7124/5947/5360/2672/6121/1593/120227/7274/1591/3553/7421/79001/6615/1583/29914/53630/4790/8074/9227/51588/8854/2260/1576/56603/8029/1543/57834/2638/6591/1592/66002/4036
## GO:0010828 28999/8013/8218/26291/1432/2688/4205/208/5584/5781/673/7015/3630/207/4780/23433/5906/79602/10776/718/6506/5458/2695/5741/2719/26060/8660/11132/5295/3643/6041/114882/1389/9847/10580/25999/3667/3479/9370
## GO:0060443 5469/6356/25928/5371/23513/6714/11331/581/5727/7421/2119/1999/1435/859/1969/10765/7040/823/383/1436/2736/374/9423/6909/3488/2263/8945/6778/7474/7048/4488/2099/857/54361/2737/367/6926/652/5241
## GO:0071364 4176/2296/2950/867/4141/8882/1956/5469/790/8837/677/5335/4691/64762/5781/9530/5151/7429/1845/207/8826/5782/2064/10458/1915/56940/7538/5170/51763/6662/5076/6777/8631/678/8678/3397/1277/6591/2066
## GO:0035148 9355/6664/133/6491/8543/5898/8092/9585/8820/8557/2253/4522/7422/6789/6659/6768/4781/5629/3091/5216/6862/655/5567/10018/9421/7052/79977/10959/23513/6422/6788/8323/7408/1072/2348/5727/10913/7475/7289/4838/5566/4851/4524/2668/10653/23242/6495/6201/51098/54910/11146/23654/3198/6928/653/8915/26585/7040/1896/7189/9968/6692/65979/7849/6497/317/55764/5979/5754/55081/25/7976/9839/7291/5916/9270/80199/5420/2648/7403/10427/6662/7249/5076/2909/10395/54903/1856/29072/79600/2263/9620/54828/8289/6385/8321/23405/1499/2535/10522/5914/80184/7474/7248/7042/11019/6469/58495/585/54361/652/4036/2625
## GO:0035019 2001/430/5435/27022/63976/5440/6659/5433/63978/655/10736/5437/6422/55211/7547/7101/6688/5439/5431/6944/5436/2041/5978/8861/7476/5438/5432/8451/6657/10413/6928/3516/81606/5894/9314/1045/5434/4089/4087/7849/6497/6774/3981/79727/22882/2624/3815/6662/7071/5430/5076/3280/8626/5441/5087/607/6299/79923/678/2247/9079
## GO:0043462 23397/483/5359/10105/4624/23234/6262/3301/5216/10294/10049/1785/10598/496/54431/5217/229/2968/51025/1660/3337/7137/7140/4635/4634/26097/5018/3192/29103/7341/846/64215/7114/7134/4607/8775/11345/93974/3300/63892/79609/1266/5864/11080/7169/9104/26092/163590/6588/7139/120526/4057/9024/482/7168/7248/6419/481/3306/6625/5350
## GO:0034968 2146/200424/1789/3006/63976/3008/7468/3009/6839/23028/1786/2641/3007/672/9757/2672/3720/387893/55183/26038/4221/79918/5079/59335/22823/11137/79723/56950/8085/22976/9555/64324/56979/63925/5929/23476/23512/55011/6598/9869/8726/22938/4000/10919/55818/55870/4089/55209/64754/11107/9070/7799/80335/23168/6018/54904/9739/2122/30827/80349/51742/4204/79813/9646/7403/84444/54880/84193/6830/10782/8473/4297/23081/23411/29072/546/23067/26053/57343/1499/5926/4602/51111/2145/55693/6419/5252/2625
## GO:0032024 952/114/5208/6659/5467/3091/1080/25874/8431/9971/8447/5019/65985/51768/3799/65220/7447/3651/2645/2850/5879/4825/5715/3717/846/5581/23435/640/2852/572/27230/2822/2695/8398/3670/2696/6810/6934/1392/5532/408/8660/11132/2752/2746/9501/6717/9854/54795/23410/5950/8938/4035/55638/2697/55107/18/25924
## GO:0043647 3613/23007/5341/3973/5336/5449/5031/5724/8811/8898/117/3631/51744/51196/3635/3636/4142/2185/5335/3707/64768/5331/5332/9108/5028/3706/3705/4952/3612/80271/3633/8867/4923/3269/2852/51477/5330/9562/5728/3628/56623/5741/9651/11163/51763/23236/5333/6622/9807/55190/23262/51447/5745/3632/2247/9677/8821/27124
## GO:0086003 23630/1824/3757/3753/9631/274/6262/5142/2257/2626/3741/134/6327/6331/6323/3762/781/1739/476/859/2316/7341/5318/5144/3759/1829/6324/6640/8913/3728/10052/6781/3764/287/1832/3781/9722/9992/3760/783/3784/2702/6548/29119/6717/3752/54795/477/6444/23327/857/775/23171/5350/55800/2697/776/23704
## GO:0001910 3902/10859/3575/26228/5788/259197/3383/4068/6375/8807/409/3965/6318/5027/56253/8772/5817/2213/10125/3135/164/7305/1773/9437/3134/3593/3592/51571/3805/5272/6372/10666/11126/7409/3133/4843/3684/177/567/3916/634/59067/383/8417/1776/3594/1398/51561/23705/5819/6777/5532/2150/100507436/3952
## GO:0008209 133/6715/6696/5469/1588/3284/79644/1109/949/6718/10170/10891/3293/8879/1586/25976/3283/59338/8630/1576/6716/51170/7923/6469/3295/2099/54361
## GO:0050869 3149/1493/27242/11314/64092/7128/2213/7305/55024/3623/6422/836/3398/4332/3635/695/3586/2302/50943/5585/5074/149041/9984/472/3624/604/10039
## GO:0052312 6352/6351/23076/5702/6882/8091/6597/904/3065/7023/2959/51176/5978/51193/6598/9150/22938/2033/64710/23435/3725/51763/25833/4916/6667/1105/3249
## GO:0060765 6943/409/8284/6597/8896/6422/8928/3065/6049/4838/5245/9063/2033/11315/1655/6872/26508/9612/10013/51341/51389/9604/23411/9611/1601/3275/55128
## GO:0070306 6496/7111/4771/5629/23657/1421/5309/7477/7476/23424/51343/1969/10765/7040/1419/10818/7431/2301/6498/9839/8419/10152/4916/4088/1027/1028/81029
## GO:1900543 54541/57103/3208/706/10105/142/51085/79849/5465/5207/51548/10891/29103/89/6774/55022/387/863/4656/26471/201626/6622/9759/7157/8604/201163/2203
## GO:0045931 10403/9787/11065/51203/983/4085/81620/51514/6790/891/990/1978/9700/898/440/994/26271/8317/9585/5641/2253/8877/1019/940/1761/7480/23636/7517/7039/1956/1981/1908/3297/1950/675/5578/5889/328/1814/3552/1977/3741/2069/5514/9099/6868/23137/11331/685/199/26057/894/55795/55968/5962/3553/5781/4193/5155/7175/8451/8766/9555/7015/9510/6198/23476/26073/3630/3192/1845/207/7040/29766/6886/4041/80174/9525/1906/5586/351/1654/51143/6604/55719/5048/8450/25/23326/56257/4204/2260/137886/4824/6777/55023/5890/55512/4762/23236/3280/6990/8558/8929/5925/5087/25970/28984/3373/8452/1543/3643/8678/595/4212/3306/4926/5159/3479/3169
## GO:1904029 891/1033/1164/993/990/5347/1163/23560/641/1029/51191/8941/2810/1031/9088/995/1019/84722/7128/1030/5629/1956/5716/1032/904/3326/836/6714/56647/1050/8851/1026/25793/6868/896/894/7023/4221/892/60/51654/3843/9113/5155/10527/22924/207/8812/4331/5728/27013/2965/1647/8850/1022/57018/905/7026/5310/11140/28984/1027/1028/324/595/55450/5311/80279/3087/10614/81669/9077
## GO:0007631 10874/59272/2019/7345/5194/51083/4159/6870/3351/29105/1812/80010/79924/5457/5367/3061/8013/5697/4160/2641/8811/1374/885/1141/8484/64220/55585/1813/680/51009/64854/4988/2534/51052/2902/2744/3358/2475/1271/5020/2847/434/5028/6869/3630/9518/10716/3060/4889/351/6774/135/183/4326/4852/2693/4987/5972/9464/4986/56729/7200/1268/6939/7054/51761/4985/3375/26058/181/4887/5021/2353/3953/3952/4915/4886/7349/9607/1602
## GO:0016482 63893/11151/10652/80128/5604/1174/8218/164/84079/4478/5605/5594/10228/8898/10139/55737/8934/22853/10097/79585/6714/9980/7260/55658/5870/4133/3799/5962/26088/5987/9179/8677/64089/11267/23085/10772/547/7813/8724/8411/9559/7879/26000/1213/9043/10749/3798/3916/58533/6811/8675/22836/51552/51361/6272/51272/738/29062/23095/23011/5868/64400/5289/7430/2580/55297/23317/400/55823/8729/51542/27131/6643/55062/79735/27252/9827/9527/55435/54832/2060/25963/55275/1639/9779/200576/30845/5071/4642/55614/23230/9341/5595/6642/9648/1601/2013/1203/23258/9482/27147/51479/9905/29911/8678/23041/54551/6653/8938/55638
## GO:0034250 6352/8872/1019/940/23185/6659/1994/4690/9775/7124/3569/3692/65094/8440/26986/5724/6199/5594/708/54915/3646/836/56648/4869/55226/51441/1618/1984/2043/8664/8531/1660/23034/2185/65109/60558/6256/8439/5611/6156/63935/113251/2475/23367/51654/55124/6610/2332/79072/10657/10605/6198/23178/602/23645/84271/3184/8301/7132/4780/6895/2931/10600/2064/1263/351/1654/253943/5935/55323/79727/27230/8893/3491/9475/387/7431/6191/8398/22927/1938/29063/51335/3673/65110/55245/54505/65018/55512/5580/28958/51334/7057/22868/56848/23107/5595/56339/9811/51065/55364/55005/54103/1942/27303/22849/116496/1153/1191/7349
## GO:0006284 2237/5111/55247/1763/5424/7374/6119/10721/6996/3978/8091/10038/328/5428/4913/6117/5426/23583/3980/6118/10075/4595/8930/51548/2074/6188/4968/7515/7486/55031/5423/27343/4350/23201/7157
## GO:0042769 51514/5984/5111/5982/7398/5424/5983/6659/142/9978/5425/6119/1642/5985/8091/64963/10714/6117/7311/60488/6118/8451/6233/7316/7314/6188/11277/57599/8450/11284/5981/755/4750/7320/57804
## GO:0051985 991/10403/4085/81620/7272/9212/9319/891/5347/9700/1063/26271/5885/54908/8260/7517/25906/8379/84861/7756/4342/55795/56984/7175/51451/51143/23063/55755/472/56155/8658/546/3550/1843/324
## GO:0010507 57103/3162/706/26191/1981/4504/3587/57602/3607/5476/2626/1611/3834/5747/10135/11178/9554/84861/3586/23256/9711/2475/4170/4534/26073/1982/10193/11011/148/5290/2801/10533/207/22933/4233/80317/10670/9682/80772/6048/27429/4864/6774/29082/23118/9637/8925/56893/26471/23274/54922/7249/65018/6622/51520/5768/9638/7157/3082/596/54209/8678/7248/11180/66036/3953/6625/3952/3357
## GO:0006397 891/55110/6627/54845/10212/4904/6634/5435/6631/10907/6632/7884/54496/55131/4116/11168/22827/6636/57819/5440/6732/51755/6637/6626/25804/11051/23450/1994/23028/6628/8458/9991/79833/23076/6427/9775/8882/10713/5433/10492/1477/23210/6629/580/55796/28960/55149/26986/11157/11171/79084/55660/3297/57805/988/8559/51690/9588/10450/8732/22944/10656/4809/4686/79577/8896/6936/5437/11044/904/6633/8731/10465/151987/22984/708/2926/1996/22913/9785/8563/7307/27336/4841/6428/2081/9967/6434/5439/3185/51202/5546/10992/79753/11189/3181/4858/51634/51319/5431/83443/96764/2968/10285/51729/5511/6635/23144/4654/64783/81608/5436/1479/5725/1478/27258/80004/677/11052/1660/9410/10523/339/55234/56259/54957/5093/10930/10898/65109/27257/10978/29890/55954/8487/54883/22916/79622/11338/10419/54715/6426/9444/1207/23658/5566/9238/10921/1665/10772/50628/10073/6429/79042/5978/10250/25888/7737/3189/9128/57187/27339/10084/5438/5432/10946/25862/9092/10236/10286/51362/2332/11100/1653/3183/5936/10657/26097/8449/26121/27238/11319/105/9733/2521/23070/10914/60493/10891/6432/51691/9416/57794/1859/3192/79171/55147/8996/2963/84271/10291/3184/51593/79869/64062/22794/6829/9589/24148/22938/103/10262/79760/2071/2334/9129/4928/22826/8570/84991/58155/1993/23543/11017/6733/58509/1655/80145/10594/5434/23435/6421/79810/79228/25819/26993/29974/351/51428/64506/3187/55421/8241/23350/60625/10659/104/9169/9541/4331/285672/23451/5411/51341/10147/8621/51329/3191/2965/10658/23064/22927/8175/56949/11325/6433/23020/58517/10949/4154/3958/3178/10421/9984/1659/24144/6651/8227/55094/8899/22985/1022/91746/9646/10595/5094/23283/10150/201626/8189/57379/404672/8233/64852/10768/80746/5430/6830/6431/55702/202559/1025/4236/79066/23091/22889/7375/11129/54960/55119/55596/23517/9295/902/9879/54623/23524/9939/23398/5930/2967/3550/4670/7072/5441/220988/2068/11066/56339/11193/10284/9584/29896/51340/10521/6430/9877/2962/9716/55696/8106/7536/676/51585/9810/6041/140890/9924/22849/25949/27254/6625/10181/83989/4857
## GO:0045815 1111/3159/11240/5435/9188/10849/5440/7913/5437/25842/9031/9757/9533/64425/221830/8467/339/60/9014/5253/9555/10514/6602/2074/23133/2033/5434/79101/23558/9013/23451/9015/6908/8850/2648/57379/4641/8289/5441/56848/1499/84172
## GO:0045912 5341/54541/57103/2932/2646/3170/10447/2645/5465/5207/51548/1213/10891/23178/3630/60343/7040/2033/89/2931/10296/6774/140710/863/51763/4656/26471/283871/55512/5071/1353/1407/1196/9759/7157/8604/3953/2203/5167/4485/114899/9370
## GO:0061383 1482/10507/7480/5469/655/2280/6654/55636/6422/8928/54583/6722/4851/2201/9510/27302/653/26585/3516/859/7046/3084/657/22904/10277/387/2022/7059/23493/7010/1901/23462/7042/57493/1277/5950/58495/4488/4313/5364/7049/1101
## GO:0072698 7272/6790/10615/6491/29887/9585/23636/22919/55722/2932/79648/1729/4281/9419/27185/55968/55125/50855/3192/23386/11190/57787/22994/51134/1453/26005/1855/10540/636/51104/11043/137886/81926/4130/146057/9851/324/2804/10464/5108/4926/585
## GO:0009062 5194/10449/23175/215/55289/5467/54363/2108/1374/27349/1666/1056/51102/84830/208/10005/5096/3033/5264/1892/10478/4051/2168/2475/5465/23659/51/2109/23600/5828/207/1962/2639/1891/51179/1376/283927/4594/1632/3032/34/7291/1579/3030/3712/6342/26063/23417/1268/2110/55825/30/5825/35/8660/37/224/5191/225/5095/80724/11001/33/1384/2166/8310/56898/3952/3295/10455/3991/32/8309/3667/66002/54677/9370
## GO:0030316 8792/7037/1230/10859/1051/3458/29887/1880/2207/1943/5457/7124/9770/79705/7305/2101/3593/11006/6422/1432/2778/760/3635/51208/3658/7099/55294/3565/2475/2739/975/171392/3605/1435/1969/6988/7040/3726/537/302/7189/22904/1436/10312/81501/5048/10766/4853/28962/5458/7030/51561/814/1385/8600/7098/9935/7071/9644/2719/4286/9846/10401/4763/1499/4057/5295/8840/54209/10272/2488/9855/2353/2200/9607/284266/10234
## GO:2001243 4102/4318/79915/8876/637/2023/10525/10105/23028/4282/5329/5743/3091/3301/2907/57805/10131/10625/7417/1032/80237/54929/6714/4841/26155/4722/2876/8531/2056/3065/5770/972/4193/3651/6615/22954/51079/3622/3630/51499/9181/8996/754/207/10488/960/4780/11315/8725/9709/27429/1654/4976/5598/7009/54700/624/64844/7178/6880/55031/9529/598/65018/23411/5071/3315/90993/7466/51616/596/6591/57007/7494/6387/1191/4582
## GO:0050953 5080/1001/7399/6496/3859/6017/6247/5459/24/80207/1411/2070/2140/4647/50700/2780/57282/7439/1413/6004/4644/5149/1421/30813/6094/1415/1418/55212/5876/23746/25806/53904/1259/1141/7101/1420/6121/51475/5949/5145/2986/30062/2779/4901/54982/1417/5147/4942/5875/2700/6011/4308/25794/2570/3617/22926/3257/407/6096/7287/1545/57096/7299/1414/7045/10692/9478/3801/5148/1406/5306/57369/7288/6102/2918/50939/51109/11281/4284/1409/3766/5957/10083/10002/778/2916/5961/9249/2741/1419/2979/1121/8403/22999/6010/9227/4976/611/6425/4649/5995/3299/5082/1258/2978/5470/8787/10319/5132/10052/4990/314/11272/10896/8419/54714/3983/4935/8195/53405/1261/6103/5538/25861/3000/5076/6314/4070/7054/51761/60506/783/25769/368/5158/79738/10265/51151/26504/1301/7466/9187/27241/2034/80781/1280/1429/84059/4060/1277/7078/5950/24139/582/585/2202/55812/3913/11081/2743/4693
## GO:0001913 1075/5551/10859/3575/5788/6375/3251/5027/8772/5817/2213/3135/3134/3593/7264/3592/51571/1512/3004/5873/3133/177/567/634/8417/3594/51561/5819/5532/2013/100507436
## GO:0002756 79931/330/929/8772/7321/9641/1147/10333/10010/7311/23643/3665/8517/7099/841/7323/6233/7316/329/7314/3661/5581/7187/29110/148022/7322/23098/7098/8737/22841/3551
## GO:0006409 9688/11260/9631/6396/23165/55706/23636/5901/4927/79902/10762/8480/11097/9972/81929/57122/79023/9818/6741/23511/23279/7175/23225/8021/53371/4928/8086/9883/5903/348995/55746
## GO:0010039 891/712/3162/2539/57817/2395/3091/7036/6531/7018/1813/654/4193/3651/567/1371/48/4891/3077/538/7020/6622/1543/322/596/8678/595/210/7031/18/79901
## GO:0042554 1535/2950/4688/3689/239/6850/50506/1956/1536/7305/54/26574/2358/79400/10394/27035/2773/6647/3684/7040/1401/1906/183/5446/2771/53905/5580/2150/57126/50507/4137
## GO:0051031 9688/11260/9631/6396/23165/55706/23636/5901/4927/79902/10762/8480/11097/9972/81929/57122/79023/9818/6741/23511/23279/7175/23225/8021/53371/4928/8086/9883/5903/348995/55746
## GO:0071431 9688/11260/9631/6396/23165/55706/23636/5901/4927/79902/10762/8480/11097/9972/81929/57122/79023/9818/6741/23511/23279/7175/23225/8021/53371/4928/8086/9883/5903/348995/55746
## GO:0006029 10855/50515/3549/9806/1464/1463/5467/10675/63827/411/2300/176/55501/54928/2131/2132/23553/11061/124583/9469/79586/54480/9348/50859/10090/79690/22856/23213/9953/23169/81792/3074/29940/64377/2135/650/55454/659/2137/56548/3423/26229/55790/6934/64131/3425/11285/64132/1499/3373/1301/3073/3340/79625/1280/26035/2817/7358/6448/54360/1462/51363/633/658/1634/3479
## GO:0006476 3458/2005/3066/7422/57805/9734/8819/10432/5927/23408/3065/51547/79685/25855/5978/5245/4287/5599/51548/3622/1859/10474/5587/23186/7040/51043/2033/22933/50943/11176/6421/10933/26993/6497/8841/2339/54531/79885/10270/25865/11107/10013/1487/138151/65018/4752/5187/23411/10014/5562/25836/200734/56848/23409/9759/7157/5563/51564/604/56271/23410/8864/6720/10129/7349/4137
## GO:0032642 8767/136/3574/2950/3162/2867/1991/3929/3965/4210/4282/7124/3569/7097/3091/5610/3570/140885/384/9971/6372/6868/199/3586/566/972/7099/3553/22954/59341/177/1969/9314/4155/1436/351/1654/148022/3566/116/27159/79594/51284/7291/7098/9173/5607/59307/29108/9655/2150/57506/55914/1958/7474/54209/727/6591/4023/90865/4035/10631/347/247/114899/9370
## GO:0045639 9636/1230/6772/3458/3148/3276/5457/7124/8772/3091/5469/3071/7305/3059/10221/5578/3593/60682/1432/2778/760/3398/2124/920/3635/10456/2113/677/972/4352/51176/841/7564/3605/9398/1435/7040/537/7189/6886/5196/7066/2623/405/91/6774/81501/92/3725/5458/2624/51561/1385/8600/3976/56998/22985/8737/7071/2309/6777/2242/3624/5925/3567/182/4920/54997/54209/3202/2353/85477/4254/25893
## GO:0006584 2643/6870/1812/3689/1644/3251/1312/55737/1814/1141/6531/231/1813/2861/5409/1610/5153/3684/6620/5053/11315/186/2903/3642/314/9464/1815/538/7054/6622/5071/6799/3350/3067/2034/1621/9627/4881/4929/7042/6817/4128/18/4129/2625
## GO:0009712 2643/6870/1812/3689/1644/3251/1312/55737/1814/1141/6531/231/1813/2861/5409/1610/5153/3684/6620/5053/11315/186/2903/3642/314/9464/1815/538/7054/6622/5071/6799/3350/3067/2034/1621/9627/4881/4929/7042/6817/4128/18/4129/2625
## GO:2000677 5080/9355/6664/3458/2296/5457/142/51042/9421/8091/1649/55294/2959/64324/10269/171392/4760/7040/2033/9314/65992/11315/7114/7189/201501/2623/6872/5663/51341/5458/9464/7291/3976/84444/5925/1499/3005/23493/23462/6717/8864/4488/4487/3479/2625
## GO:0019751 3613/23007/2643/5341/3973/1719/5336/5449/5031/1594/27235/2584/8877/51805/2805/5724/8811/8898/117/3631/2820/51744/54928/51196/1593/5805/8291/231/120227/3635/2710/3636/4142/2185/5335/27329/3707/64768/6569/5331/5332/9108/5028/3706/3705/80168/4952/10558/3612/80271/3633/8867/9517/4923/81537/3269/2852/51477/5330/9562/5728/3628/56623/5092/5741/6652/4204/9651/11163/51763/283871/6697/1576/23236/5333/6622/56848/9807/55190/2712/23262/51447/5745/427/3632/2247/26509/3952/9677/8821/27124/5105
## GO:1902904 6712/29767/3925/7111/11151/119/8500/1410/7454/348/5216/22919/1496/26586/2288/5217/822/57175/3949/4133/10300/6710/4281/79929/55607/5962/50944/58526/11344/7429/9463/1859/55604/9181/859/29766/10382/4233/10565/7114/23332/4089/10163/10677/9026/395/6904/10013/2039/6708/10519/11078/2258/8195/116985/51763/2059/6711/10395/5580/5756/4070/51332/6622/50810/5071/23189/3375/146057/118/4131/23075/25876/1901/324/23122/11075/6709/9353/2934/57731/25999/89795/24139/585/85477/51474/4653/11117/10391/89927/1191/57551/50853/80206/25802/27124
## GO:0002312 9156/7037/959/5336/4436/79915/1880/3329/7468/2956/5788/9466/30009/100/7374/940/4683/930/2213/958/3558/55183/7292/2185/3586/9025/7099/22976/1015/3565/3956/4242/602/3955/23529/7040/50943/23228/8741/3981/4853/54537/25/4292/9984/55619/10538/57379/6830/3456/7158/2067/23075/55846/6778/604/1235/9452/10039/7494
## GO:0060998 7804/54149/3066/10059/8997/1020/348/3558/5597/9148/6792/382/10097/50807/8851/2043/84298/9762/1072/55607/27185/4076/7074/50944/54413/1627/2475/23316/2332/5063/3706/8536/816/10458/4976/5663/23237/5048/5728/23105/23613/102/10152/10611/5649/5802/26052/22871/7337/6453/115703/9231/1942/26037/80823/65981/4208/22849/1902/10769
## GO:1901879 6712/5341/29767/7111/119/23616/88/26586/10763/822/10300/6710/4281/1072/79929/5962/6683/9948/58526/11344/59341/7429/55604/9181/29766/23332/10677/10013/2039/6708/10519/11078/2258/2059/6711/11034/51332/2150/50810/6588/146057/118/4131/23075/25876/324/444/23122/11075/6709/2934/57731/89795/9037/85477/51474/89927/57551/50853/25802
## GO:1901983 1111/28999/3066/6659/9474/672/2932/29117/10856/8986/6688/26155/4842/6418/3553/22976/10664/55124/10269/10891/55011/6598/10524/7040/8536/50943/11143/11315/54386/4089/55209/23558/2624/1487/7291/3976/3670/2648/4297/406/23411/6879/5562/6622/26053/56848/5595/408/23741/5563/85459/9252/26036/201163/6591/10411/4674/57551/4582/2625
## GO:0000422 57103/664/706/10059/3091/3099/2011/57602/6721/10456/25793/7855/1459/8878/7416/10133/55294/81631/57154/2017/10891/55626/10193/10533/11315/2931/27429/23400/93974/10645/79594/10013/3064/9927/23274/54832/7249/65018/51024/5071/11140/7157/55187/665/8678/22863/1513/6720
## GO:0016445 9156/7037/959/4436/79915/3329/7468/2956/25939/5788/9466/30009/7374/940/4683/10721/958/3558/55183/7292/56259/3586/9025/22976/3565/6929/23529/7040/50943/8888/8741/3981/54537/4292/9984/10538/5423/57379/27343/6830/7158/2067/23075/6778/604/1235/10039/27434
## GO:0042982 4067/5653/274/1944/6646/348/2280/25825/9911/836/26574/2043/55851/51107/5621/43/9001/23163/177/1859/1739/10972/8301/2319/2931/23385/351/5074/6093/5663/9475/102/5664/10347/1201/9619/26119/23025/63941/27065/1718/9445/54103/1942/6653/1191/10418/3479
## GO:0060997 7804/10059/8997/1020/2048/2047/2049/10097/8851/2043/9762/1072/55607/4076/8976/7074/50944/54413/1627/998/7476/23316/5063/3706/1742/816/10458/4976/23237/5048/5728/1855/10013/102/10152/55619/10611/5649/26052/22871/7337/22891/115703/1942/26037/80823/65981/1501
## GO:0061726 57103/664/706/10059/3091/3099/2011/57602/6721/10456/25793/7855/1459/8878/7416/10133/55294/81631/57154/2017/10891/55626/10193/10533/11315/2931/27429/23400/93974/10645/79594/10013/3064/9927/23274/54832/7249/65018/51024/5071/11140/7157/55187/665/8678/22863/1513/6720
## GO:0006901 1075/6396/7039/2153/10113/10959/51693/54732/1522/27095/5265/10342/10802/83696/9554/2348/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/374/9632/8729/966/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/10016/1294
## GO:0010812 4321/2633/1029/23603/4771/8751/6376/5054/2651/6714/5340/11170/8573/8324/4221/4241/4851/3956/7471/1946/81/4323/56940/395/6904/5728/285/55966/2039/387/9448/9270/5800/55435/10395/4070/7057/54828/23189/5921/3204/4763/5295/8322/94/604/182/23122/1277/6695/2192/4653/10391/4035/10631/347/9723
## GO:0051705 2019/5194/8997/5457/54584/26047/551/1814/1141/7101/55585/51009/552/2902/50944/2744/54413/2475/1271/5020/6869/6899/22941/2925/23542/1979/1742/57680/351/5728/1855/9464/1815/8195/51301/4204/9378/1620/5179/9379/7054/23230/6532/23152/2571/22829/5021/1393/5108/585/6310/9369/7349/1602/57502/2922/1524
## GO:0072171 4609/6943/2297/2253/2138/7422/7490/9500/10736/55083/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/56998/6662/5076/2719/4070/3280/3611/5228/5087/1499/80000/4435/6299/596/7482/5311/2246/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0061097 6352/7804/54892/26228/5788/1795/5912/7039/8440/100133941/1950/5771/9148/6714/10006/57091/2069/134/2043/6868/57826/5621/51704/5770/2534/5062/55294/5155/1636/2074/58533/353514/26585/11116/148/3084/1741/1742/6886/1436/7251/351/84619/183/5663/56940/8692/23624/79643/25998/6464/5649/79893/2065/1856/9655/7070/2209/627/4739/2915/9094/1942/5753/50507/9961/2621/9052/857/4915/150
## GO:0007519 6664/5307/7504/6943/23764/58/467/22943/29895/6285/3344/9328/1020/9456/7480/688/1959/1134/1144/6261/9734/2047/8819/9148/26263/1432/79647/26576/59269/3792/5081/2876/8531/10791/58529/4654/6608/8837/2010/5079/4617/8048/140465/4534/4634/6495/2660/79784/50937/22989/3142/10362/6899/26287/3236/4209/22953/7040/2033/668/3156/6901/89/1655/3235/6840/6497/26508/8736/9318/9242/387/4868/10869/9750/4618/1310/1938/858/51778/7291/4637/4656/26471/64321/6474/56603/7093/406/905/7026/5562/8929/7881/9975/5925/9172/55909/5530/4763/9759/10211/1499/607/10521/1958/596/844/4208/2817/2353/6469/2317/10324/7832/857/4223/10472/3131/1634/2006
## GO:0033013 81693/5646/3162/11330/706/2694/2395/51293/4363/3145/211/10058/402055/259/6948/1544/5644/27249/440387/4552/644/3658/7390/212/1352/27102/200205/3163/25974/1371/2235/93974/4891/1355/4594/54977/5826/6708/645/7389/8029/8803/4548/4779/55316/5498/1543/55788/210/56898/6947
## GO:0072413 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/60561/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:1902402 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/60561/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:1902403 79733/983/6790/891/51512/5111/1869/2810/995/11200/7027/3276/6659/1820/23019/5591/835/5371/60561/2765/9125/1017/7029/1026/581/29883/4849/4193/10498/1874/51499/4848/2033/55367/1263/8738/4850/57472/9337/5934/1647/5325/57060/472/7157/28984/1027/4194/7832/10769/4582
## GO:0051262 6241/6999/7083/6352/4199/3768/23590/6472/362/8357/919/5471/1807/1104/25939/51733/55856/3028/10059/8989/5315/3251/158/11051/9456/7226/8290/7915/80146/6240/5967/6261/88/2193/931/5830/1666/3834/56302/973/6223/9818/359/9033/7408/4143/2547/3848/140803/79077/51074/361/11052/3416/226/43/972/3748/6256/4308/2902/2744/57192/9885/3746/2904/7053/5018/23208/23373/53371/6767/25776/4284/79869/978/6470/2801/3759/51076/3156/302/6281/1491/6263/80036/10600/79054/57107/93974/1258/6847/847/5195/7161/3858/5092/55/54974/4038/8854/220/31/51181/63826/5310/64784/22871/8626/6622/7157/2878/3643/3615/27232/1429/33/5311/3155/7923/54795/55198/84869/3480/2203/32/51466/10157
## GO:0010863 3702/5031/8698/1956/5724/728/2769/117/7294/9170/2321/5335/552/10316/3265/6401/148/27/5156/5330/183/3815/5741/2260/4916/3356/2776/627/1902/553/283/2247/2099/4908/5159/1909/4915/3357
## GO:0021983 5080/5307/6496/6715/5449/8820/2253/9095/999/2692/6531/1813/2113/190/6657/3516/5626/657/8022/7080/5454/116/6658/650/5308/2624/2736/1385/3670/8854/3280/2735/6299/7474/2691/4487/54361/652
## GO:0032456 65009/57706/85377/10938/88/10228/22853/382/7260/10311/10123/11267/9784/8723/23163/54918/30844/9727/51552/79778/738/23527/9230/28952/54520/5872/2060/6293/55275/22876/392/30845/163486/57020/55610/64284/6653/30846
## GO:0050954 332/1690/7399/54532/1302/5459/50617/3753/2070/3383/4647/491/2138/8989/2558/7852/57214/525/55636/1032/5456/53904/26521/4914/79955/836/1141/26517/40/9381/51475/80204/6507/1729/23349/2876/2562/5660/5077/7275/2561/6647/26519/6323/2534/9948/53942/2917/26520/501/6495/784/79784/57053/3198/6899/9860/9368/7068/56914/22953/6907/4640/51168/10083/4155/1428/5270/1285/55584/4919/6940/3074/80055/5458/9132/9750/6169/3815/3673/11078/8195/53405/7007/5864/1687/2260/25861/3356/7054/7020/89797/9455/25836/3784/5269/64787/8556/8322/23621/10253/1301/1027/3736/7466/1280/5025/84059/55084/57731/1277/6591/24139/5172/26018/6387/5205/63895/3249/4646/7349/776/4036
## GO:0032373 9388/348/4792/5360/5444/10062/5727/26154/335/19/302/7376/10347/9619/6342/23411/26119/2874/5244/4035/9370
## GO:0032376 9388/348/4792/5360/5444/10062/5727/26154/335/19/302/7376/10347/9619/6342/23411/26119/2874/5244/4035/9370
## GO:0032928 1535/2950/3689/6850/1956/7305/54/26574/2358/2773/6647/3684/7040/1401/183/5446/2771/5580/2150/57126/4137
## GO:0035455 27074/6770/3437/4600/3433/5610/3455/684/7175/103/149628/6738/27252/8519/201626/3454/558/10410/10581/2621/2625
## GO:0035743 91543/30009/6375/8807/3569/3593/3592/3606/3553/1604/3565/8809/975/383/114548/3440/3456/163486/3554/5590/2625
## GO:0072010 8842/28999/2296/7490/100133941/4643/10409/2303/2302/8826/4868/5420/5800/7827/5175/182/947/3913/9863/9370/652
## GO:0072080 8842/6772/4609/6943/2297/2253/2138/7422/7490/100133941/9500/10736/55083/5455/3975/3237/9788/6608/7477/5727/7475/793/2668/6495/10413/6928/7471/1739/26585/7040/7369/186/3911/4089/7849/26508/183/3217/3207/650/55366/25937/3976/56998/6662/38/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/182/4435/6299/596/7482/5311/26249/2246/4208/8642/2247/6469/79633/7481/54361/2737/652/2625/7021
## GO:1903076 2633/116372/3458/1445/1020/8500/7124/2048/1956/245812/6769/382/6809/391/1173/10434/27183/8878/3799/5584/60/8048/8766/7429/1213/3630/8673/1739/10490/1969/8301/64114/207/7040/5581/23433/3688/9495/5780/8417/2852/4323/5525/7430/55022/10519/5583/5170/3958/9912/27237/8650/11079/6711/6810/598/26119/9528/26060/1601/5295/10268/5357/9482/22841/2181/29098/54209/3675/2042/10580/25999/4035/367/131578/10551
## GO:0044843 8318/55388/79733/6241/890/983/81620/2146/6790/891/4174/4171/1033/9928/993/990/51512/1978/898/23594/4998/9134/4175/4173/10926/6502/6347/7298/4609/5111/26271/51053/1869/1029/1719/55159/8317/5427/23649/4176/5471/586/5557/2810/1031/995/1104/1019/637/5558/4172/11200/11040/10263/7027/4678/3276/6659/1030/8882/54107/1956/81853/6119/1981/8328/1820/23019/5591/997/835/8454/5371/79577/51270/328/1032/2765/8462/2672/9125/1977/23026/29117/3398/1017/7029/3741/1026/25793/2935/6868/11331/11170/6117/581/5426/199/29883/26057/894/7465/8453/1876/51379/4849/4221/4999/10385/5962/55294/4193/10498/6118/10457/5537/5001/1874/8900/29935/6194/59343/5777/8451/7015/10657/9510/11319/6198/23476/25988/51499/4863/4848/815/5422/207/23133/2033/55367/9314/65992/6881/3688/1263/1654/8738/91/6872/4149/493/2103/1021/4850/57472/57165/4331/5728/8450/9337/5934/8065/1647/989/56257/5000/5325/57060/571/23595/1022/8554/138151/8737/79447/472/23236/902/5932/54623/5310/90/8558/3624/10106/5925/5530/25959/7157/79960/26058/51065/2735/28984/3373/3275/8452/1543/1027/596/10217/595/58190/4194/5311/3400/51339/7832/10769/2273/56892/4582
## GO:0006099 4200/3418/50/1737/3419/5160/2271/3421/5161/3417/1431/6389/4191/1738/6391/3420/1743/4967/8802/23530/6390/6392/8801/8803/5162/10873
## GO:0009651 8564/6870/9076/7124/551/3326/231/2547/2056/581/677/9990/3954/5020/59341/7520/60676/310/624/79085/10367/7054/7157/825/80303/358
## GO:0032201 2237/5984/5111/1763/5427/23649/5982/5557/5558/5424/5983/5425/54107/6119/5985/10714/6117/5426/7014/6118/5976/5422/51750/7013/5981/57804
## GO:0043304 136/4067/3162/11314/2207/5880/3965/3596/57102/30817/4878/8832/6845/3598/8723/8673/3566/2624/2294/5170/6813/2242/2268/56848/9846/6812
## GO:0043921 6352/6351/23076/5702/6882/8091/6597/904/3065/7023/2959/51176/5978/51193/6598/9150/22938/2033/64710/23435/3725/51763/25833/6667/1105/3249
## GO:0052472 6352/6351/23076/5702/6882/8091/6597/904/3065/7023/2959/51176/5978/51193/6598/9150/22938/2033/64710/23435/3725/51763/25833/6667/1105/3249
## GO:0072378 2160/708/2161/462/2243/2266/2811/2814/2147/2158/2244/2159/2815/3818/7035/2157/3827/350/2/710/2155/5547/7450/2192/2162/2152
## GO:1903008 983/57103/664/706/10059/7443/3091/3099/7415/28985/2011/57602/8444/6721/10456/25793/7855/1459/8878/7416/3799/4528/10133/8562/6683/55294/81631/57154/2017/10891/55626/10193/6811/2801/10533/79752/11315/2931/27429/1263/1939/23400/93974/10645/79594/10013/3064/9927/8729/3831/23274/54832/7249/65018/51024/5071/11140/7157/55187/665/8678/54463/22863/1513/6720
## GO:0031638 8767/5646/5641/578/5230/2023/8772/2160/8492/5054/3428/5345/1512/2161/1522/64065/2243/5328/2266/4241/27141/1361/841/5045/2158/2244/5270/4323/2903/572/3818/715/50624/29108/7057/350/1718/26999/444/3249/5327
## GO:0060986 2297/51083/3814/3623/1394/2778/64111/2661/3553/5781/654/6865/80223/668/9727/51762/186/114897/4089/183/2587/5972/4986/7110/2260/4824/56729/26056/1392/3624/1407/8322/1393/3952/3625/185/6863/7349/6926/114899/2625
## GO:0030212 3161/8372/3697/3600/57214/1950/5292/3553/5155/3698/1213/3037/11261/10057/207/7040/960/4790/10894/3036/3074/8692/2990/3700/55512/23670/55576/3699/6548/3082/3373/3073/2247/80760
## GO:0030574 4312/4321/4318/4316/5645/4324/1520/5653/1514/8751/1509/1305/5184/9313/1508/5657/5045/3688/9508/4323/1310/4320/4317/9509/9902/1306/4314/4322/164656/4319/1513/4313/2191/1471
## GO:0033046 991/10403/4085/81620/7272/9212/9319/891/5347/9700/1063/26271/5885/54908/8260/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/23063/55755/472/56155/8658/546/3550/1843/324
## GO:0034405 7980/445/5027/5743/760/6714/6721/9788/2113/2185/4091/8754/3037/19/207/7040/9314/4780/1437/8841/5598/4092/4846/5607/5310/9655/10365/5025/5311/4208/10370/5159/2697/7043
## GO:0042307 1894/3458/7545/999/8882/5743/5901/3059/5594/1432/80149/6608/10155/3843/7175/2316/5296/7040/23435/8841/63928/5663/3728/8692/51366/9531/5580/57506/4088/5295/55696/6469/3952/2737
## GO:0051932 3351/8224/2554/760/134/23349/1813/3799/64854/2561/1269/9001/3845/2566/6869/9746/148/5881/5581/23228/4889/6529/135/5728/1268/766/22871/4763/5021/5334/6812/8938/11188/6863
## GO:2000648 259266/5080/6664/6663/4072/5788/7422/23028/3091/6376/8091/7101/1813/6608/27185/5134/63925/7015/51548/3192/7066/6604/7976/7424/1499/4435/79923/4054/6469/4254/2737/10443/6926/1524
## GO:0007498 9355/3055/22806/7296/2296/2253/7473/22943/2138/4771/10220/7422/5457/8013/6398/54517/10683/6862/655/10736/9421/8091/89870/8928/10320/5017/695/2139/9350/2131/6722/6608/2132/677/3196/660/93/2303/4838/5566/6615/3691/7258/10413/6899/1969/3717/4232/23399/9314/657/3688/56983/6886/79728/4089/4087/9573/23275/92/3207/6169/27330/5515/3690/659/2294/3673/2116/55746/7403/5573/2260/23135/57669/64321/6911/5076/6939/8516/29072/2263/90/2114/8626/3624/4086/4088/268/7474/57045/8646/3675/10370/6469/7075/7481/23414/79971/6926/652
## GO:0072175 9355/6664/133/6491/8543/5898/8092/9585/8820/8557/2253/4522/6789/6659/6768/5629/3091/5216/6862/655/5567/9421/79977/10959/23513/6422/6788/8323/7408/1072/2348/5727/7475/7289/4838/5566/4524/2668/10653/23242/6495/6201/51098/54910/11146/23654/6928/653/8915/26585/7040/7189/9968/6692/65979/7849/6497/317/55764/5979/5754/55081/25/7976/9839/7291/5916/80199/5420/2648/7403/10427/6662/7249/5076/2909/10395/54903/1856/29072/79600/2263/9620/8289/6385/8321/1499/2535/10522/5914/80184/7474/7248/7042/11019/58495/585/54361/652/4036/2625
## GO:0006903 1075/5871/10652/6396/7039/2153/10113/10959/51693/23513/54732/1522/27095/5265/10342/10802/83696/10948/9554/2348/64149/8615/5861/23256/5537/90411/4905/59349/9342/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/23332/1453/8775/5663/11196/22872/10282/10053/374/9632/8729/4033/55062/966/55435/10427/79090/6399/2157/9919/2890/22871/55717/10484/64689/23243/8452/10016/23122/8773/1294
## GO:0006406 55110/9688/10212/56943/7884/9631/4116/6396/23165/55706/6427/9775/29107/23636/4927/79902/10762/8480/11097/26019/4686/3267/9972/81929/29118/1977/57122/9785/8563/7307/6428/79023/9818/1984/56000/3181/23381/81608/23511/9887/10898/65109/29890/2733/22916/11338/23279/6426/10921/6429/10250/57187/7175/51362/26097/23225/5976/6432/8021/53371/84271/22794/4928/8888/80145/79228/8086/26993/9883/5903/348995/9984/55746/23293/91746/10482/8189/6830/6431/9295/29072/9939/6430/9877/8106/3087
## GO:0050905 2173/7345/2643/57152/5459/80207/1812/16/8514/4647/23287/4683/5457/7143/2395/8013/613/2906/1134/1144/3756/2257/1496/1814/6531/2760/2895/6507/64220/2636/5660/1813/6323/2902/50944/10269/3198/3236/5881/10083/1742/23543/57680/2741/351/3226/2903/57338/135/104/5048/3074/5728/1855/79876/5458/1200/25/8925/54112/1201/4204/2905/9378/2548/220/5179/4762/6939/23077/1639/51761/8506/5071/26058/23621/29/3736/23111/4861/4628/4747/23261/7349/2743/1311
## GO:0062014 5341/54541/57103/341/1594/3208/706/3638/10105/142/345/5629/348/672/2672/57761/9971/6647/51085/10447/79849/54576/5978/2645/5465/6615/5207/51548/1213/10891/3630/653/978/29103/207/60343/7040/2033/634/10613/27120/89/2931/4790/10296/493/6774/140710/55022/387/650/863/22937/4656/26471/23038/201626/283871/1268/55512/23411/51141/6622/1407/11160/1196/23409/9759/7157/37/8644/33/10464/27122/8604/201163/1581/3953/6591/55198/2203/32/54361/4485/114899/9370
## GO:0071427 55110/9688/10212/56943/7884/9631/4116/6396/23165/55706/6427/9775/29107/23636/4927/79902/10762/8480/11097/26019/4686/3267/9972/81929/29118/1977/57122/9785/8563/7307/6428/79023/9818/1984/56000/3181/23381/81608/23511/9887/10898/65109/29890/2733/22916/11338/23279/6426/10921/6429/10250/57187/7175/51362/26097/23225/5976/6432/8021/53371/84271/22794/4928/8888/80145/79228/8086/26993/9883/5903/348995/9984/55746/23293/91746/10482/8189/6830/6431/9295/29072/9939/6430/9877/8106/3087
## GO:1903038 3902/3620/1493/445/80380/3559/10859/1051/864/27242/11314/10288/30009/6375/3659/3549/3965/865/26191/83737/2213/54900/23240/3135/4192/5771/54542/11326/57162/8651/3558/6441/6693/384/836/8379/7356/84830/80149/5621/7292/9306/3586/10385/972/3718/3146/10457/2302/5777/5465/6366/7001/3142/11146/2796/1739/65125/1845/207/7040/51043/634/50943/9314/383/2267/301/2064/5074/135/3566/56940/4092/149041/9750/64844/3958/3440/3077/5573/6370/3456/9655/6385/8654/375056/604/9231/57045/79679/6469/6387/2737/2615/652
## GO:0030041 6712/29767/3055/1236/7111/11151/81624/119/274/57180/3383/4690/246/10095/10096/7454/8440/5216/3071/3059/6356/1496/382/10097/51734/8936/79585/10092/2885/10456/1729/5217/822/7408/57175/11170/10109/10094/199/6710/54942/2185/55607/9873/10093/5962/5987/8976/10178/2475/11344/9530/9113/55761/1440/23242/5063/6366/7429/5879/2017/9463/10787/23191/55604/1739/55243/3717/29766/10810/5581/10565/7114/6369/79778/10677/9026/395/2039/387/4868/6708/11078/10152/8195/2059/6711/55435/5580/5756/4641/51332/29108/10435/23189/5921/118/22921/6709/9353/2934/283/57731/2241/54551/585/85477/10788/50853/80206/51466/25802/2006
## GO:0009116 9582/1503/7083/7378/200315/8833/262/4830/4860/1841/5471/353/1807/55034/51733/10591/1633/100/191/4507/58478/3251/1890/5901/7372/60489/9414/27350/5634/200316/790/55669/221823/4354/1716/51071/56474/272/54963/8573/51727/1723/51074/4552/2773/339/10930/3614/28992/132/2079/471/5636/9567/5631/27304/1740/2987/4833/79631/1739/978/9054/23433/10201/10243/4338/51816/8226/4976/10400/387/4907/51715/55/57379/56953/29922/1806/51292/5729/9583/22875/79873/7084/3615/221443/81602/4337/4832/8382
## GO:0030104 3868/366/3925/114/1364/2810/239/79152/6338/9076/2692/551/525/1080/5567/113/64834/242/360/6344/5575/5568/231/359/2312/3848/109/6722/361/5566/26154/1585/8766/59341/6343/3037/4233/51297/310/59344/8692/5576/112/1579/51763/5573/56603/554/115/8626/107/108/6337/22841/7466/6340/358/7357/5577/23327/66002/7021
## GO:0055072 7037/3934/4609/1356/3162/57817/2395/3091/10058/8454/7036/9114/6556/54583/2512/7018/55240/4738/55832/23545/4241/3658/6647/212/654/523/27102/6005/3163/567/81894/8301/2038/537/51312/26872/9550/2658/4089/23400/2495/48/4891/8692/8031/4682/4756/3077/9843/6500/4057/51310/2034/80762/26234/6717/164656/56898/3263/9429/79689/79901
## GO:0086001 23630/1824/3757/3753/9631/274/6262/1525/10021/610/2257/3741/6327/6331/6336/6323/3762/1756/781/488/1739/476/859/2316/5318/3759/1829/7531/6324/6640/30819/8913/3728/10052/288/2258/3764/287/1832/3781/9722/9992/3760/6546/783/3784/2702/29119/29098/10142/3752/481/54795/477/23327/857/775/23171/55800/2697/776/23704
## GO:0022900 983/3620/891/26227/4199/6715/1535/7296/80142/1537/4200/4688/9377/51022/637/8608/5447/57017/4726/4704/29796/7386/57019/4725/4723/10165/2108/7915/1349/4708/1536/10539/4700/1588/54539/1351/83442/2230/8560/1329/7264/7498/4719/2820/4697/4702/4694/1340/1728/1109/6389/231/4712/2745/1544/4722/10327/4711/1337/7381/4710/7384/1534/1327/9167/1738/4706/1347/11232/2877/3420/128/4717/51079/8659/4720/4709/2936/1352/4713/10514/2109/10891/1345/4701/8974/29103/4729/4714/56901/6901/4696/11315/9249/27089/6834/10587/10975/4835/7385/1355/374291/8574/23498/4707/2731/314/4204/4698/1350/23479/217/51218/8630/4695/4705/51103/65018/4724/2110/6622/1353/4017/444/8604/1528/316/22977/5860/50507/2819/1346/4129/79689
## GO:0060538 6664/445/5307/7504/6943/23764/58/467/22943/29895/6285/3344/9328/1020/9456/7480/688/7490/1959/1134/1144/6261/9734/2047/8819/9148/26263/1432/79647/26576/59269/3792/64220/5081/2876/8531/10791/58529/4654/6608/8837/2010/10409/5079/4617/8048/1271/140465/4534/4634/6495/2660/79784/50937/22989/3142/10362/6899/26287/3236/4209/22953/7040/2033/668/3156/6901/89/1655/9215/3235/6840/6497/26508/8736/9318/9242/387/4868/10869/9750/4618/1310/1938/858/51778/7291/4637/4656/26471/64321/6474/56603/7093/406/905/7026/5562/8929/7881/9975/5925/9172/55909/5530/4763/9759/10211/1499/607/10521/1958/596/844/4208/2817/2353/6469/2317/10324/7832/857/4223/10472/3131/1634/2006
## GO:0001975 3066/1812/3383/3251/6001/9734/1814/1787/5997/1813/6647/2902/1269/41/1816/5020/5153/5999/2903/135/8787/5903/1815/7054/5530/1621/5021/4929/26575/6571
## GO:0071276 4318/6770/4496/3162/4501/4494/1956/5536/1536/3297/4504/4493/5594/4495/1147/1544/6647/5599/7323/1616/7341/207/4968/3725/5601/538/5595/8644/2934/2353
## GO:0031343 3902/5551/3458/26228/2597/5788/259197/4068/6375/8807/5027/56253/2208/8772/5817/10125/164/7305/10018/3134/3593/3592/51571/10666/57115/11126/7409/3133/8993/4843/3684/567/3916/922/59067/383/8417/572/3594/51561/23705/5819/6777/2150
## GO:0044380 7272/6790/10615/6491/29887/9585/23636/22919/55722/2932/79648/1729/4281/9419/27185/55968/55125/50855/3192/23386/11190/57787/22994/51134/1453/26005/9903/1855/10540/636/51104/11043/137886/81926/3356/4130/146057/9851/324/2804/10464/5108/4926/585
## GO:0048199 1075/6396/7039/2153/10113/10959/51693/54732/1522/27095/5265/10342/10802/83696/9554/2348/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/374/9632/8729/55062/966/55435/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/10016/1294
## GO:0060193 6352/3702/5031/3208/8698/1956/5406/9373/5724/728/2769/117/7294/9170/10062/2321/5335/337/552/10316/3265/6401/148/51099/378/27/5156/5330/183/5319/3491/387/3815/5741/400/5170/7376/2260/4916/3356/5322/2263/350/2776/627/5590/2261/1902/553/283/2247/64788/2099/4908/5159/1909/4915/185/3357
## GO:0042475 54959/133/2296/3066/2253/4771/29123/655/5054/25928/265/10018/9421/9313/760/64065/6786/581/1758/682/6608/3065/6331/6336/5818/10913/7475/93/6569/51176/5465/3691/2775/1441/64919/6899/258/3655/1435/1386/657/5156/1896/7189/3911/10312/2249/650/2736/9464/4038/3714/1495/55512/4782/8626/1499/26504/860/3371/79641/2308/6469/4488/4487/2737/5654/1746/4982/652
## GO:0061035 8200/11173/5447/4192/10736/202018/5970/5915/654/10498/2734/6660/27302/26585/7046/7040/2658/649/81792/3491/3207/4094/650/2736/5741/659/5916/6662/6474/55512/51222/579/4086/1499/4088/4017/860/94/5914/7474/8840/1490/6591/7227/3952/1513/2202/85477/7481/8817/7704/658/2737/5744/2487/652
## GO:0032091 9212/6790/6590/3925/5499/11040/22943/409/3434/8751/3433/23028/1663/6996/9532/2932/6368/10856/1522/3309/10763/4133/1965/581/27185/3586/55118/3676/80011/5792/60/10498/51176/5155/59343/1636/5465/5599/54552/567/3080/1400/23394/2801/207/8536/4233/11315/6093/7009/1855/9750/3300/5195/9270/5899/3670/24144/5300/56998/81494/3077/23032/10273/8189/1454/4824/57669/56155/5580/4043/154/146057/5595/166/1601/4776/2962/3397/51339/6653/857/9370
## GO:0006643 7368/6489/8708/2529/8877/2525/27293/3696/79152/4759/6484/8813/7124/5027/9334/221/7915/57733/9217/5476/27090/8560/55750/29095/64834/242/8733/8128/2528/2760/64781/51046/201562/53947/81849/4668/5660/54982/581/84720/10825/5277/8703/2720/2055/6439/51228/8439/8818/1455/93210/2531/1545/6610/23659/8702/29906/5518/1390/23683/8706/410/8612/5587/79690/7903/10558/8879/171546/7132/259230/54344/9514/80772/23344/2527/2583/9517/9215/81537/10402/27429/8869/27315/8705/59344/5408/9331/347735/5023/10400/9487/2822/412/51227/3074/51604/3491/10026/25865/80055/9218/55852/6483/5515/3815/8398/10955/1201/5281/4258/5538/55512/256987/5580/8613/80235/9091/7054/4758/6609/222/5562/8707/56848/2581/253782/54872/29956/224/9488/2717/427/3073/55650/55304/10087/65258/23556/5283/2517/57515/7357/8611/79603
## GO:0001541 1051/8372/2296/3383/5806/409/2189/7422/9468/3623/9757/6714/11144/2069/581/23626/2492/6647/7425/5245/2796/3955/9210/8890/668/8892/4323/4089/116/8893/3815/4327/1495/2309/472/598/3624/7337/408/268/596/283/2620/3625/4254/2099/658
## GO:0061025 6890/2515/11151/8877/1234/10652/10059/6891/7852/29091/6677/84079/8676/80183/10228/811/55669/9381/8291/8774/25801/8447/920/79400/6845/208/9554/57151/5478/27183/3799/54809/2773/5877/8615/6892/4218/4905/594855/9342/8411/928/25978/7879/6804/55647/26276/10490/6811/11261/662/10533/310/301/302/79363/51272/2901/8775/22999/9392/81501/9218/9882/27072/8692/858/55823/4033/8674/114088/5864/6810/5819/6622/9341/23339/53407/51479/6843/6844/23176/167/9847/8773/6812/80208/7075/2621/9135/6857/5104/10451
## GO:0043966 1111/10626/55689/54107/672/675/3662/6688/1810/10629/4654/23774/6883/6885/7862/51176/8861/55124/55011/6598/10474/11143/8888/6881/9767/8464/4089/27097/6871/51562/23558/51147/7994/9913/64769/3976/6880/8850/2648/112869/4297/5187/23411/56848/79960/23522/26036/23338/4674/2625
## GO:0071384 1978/445/6770/6715/54541/1789/2950/3383/1244/11335/5901/1956/9131/6753/10018/7332/1977/11170/4654/8837/677/7023/5978/2660/3192/7040/383/186/301/1906/2852/11214/64754/116/7538/6781/842/3670/2309/1392/9101/687/2908/490/2322/8644/678/2308/5176/358
## GO:0055117 1824/59272/1482/274/147/55151/6262/5142/10021/2626/4878/9446/134/5997/80149/1113/4842/5294/6331/6336/7137/5566/1756/488/27302/1739/476/148/859/2316/7341/1193/5318/5144/3759/1829/4092/3728/6781/2258/287/1832/9722/6546/30845/3784/2702/9759/8654/845/6548/29119/29098/1490/5025/10142/3270/6717/481/54795/2281/2946/477/857/775/5350/7349
## GO:0009101 79623/4597/94025/50515/1236/727897/10331/200424/6489/2529/10195/56913/2525/3600/6185/2591/55858/6646/1464/1463/6184/22822/746/6484/27087/8813/10675/9334/63827/8985/10164/9245/7415/2650/4248/3703/4504/2300/25825/2651/176/4585/27090/5373/1650/79369/55501/25834/1839/29929/79644/26290/8128/2528/26574/10678/84061/51046/10690/4586/10005/53947/81849/6482/6363/2131/64083/1798/11320/5238/2132/8703/11282/432/2134/51006/124583/9469/8704/4584/3718/8818/79695/2683/2526/79586/1603/90411/79796/2523/54480/3998/9348/4583/6366/8702/29071/4242/29906/10090/28/51465/3955/22845/6388/11261/57171/2801/79690/433/7903/79947/11277/22856/54344/9514/79147/51146/10565/56983/51172/2590/2527/7327/11253/23509/9215/4249/5986/2623/79087/8705/23385/6480/9331/55624/5074/9953/4864/23169/7991/79053/5663/2524/23275/10267/4245/10905/29940/64377/56667/2589/2135/6483/29880/55454/659/10318/79070/4247/2137/56548/9526/29954/10347/63917/51301/26229/538/55790/285203/8473/6934/10329/2218/9321/11041/64131/23236/11285/10724/64132/7423/9528/63941/10585/4122/1499/57876/957/64689/11070/4124/9445/596/3340/66008/26035/11226/57134/79868/91949/80267/4589/7358/4588/64788/51809/2530/54360/10610/22906/4121/1462/51363/633/658/1634/4582/3479/55568
## GO:0008631 9833/5163/8876/142/3091/5034/10131/5371/4841/2876/27035/6647/55294/5625/4170/1545/11235/3630/8996/4217/8428/207/3717/4780/11315/10494/6421/27429/5598/9529/65018/5580/23411/5071/3315/10550/596
## GO:0010677 5341/54541/57103/2932/2646/3170/10447/2645/5465/5207/51548/10891/23178/3630/60343/2033/89/2931/10296/6774/140710/863/51763/4656/26471/283871/5071/1353/1407/1196/9759/3953/2203/5167/4485/114899/9370
## GO:0050432 3351/3737/151/1814/1137/1141/152/156/1113/1813/3745/2668/5020/6804/5028/26281/186/135/183/6623/2693/4986/4204/8973/3356/65018/1392/1268/6622/5071/4887/5021/6387/11188/9607/150/18
## GO:0098659 55503/3757/483/1317/7226/10021/610/56302/5621/2534/6569/3762/23516/781/478/476/3759/486/493/6550/10060/799/3764/1261/3077/23479/9992/3760/6546/10268/6548/7779/482/481/54795/477/25800
## GO:0099587 55503/3757/483/1317/7226/10021/610/56302/5621/2534/6569/3762/23516/781/478/476/3759/486/493/6550/10060/799/3764/1261/3077/23479/9992/3760/6546/10268/6548/7779/482/481/54795/477/25800
## GO:0010906 5163/57103/2642/5499/7262/5208/5165/2641/57001/80183/1642/5771/3607/5366/2932/2784/2646/3170/6714/8445/208/5500/51094/3486/57223/10447/5443/2475/2645/5465/5207/10269/10891/23178/3630/207/60343/2033/89/2931/114897/5509/10776/1609/10296/140710/51451/2103/572/2822/5903/5741/8850/6095/51763/2648/283871/3488/8473/23417/23411/9104/4779/5071/10499/1353/1407/1196/7157/5261/8660/5164/3643/8604/2308/3953/10580/5166/3952/6097/2203/7033/32/5167/4485/3487/3667/3479/114899/9370
## GO:0003197 2253/655/2626/6091/4193/6910/4851/6615/653/3516/7046/657/4089/26508/650/659/2294/7291/4846/3670/6909/6662/2022/2065/90/23493/94/182/78987/4194/4734/23462/7042/7048/8642/6591/55273/4488/4487/652
## GO:0033628 10563/6352/55612/4067/916/100/6850/9404/3071/5054/9780/5747/1399/5328/5294/5781/2303/5140/1545/5777/6366/3273/8754/1969/65125/5881/1803/5979/80173/1398/10519/9270/5420/8631/23075/54997/1942/7042/6591/4582
## GO:0046850 952/8792/7037/54849/7128/1445/6850/4160/5027/3569/1956/4192/5578/6422/760/6714/796/3635/101/51208/26585/9842/51430/537/1436/81501/3690/8600/3375/4763/1901/2488/3953/5166/3952/53832/2697/4982/9607/284266
## GO:0090287 10563/6664/55612/9982/50515/8200/63893/2297/63976/22943/2254/7422/2805/1030/23625/63978/3091/10755/11171/4504/25928/3175/2626/7498/1785/4052/6422/3326/64750/8936/6091/5579/3309/11156/6868/5046/8573/9350/7311/53918/9719/10479/8837/2321/25805/2348/7448/4221/5770/3553/4091/4851/28996/2734/6386/5526/9480/2201/6233/7316/3273/57154/9110/3622/2887/331/55816/23191/7471/199731/58533/26585/3516/859/7314/7046/22938/9146/7040/2033/3678/9508/186/967/23213/7080/25778/8823/2658/4089/4087/9573/405/2249/6497/23770/183/5494/6425/81792/27020/3491/25865/4092/51341/3690/659/25/858/5170/51592/23592/4756/56937/5300/80199/10273/2260/4916/2022/79176/4015/2719/23411/64081/8516/4641/3280/2263/7057/3611/57556/8321/10140/7424/1499/1601/7157/4088/8322/6794/1387/860/94/10253/90993/1028/4435/7474/23089/57045/64388/8646/10272/3675/8425/26036/25960/26999/2246/27122/4734/10016/3087/10252/2817/9353/7048/753/201163/10370/22905/164656/2247/57608/4681/26509/4926/65997/1149/79812/4488/91851/4908/11117/857/8817/7041/4487/54361/5654/7043/6935/2200/1634/7049/6424/23090/652/4036/54829/2625/7021
## GO:0007620 5266/100/6406/551/10876/552/5020/43847/5028/6869/5270/5023/92/1268/1910/6532/5021/8528/6863/18
## GO:0097734 3458/10987/8027/27183/5873/11267/6386/8766/7879/9146/9525/7251/10015/23400/6382/55512/5071/6385/27243/947
## GO:0002053 6772/4609/3549/2254/7422/6608/7472/6495/6899/657/4041/5154/2294/2260/6662/6474/2263/1499/8660/7474/6468/8646/5396/7048/6469
## GO:0019934 136/348/4880/4878/2986/2185/10900/79849/3358/3747/23394/4544/2978/2981/2983/1910/7057/5139/4882/5592/948/4881/358/5138/3357
## GO:0048668 10507/3475/7473/6696/23566/8153/23242/9798/1946/51199/351/1382/1855/23105/10013/25/9839/2258/1630/5802/9706/627/23111/2045/4035
## GO:0071624 6278/3576/1236/6375/3929/5880/3071/4192/728/57118/57402/719/708/8291/3579/6363/23604/972/6366/5879/158747/1906/9750/51561/7060
## GO:1903579 54541/57103/706/10105/142/51085/5465/5207/51548/10891/29103/89/6774/55022/387/863/4656/26471/201626/6622/9759/7157/8604/201163/2203
## GO:0006007 5214/3101/26330/2821/57103/7167/2597/5230/2023/5223/5208/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/8277/2026/3098/89/4041/669/572/5224/7157/8604
## GO:0006734 5214/3101/26330/2821/57103/7167/2597/5230/2023/5223/5315/3099/7415/3607/2820/2027/5211/4191/5313/229/83440/226/230/2645/5213/2026/3098/89/669/5224/7157/8604/2819
## GO:0009187 5142/4880/113/4878/1267/27115/109/5151/5152/271/5143/55811/1969/5144/5741/112/2983/6095/4879/10846/2982/2977/115/5141/107/8654/108/4882/4881/8622/5136/5138/5744
## GO:0010742 6772/5320/8435/6646/4792/3606/10062/4481/1071/5465/1435/19/7040/2033/1401/1437/5196/4790/183/3690/5583/7376/5601/9619/338/3685/948/5468/23461/4023/247/185/9370
## GO:0031076 5080/6664/6496/3549/5629/655/10763/64220/7855/7289/28996/51384/26146/65979/10818/204851/7291/5916/6909/8854/220/6670/5076/10848/7054/7020/8289/2295/5914/7474/9742/57728/6935
## GO:0033144 6943/9420/672/23019/6597/811/6422/8928/9125/11331/3065/190/4838/5245/9063/4848/81606/26508/9612/51341/387/9575/3670/406/5187/23411/29966/8626/1407/9611/25959/1601/1408
## GO:0070670 4171/3561/11009/4783/11151/1019/6375/4360/10376/6356/5771/5371/3326/3309/2194/3718/51176/6187/6932/383/11093/9817/81501/3566/6122/23729/6777/6778/4435/3615/210/7494/2625
## GO:0086091 23630/1824/3757/3753/274/10021/3741/6327/6331/3762/781/5318/3759/1829/7531/6324/8913/3728/287/1832/9992/3760/783/3784/2702/29119/10142/3752/54795/857/775/55800/776
## GO:0090077 6772/5320/8435/6646/4792/3606/10062/4481/1071/5465/1435/19/7040/2033/1401/1437/5196/4790/183/3690/5583/7376/5601/9619/338/3685/948/5468/23461/4023/247/185/9370
## GO:0090218 1236/4067/8525/930/5747/6714/64127/2358/6363/7410/2321/2185/116986/5155/6366/975/55626/5587/2147/7040/5156/3815/30849/2268/7010/2322/1917/2261/22863/2247/5159/3667/10451
## GO:0097064 9688/11260/9631/6396/23165/55706/23636/5901/4927/79902/10762/8480/11097/9972/81929/57122/79023/9818/6741/23511/22916/23279/7175/23225/8021/53371/4928/8086/9883/5903/348995/55746/7248
## GO:1900026 10562/10675/4192/1785/811/708/57091/3987/1399/2243/10109/2266/80005/998/335/5879/55604/3037/2316/5881/2244/6281/6239/8874/2039/1398/25/10519/11078/4739/1793/8829/4653
## GO:0006767 29968/10797/79581/8875/6472/1719/81693/8564/5646/8942/6515/8876/11330/8884/6513/8566/80308/4522/81034/6573/2694/56922/51293/4363/54/6948/9446/55065/5644/27249/5096/79178/440387/4552/2348/4524/60496/3141/80025/25974/55312/6470/8277/1727/5091/2356/10840/27010/9962/55163/4594/5826/2350/23498/55/441024/686/8029/4548/2729/55788/5095/1528/316/10560/80704/64087/5167/6947
## GO:1904064 3627/6373/4283/23630/6347/3458/1520/5336/51083/5031/3757/1812/3753/483/2539/6375/930/2048/6262/57214/6376/3596/1908/88/8811/6769/1785/729230/4878/375346/9002/9446/10368/2745/6786/10063/623/581/4842/3799/5335/9472/6271/9001/54413/1756/3746/781/784/3747/2631/2316/11261/57158/7341/2147/3759/11315/7114/10369/4923/81/2852/3779/183/30819/57165/8787/3064/10345/799/25/288/5170/4986/1815/287/5649/9722/9992/65018/9104/783/6622/30845/7070/3784/154/825/10268/6548/3736/54997/482/2149/54209/10142/844/187/5311/2259/6717/481/3306/7220/2946/27092/5348/5174
## GO:0050795 10874/4159/6870/3351/29105/3066/3737/3062/100/2692/8013/4160/348/4192/55737/885/1814/1141/134/64220/1813/5730/2475/3352/3198/3630/4544/1742/1437/55777/6774/135/2693/4987/4986/4862/5896/9378/463/56729/5179/5649/7200/1392/1268/22871/54806/9759/3350/181/4887/8863/4208/3953/2691/2697/3357/7349
## GO:0071103 8318/7153/23397/55355/51203/79019/55839/983/9837/64151/51659/8208/891/4171/55723/79682/3159/2491/8438/5888/3149/11339/3070/4175/4173/9918/1058/84296/9401/55506/641/1029/1763/8970/54892/8357/3024/4176/3148/10036/3006/23310/8607/3008/10051/7290/3009/83990/8345/23198/10541/4678/10592/4683/6732/54069/3018/142/8260/3014/9978/55166/1663/85453/8290/3007/7273/1106/9131/79711/55320/5119/79172/1642/10973/9557/8091/7978/79648/11044/29781/7150/25842/201254/4869/10856/5931/56652/6832/5928/26155/3181/2547/3010/4361/2968/7311/8467/8348/26038/6418/1660/5965/9025/3508/7156/9271/3146/10146/1108/1069/10664/7175/1677/8451/9555/8342/56979/1653/29855/6233/7316/51548/9733/7258/8349/50809/1616/4676/2074/23347/6046/8340/7314/80152/7520/2071/11277/22907/51750/8971/8520/23569/57680/55870/83743/2852/26993/23421/1161/5619/1654/23523/22893/4673/3020/8341/7141/64754/7142/51773/4331/10270/8450/7994/6847/2965/23064/25/254394/7486/1060/5620/5887/50485/22985/10595/404672/6662/7155/79903/54623/25913/546/2967/1105/10111/2068/1107/1643/3005/7157/57798/23522/57082/7508/5813/7259/23270/3087/7507/6594/4674/64061/4675
## GO:0031396 991/11065/27338/4085/55765/5347/55215/9636/23560/6502/8767/26271/330/79139/8877/575/706/10059/409/80758/7128/9111/1020/6659/26191/23028/9474/3301/85453/672/9373/2280/7321/57162/5582/10625/9532/7334/3984/5716/55611/3326/7332/57761/201254/7965/64127/8291/3309/10196/26272/11170/3320/23640/10892/9683/9349/2534/55743/5861/11338/55294/51035/22976/2475/26232/59343/10075/54552/6201/51160/6187/329/1616/11146/331/8915/51343/284/11261/754/7314/7046/2801/207/6188/553115/5581/23251/8312/11315/10116/54765/2931/7189/9320/9709/23376/6872/148022/57599/8841/5663/25898/8555/5728/4092/3300/5414/64844/10210/25/51438/51366/5601/5300/6135/9646/10273/9112/9529/8473/1025/65018/7375/554/23077/2729/5071/54778/2874/1407/154/23328/7337/2295/408/64689/8452/819/7466/6478/80762/9810/80279/10016/8864/857
## GO:0007595 1448/4830/5471/353/4939/7422/8997/2692/3091/3099/5469/7372/7498/790/9148/6531/462/1723/4580/5617/2806/1447/7421/27023/51043/7392/9612/1385/5066/538/6777/8648/6776/595/5021/540/8835/5618/7494/857/2697/1036/2066
## GO:0031529 5341/1236/23603/29887/26228/3383/54849/92154/25940/5216/23616/382/391/5217/57175/3636/199/8394/5962/2475/9530/3265/23242/6366/5879/81565/23191/55604/9842/1436/59338/51763/23647/4070/22871/23189/64787/26084/7168/54869/51474/857/51466
## GO:0043113 3695/8326/3689/1020/348/1000/23657/1399/3683/4593/5284/3676/2119/9093/8636/975/9463/54434/2316/7040/1742/10243/2898/8174/2901/55764/2339/1855/375790/9270/11079/4038/9378/5649/9379/22871/7070/2934/57728/5764/8292/9863/2743
## GO:1903793 8792/59272/1051/8564/4282/468/5027/348/551/1080/5724/10991/885/23204/552/3553/6754/6569/5608/5020/335/2170/51499/4923/1906/6529/135/183/5663/8398/22925/8600/10347/1579/22930/10396/5580/51761/5025/5243/6812/5244/18
## GO:0048207 1075/6396/7039/2153/10113/10959/51693/1522/27095/5265/10342/10802/83696/9554/2348/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/374/9632/966/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/10016/1294
## GO:0048208 1075/6396/7039/2153/10113/10959/51693/1522/27095/5265/10342/10802/83696/9554/2348/8615/5861/23256/5537/90411/4905/59349/3998/10175/51128/81876/55291/10972/22870/6811/2801/553115/9871/9570/7109/1453/8775/11196/22872/10282/374/9632/966/10427/79090/6399/2157/9919/2890/10484/64689/23243/8452/10016/1294
## GO:0071242 890/445/116372/114/26/3066/1812/1132/468/1133/6001/5724/5594/2554/2551/2769/1785/1137/836/1141/58530/8851/1729/1399/2562/156/199/2561/4988/6569/1131/2782/3747/2566/3184/10533/3269/840/2767/493/1136/375790/9475/25/2560/2771/1392/23236/839/5071/2776/5595/1129/3397/1393
## GO:1904888 55165/50515/2304/3638/4522/257/9775/10736/79977/3975/2778/1399/1954/5079/7289/2303/4838/6495/10584/3198/6899/27173/7046/7040/5156/9968/4323/4087/2249/51715/7291/4325/1112/4762/51141/29072/2263/7020/8626/3199/1499/10265/4088/860/7042/4208/5396/7048/9742/57728/4488/2737/1746/7043/652
## GO:0000041 57348/7037/1356/50617/29986/9997/1317/1244/2694/533/64116/27032/7226/9296/525/4504/7036/1785/9114/22853/475/6948/6556/2288/2512/7018/10063/55532/55240/57130/528/94081/23545/4241/5818/3658/51606/55676/57192/529/523/526/23516/1213/9914/527/567/27173/51076/155066/537/51382/1318/9550/10312/9230/7781/2495/64924/4891/8992/10463/55334/3077/23479/538/9843/392/535/534/7779/540/25800/6947
## GO:0043473 6663/1001/2019/4948/4647/3549/4644/164/84079/1908/10018/55212/8975/81839/581/1813/11234/10913/5873/51350/372/5861/3257/5443/7299/8766/8943/434/26276/56999/81285/65082/10981/4157/1896/6490/967/8455/2767/9230/2647/10159/89781/10540/23334/3815/357/9839/4935/8195/9896/538/8546/1130/1910/4286/7054/23682/4763/51151/63971/4435/596/80070/55686/4208/64284/6591/585/4254/6678/5167/2737/79083
## GO:0015872 3351/3737/1812/1133/1814/1137/1141/6531/1813/6581/2668/5865/26281/11315/6580/1861/6623/4986/1815/8973/3356/65018/1268/6622/5071/4887/6387/6571/18
## GO:0030866 9493/29127/1894/5341/1020/7124/3996/3071/811/382/2035/27183/752/7429/1739/23433/2036/10015/6093/7430/7094/9475/112464/2037/5872/23136/5357/3551/30846
## GO:0045920 3162/11314/3965/613/29091/2213/3134/729230/255057/8832/3598/5978/2332/7879/5908/634/5906/301/9525/11141/2294/2771/114088/6814/83452/6622/5071/29/150
## GO:0051955 59272/8564/5027/551/10991/885/23204/134/5997/552/2917/5999/383/4923/4889/6529/135/183/5663/22930/6622/10550/27347/9900/6812/3952/8864/477/18
## GO:1903393 7422/5795/6422/382/3987/3273/5879/1845/8826/6281/10982/6093/9448/25/9270/57669/9647/7070/6385/118/4088/7010/9922/3791/7248/8829/4653/54361/1307
## GO:1905508 6790/10615/6491/29887/23636/55722/2932/79648/27185/55968/55125/50855/23386/11190/57787/22994/51134/1453/26005/10540/636/137886/9851/324/2804/10464/5108/4926/585
## GO:0003170 639/6659/7133/2626/6091/64220/4193/6910/4091/4851/2475/4772/6615/3516/56999/7040/7132/657/4089/26508/6093/3491/4853/9475/10439/650/7541/659/7291/4846/6662/6474/90/5925/2702/23493/182/1942/6586/4194/23462/7042/4208/9353/7048/8642/6591/11117/5138/2006/652/2625
## GO:0031646 10874/6663/5024/8530/6285/7143/745/7133/5724/1143/885/56288/22997/3687/2185/4099/2902/50944/54413/2475/7476/23316/9699/784/6804/54434/4544/10810/5999/1742/3060/4923/10458/22999/5728/1855/4987/1605/3673/9921/9378/5649/22871/154/23405/10497/3082/5590/26011/8604/9607/18
## GO:0046888 56943/8997/3623/3589/151/6422/5211/152/134/5008/7351/3033/1813/64111/353500/3745/3553/5781/9515/7447/5978/6865/5715/80223/9727/4544/3156/1906/8074/2693/9448/8620/3976/4986/26056/1392/5071/3624/1407/5530/23409/8609/2281/1393/3952/3625/4856/6720/3667/9607/150/9370
## GO:2001023 51765/51083/3351/3737/1812/7295/5831/8013/10131/8091/1814/23204/1137/1141/9283/5997/5660/1813/2861/2661/3586/5781/2668/5151/6865/2557/5865/2021/26281/4233/4780/5999/383/11315/5074/1861/135/183/6623/5663/1136/10013/2587/4986/1815/8973/8737/56729/3356/2309/65018/1392/1268/4297/6622/5071/10550/8648/3082/27347/4887/8864/477/6387/18/10974
## GO:0033047 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/8260/7517/25906/8379/23137/84861/7756/55795/56984/7175/996/9555/3192/51451/51143/55719/55755/55781/8697/472/56155/8658/546/3550/5925/8452/1843/324/8678/4926
## GO:0035418 1020/55737/40/3799/5602/2902/50944/7014/4218/7476/3265/1740/80852/6616/3798/1739/9746/5906/1742/23162/22883/8927/2903/10458/23096/1855/4868/2693/1605/102/51104/9912/9211/2905/9378/5913/9379/22871/4130/3315/27065/27445/7474/5590/23426/5874/3800/2239/4137
## GO:1901606 3620/6999/875/8564/80150/8942/5471/23464/191/10247/10993/2805/56922/2653/51268/3034/5009/4143/4842/4552/1738/189/2806/5625/2744/1610/8659/1743/501/4967/3242/4843/64577/2572/6470/10841/5053/1428/383/23569/2639/493/2875/2747/23498/5092/2731/58510/26275/4846/3712/89874/38/23576/883/3081/587/27034/23564/55258/2752/2571/549/2184/2746/3067/3155/2954/4329/5860/275/3176/64087/8528/443/1036/6898/10157/51380
## GO:0045446 3383/60484/9076/7124/7852/5629/8985/9414/4478/7498/50848/2876/57826/7477/2194/25932/5962/3553/93/654/4851/7476/2889/3516/5144/5908/634/8721/3084/7132/4233/26051/9294/694/55810/5906/10630/3911/2658/4089/6093/7430/9475/54345/6781/4301/659/2116/23135/2022/64321/4855/5802/7026/90/7082/9693/2150/118/5175/1499/26084/23493/94/3215/182/5624/7716/1901/80781/23462/3397/57493/8829/1003/10411/55273/5764/5138/3551/6935/2947/7122/652
## GO:0055076 6280/6279/7037/3934/3932/4609/1356/3162/4502/9997/57817/2395/3091/4504/10058/8454/7036/9114/6556/54583/2512/7018/55240/4738/55832/23545/5621/4241/3658/6647/7782/212/654/523/23516/8943/27102/6005/3163/331/567/81894/8301/51076/2038/537/51312/26872/9550/2658/4089/351/7781/23400/2495/64924/48/4891/28952/10463/8692/8031/4682/4756/3077/538/9843/5071/6500/4057/51310/7779/2034/80762/540/26234/6717/164656/56898/3263/25800/9429/79689/79901
## GO:0006814 81831/1482/60482/3775/6535/55117/483/8884/4704/6329/6338/10246/57282/5027/7226/525/10021/610/6555/2257/6446/1785/10991/6520/8647/1814/7533/29099/40/55238/10786/2745/9033/6559/64849/1813/4842/6334/3799/6327/6331/6336/10568/6323/57084/9058/41/6569/1756/64078/6574/8671/55515/6568/9368/54800/1739/6528/478/476/859/11261/55089/65125/5318/207/7040/5349/5581/26266/51297/486/5270/57030/81/9962/6324/54407/493/6640/5774/6339/6550/6328/6332/288/357/2258/1815/4846/145389/23412/6526/10768/23315/6554/81539/2040/6543/11280/5187/6546/6335/25769/57835/10050/124565/154/1760/9497/6326/6575/26504/6561/6548/6337/27347/54997/7402/29098/9187/482/5025/57419/80024/5311/26249/4734/6584/6583/57731/481/54795/6340/159963/1272/477/23327/10916/23171/55800/9498/5348
## GO:0014015 4821/6663/712/1869/4067/3066/274/706/7124/3569/4049/7097/7852/4192/7133/729230/3398/1399/10215/5970/6009/3065/5501/5584/4099/3553/7074/10419/2119/4851/2475/27339/4825/177/1435/23529/7040/5270/6692/23376/351/57165/5324/650/7161/1605/5803/5583/3976/3280/23405/22891/4602/26011/54209/5025/5468/6469/5764/443/4035/3572/4036
## GO:0002823 10859/3575/5788/9466/30009/6375/1378/2213/3135/54542/3134/3558/725/80149/7292/3718/2302/5777/722/51043/634/50943/383/3566/56940/4092/149041/9984/3440/3077/9173/3456/5532/604/10039/90865
## GO:0019835 3002/4069/5551/3001/10859/3853/2999/3929/5027/733/4277/735/731/23531/3004/8542/57151/57115/732/57824/8993/3273/79792/3080/2147/7040/10670/1437/5196/2822/81494/5076/729/100507436/727/730
## GO:0031279 9568/136/3208/8811/729230/1394/1432/8484/4883/6786/7077/2773/53836/79849/1816/2917/5599/2912/5957/9495/56413/2979/2978/2587/2981/4846/2771/2913/1910/5595/4763/10142/84059/775/53829/776
## GO:0042987 4067/274/1944/348/2280/836/2043/55851/51107/5621/9001/23163/177/1859/10972/8301/2319/2931/23385/351/6093/5663/9475/102/5664/10347/1201/9619/23025/1718/54103/1942/6653/1191/10418/3479
## GO:0050435 274/51471/348/4248/836/2043/55851/51107/5621/3416/9001/1636/23163/1859/10972/8301/2931/23385/351/6093/5663/9475/102/5972/10347/327/23025/23621/54103/1942/8678/4311/6653/1191/10418/3479
## GO:0071824 1062/55355/79019/55839/81620/8208/4171/55723/79682/3159/2491/5888/11339/3070/1058/4609/81611/1063/55506/51053/8970/8357/3024/3148/10036/3006/92815/8607/3008/7290/3009/8345/23198/10541/4678/54069/9328/3018/142/7480/3014/9978/55166/85453/8290/3007/6119/79711/55320/4778/79172/1642/9557/6597/2958/25842/201254/5757/4869/5931/6599/5928/64425/3010/6117/2968/55832/6944/7311/11198/8467/8348/7067/26038/6418/6603/9349/9025/79003/2959/9271/3146/9014/6118/1069/10664/8451/9555/8342/56979/29855/6233/7316/9733/9330/7258/6602/8349/50809/1616/4676/55011/6928/6046/8340/6598/7314/80152/2071/8888/5893/6047/11176/8971/8520/6605/23569/7343/83743/23421/7013/23523/6872/4673/3020/55729/8341/6666/7141/64754/9013/7142/6604/51773/4331/8450/54700/7994/2965/1385/2073/1060/5887/6908/1022/8554/404672/6662/112869/79903/902/29072/54623/546/2967/8289/5925/2068/6601/1643/3005/7157/51112/23493/23522/57082/26054/7508/7259/23270/676/7507/23126/6925/2099/4674/64061/4675
## GO:1903409 55765/445/2643/8838/1535/3458/3689/3383/575/706/5806/215/7124/50506/5743/1536/10131/140885/1785/10333/54/3326/384/1728/1544/2644/55532/3320/80149/199/4842/8837/2185/3586/5873/6647/7099/2534/3553/2902/2475/1545/4843/5879/4353/3630/207/3717/9314/8570/5740/11315/186/961/1906/148022/493/6774/183/1497/9475/387/8729/4846/6095/53905/6697/9722/2309/23576/9104/4317/6622/56848/9759/23564/4088/10365/7755/2717/1543/3643/3043/947/225/948/5025/5311/50507/7350/857/6542/6571/1191/4129/1524
## GO:0001676 9415/80339/80142/2950/6916/11332/1557/239/873/215/79071/246/2180/5743/4644/1573/2182/1374/64834/5321/242/84830/1544/23305/10005/747/23205/10728/4051/9444/5730/9536/1545/28965/51/1559/81616/1565/5740/59344/4048/2938/2879/51703/5066/1579/11000/6342/240/1576/11343/1571/1558/5354/10998/5742/30/5595/3248/1543/2181/8644/27306/11001/8605/2166/60481/2948/3295/2946/3991/247/66002/4056/54898/2053
## GO:0007030 983/9712/7534/7443/5604/5605/51501/5594/10228/25839/10959/1785/8934/54732/55666/64083/10133/50999/8615/9183/5862/5861/55014/10419/998/11235/3998/3801/8548/5587/6811/2801/8675/9659/10565/23207/51361/9820/10494/23332/1263/93643/1453/2580/11196/8874/3064/400/9950/8729/23271/8674/1452/9529/83452/60684/9321/23363/27314/51332/54828/30845/22878/5595/9648/51112/64689/53407/54808/22796/10142/2804/23122/55204/23345/79659
## GO:0007189 3627/6373/4283/333/133/3973/136/114/2642/4159/1812/8698/79924/8477/2692/4160/2641/2827/23432/4161/5578/8811/1394/153/113/4158/1814/2778/5732/796/5731/266977/1113/4842/109/4988/6754/2740/1816/5739/2782/9368/6014/19/5144/4157/2931/5196/2852/11214/493/135/7253/10267/116/799/2587/4987/5741/7432/2771/112/115/9693/3375/107/2774/108/10268/5745/2691/10203/5350/5744/150/10266
## GO:0043624 81930/146909/11004/6712/51373/29088/5341/29767/28998/3925/7111/6182/51650/119/51642/6183/57553/51081/28977/9829/64960/11222/65094/23616/90480/9793/55168/65003/88/51069/55052/65005/63875/26586/9801/7818/9553/56648/29074/51073/51318/3796/1984/54148/10763/64963/822/51116/65993/65080/27183/10300/6710/55239/6150/3396/51021/4281/1072/64976/79929/56945/55173/5962/64780/6683/60488/29093/64975/9948/58526/79590/4905/11344/54998/64981/26589/59341/7429/26284/6456/2107/5018/5976/51504/10573/55604/55037/9181/28973/740/29766/54948/6455/8867/9525/28957/23332/54516/2580/10677/10013/2039/5195/6708/78988/122704/10519/11078/2258/9645/2059/6711/327/10240/11034/51332/2150/50810/6588/23107/146057/118/51023/4131/23075/25876/29104/9617/324/63931/444/23122/11075/6709/2934/57731/10884/89795/347240/9037/85477/51474/89927/57551/50853/25802
## GO:0018107 983/7272/1111/5347/8767/54541/8877/1116/1020/7443/5604/2641/57214/2011/1981/655/1950/1460/5594/5578/2932/790/22853/56288/5579/7224/8851/156/566/4294/3093/9943/5566/28996/2475/5599/5528/10114/1859/199731/5587/815/7046/65125/207/7040/22933/8312/9294/2931/7225/5585/351/1609/29110/91/6872/51701/25865/4092/9475/5470/2039/5170/51763/8408/5580/51422/9730/8658/90/8558/200734/51719/10253/27347/7474/596/7048/1195/7786
## GO:0035335 1844/1033/993/994/995/5778/2070/5788/2140/1852/2138/9829/26191/5801/5795/5771/52/8732/8898/5775/78986/1849/63904/5794/11156/11072/7803/201562/2139/8776/11221/5770/5798/5792/5781/92609/8446/64419/5777/4534/9108/10076/9110/5796/5784/54434/8897/1845/11266/5780/9107/5782/51207/5774/1847/56940/8555/5728/5803/5800/283871/1850/7179/5789/5786/5802/11099/26469/5791/8556/8073/1843/5799/5797/54961/1848/5787/5793/5783/1846/11122
## GO:0048661 4318/6352/6502/6772/3654/1535/3162/5031/10257/3351/1991/239/2254/1786/8013/7124/3569/5743/1956/6376/3596/5724/7052/3570/5345/1839/10135/5058/3398/2081/231/2069/3606/27035/199/2773/3586/4193/2475/5155/7015/9510/10891/4854/4217/4209/207/3717/3156/657/55810/7189/4889/1906/183/4835/3725/4331/3673/9927/51135/2771/3488/55512/26119/2263/7057/9759/3248/4602/1901/8840/7048/2247/1012/10203/4313/5159/3479/80310/652
## GO:0007586 10874/55765/8544/5645/29881/362/5646/336/51302/8435/29887/3783/2984/57817/79924/3938/1890/1118/1133/9245/5406/9414/887/11171/6518/4585/6446/6476/1056/1814/64240/50848/64127/5731/4883/5644/2035/3949/949/10062/440387/248/3274/1314/3658/6718/7099/7421/2168/5020/335/1645/65010/4583/1646/1131/7429/6523/6343/5225/10891/6869/80168/65125/56287/4760/1208/5408/7430/48/6514/27159/9026/56667/2693/4987/2981/4986/6662/1392/4762/64081/3784/10753/5357/12/6750/27347/6779/2169/948/5021/6584/5950/4588/358/7357/3952/51474/6863/7349/150/8972
## GO:0009581 58473/6247/5146/8557/24/409/2792/8989/9600/2780/7439/7852/23596/7273/23173/2047/23746/1259/4914/79955/6121/40/9397/134/5145/23349/2986/2779/79823/2063/63982/9293/59335/6011/6323/2534/50508/8048/7287/10692/784/5148/7222/2782/57053/51109/859/5957/10002/778/2916/5270/10893/4923/80036/2979/10988/79054/2767/55584/6010/611/2339/5995/1040/1258/2978/3728/5132/3815/2294/3673/54112/8195/56925/6295/4836/5475/25861/3000/3356/5310/51761/2776/5158/408/23621/1301/3736/9094/5311/84059/6785/2868/6387/63895/3249/55107
## GO:0035710 26279/8767/91543/864/3458/942/1880/2529/30968/30009/6375/4063/5588/3965/9308/865/3569/5971/3071/54542/54440/3593/8651/3558/3592/6693/384/3662/941/80149/3606/6363/5734/10892/7292/11126/1604/3718/3146/51176/8809/2475/975/3142/177/602/51043/50943/114548/301/64218/5075/10312/6774/3566/4092/3594/149041/51561/6304/6095/10538/538/9655/6778/5914/4602/604/57045/5590/7048/6097/2625
## GO:0051225 991/9493/4605/259266/22974/4751/3832/9212/3833/6790/24137/5347/29127/10615/54801/29899/26271/1104/11200/203068/4733/81027/5119/9126/55559/56647/3837/3796/49856/7756/23354/55125/51510/79598/7175/8766/6795/8243/25978/9897/3192/2316/2801/23172/6188/6047/9525/8086/23332/57132/1453/8841/10735/79441/1778/152185/387/26112/4292/140609/10274/8658/9611/27243/80254/9371/55142/126353/26054/10464/9639/4926/79884
## GO:0071230 53335/445/1051/2730/1535/58528/1788/1786/7124/1956/1536/3297/8651/9148/2742/84861/2534/1282/2475/3843/6495/10542/28956/64121/3184/10670/5156/2741/26012/10458/64506/4976/824/538/598/2729/23304/8649/51520/1291/10325/22849/1278/1277/1281/1290/4313/56034/23677/7494/4915/6935/80310/1307
## GO:0006361 5435/10849/5440/6597/5437/9533/64425/221830/2968/9014/55011/6598/2071/11176/7343/5434/79101/9013/4331/54700/2965/9015/6908/1022/404672/902/2967/5441/2068/5595/84172/284119
## GO:0007257 5871/11184/959/6850/79444/2081/6363/7477/5770/4294/4296/9175/1616/2074/4217/10746/5609/23162/5585/51495/4293/79594/11183/29969/51776/8600/10595/8737/9064/7474/7786/57551
## GO:0033048 991/10403/4085/81620/7272/9212/9319/891/5347/1063/26271/5885/54908/8260/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/8658/546/3550/1843/324
## GO:0045740 79733/983/81620/5111/1763/8317/79915/30968/11124/1956/27101/1017/2069/4142/1660/58525/3265/5879/80174/253980/3725/2736/7126/79991/2260/546/466/6416/2735/80169/1471/7349
## GO:0060416 445/6770/6715/4067/10626/27101/5747/2688/5251/1442/5770/5617/3718/5829/6569/9518/207/3717/55777/2689/6774/2693/3488/6777/54741/2155/1373/5295/6776/8835/5618/2690
## GO:0090322 2643/1719/1535/2950/3689/6850/7124/1956/655/7305/54/26574/2358/2773/6647/3684/7040/4780/1401/683/11315/183/23334/5446/2771/5580/9104/2150/948/57126/10516/4137
## GO:0110111 6772/2296/4781/7124/655/1361/2303/55294/4851/6928/7068/26585/634/23213/7849/659/6909/54880/5076/4070/55679/1499/4435/7474/596/7042/1735/4982/652/1101/54829/2625
## GO:0007622 10874/6770/6496/6715/4159/3737/3062/100/191/2692/1959/1814/1141/3398/134/9099/4669/1813/5730/2475/80045/11245/4544/1437/135/5728/4987/9112/463/1392/7054/22871/10499/9611/9975/7157/1958/4887/8863/2691/3751/1471
## GO:0010171 1749/7473/22943/3549/29123/2778/23648/64220/5781/5083/50937/6899/7040/2033/8879/5156/23187/23332/10586/4621/6497/25976/55764/10159/59338/1605/22930/80199/6237/2719/25836/23528/64388/84159/444/23122/1277/4313/83716/4487/7043/7122
## GO:0060389 7272/22943/655/11171/1460/654/4838/4091/6386/27302/653/9958/26585/7046/7040/657/2658/4089/91/92/4092/650/659/56937/5300/3077/2022/64081/90/3624/1601/94/2662/57045/11030/7042/7048/753/11117/7043/7049/652
## GO:0021885 5194/9289/8941/1812/55079/1020/7143/7852/1956/5455/7101/6091/30837/8851/8828/3362/10371/1813/6722/25777/27185/7301/81565/27023/1600/3084/79143/23224/23380/7080/57142/5454/5663/5048/387/6900/26468/23353/2258/5649/1499/558/3912/9353/8829/85458/6387/89927/2737/114327/2018
## GO:0050766 6347/3561/1535/336/26228/1794/5788/5806/3600/3601/7124/613/2213/5795/3071/4240/57118/1785/6441/3560/811/6556/2358/7275/566/5873/6647/3553/7287/335/2889/10461/197/5906/10960/718/2624/717/3673/10347/29108/2150/29/4153/3685/948/5468/55198/11031/2621/4035
## GO:0003179 6659/2626/6091/64220/4193/6910/4091/4851/2475/4772/6615/56999/7040/657/4089/26508/6093/3491/4853/9475/10439/650/659/7291/4846/6662/90/5925/2702/23493/182/1942/6586/4194/23462/7042/4208/9353/7048/8642/6591/11117/2006/652/2625
## GO:0007632 65009/2515/1812/1020/3091/23657/885/1814/1141/4867/1813/3274/8704/2902/54413/2475/5153/3845/83658/3198/27023/3156/3688/3269/351/2903/261734/1497/6506/27020/90410/3815/1385/4204/5896/8554/10636/60626/4763/23259/10522/1621/4212/11346/477
## GO:0051353 1001/2643/1719/1535/3458/1594/5447/2395/7124/2208/348/3091/64127/4883/10063/949/2773/2185/3553/7421/6271/7014/2668/3845/7015/3630/55312/207/27/11315/186/1906/8074/183/25/2771/10392/538/9973/9722/9104/6622/1907/185/3357
## GO:0090307 991/9493/4605/22974/3832/9212/3833/24137/5347/29127/11200/4733/5119/9126/56647/3837/3796/49856/7756/55125/51510/79598/7175/8766/6795/8243/25978/3192/2316/2801/23172/9525/8086/23332/57132/10735/152185/387/10274/27243/9371/126353/10464/9639/79884
## GO:0031294 29851/1493/3932/80380/1236/4067/959/942/916/940/1445/5133/51293/100133941/7525/9402/1326/5058/6714/2885/23308/941/6363/7292/8740/11126/7409/1948/2534/5062/5781/998/5777/5063/6366/3956/1947/5879/975/5290/207/1803/11148/1949/8764/5170/5295/857
## GO:0009582 58473/6247/5146/8557/24/409/2792/8989/9600/8914/2780/7439/7852/23596/7273/23173/2047/23746/1259/4914/79955/6121/40/9397/134/5145/23349/2986/2779/79823/2063/63982/9293/59335/6011/6323/2534/50508/8048/7287/10692/784/5148/7222/2782/57053/6869/51109/859/5957/10002/778/2916/5270/10893/4923/80036/2979/10988/79054/2767/55584/6010/611/2339/5995/1040/1258/2978/3728/5132/3815/3673/54112/8195/56925/6295/4836/5475/25861/3000/3356/5310/51761/2776/5158/408/23621/1301/3736/9094/5311/84059/6785/2868/6387/63895/3249/55107/6863
## GO:0045667 6664/26271/1051/10507/7480/7124/3569/9770/655/4880/2101/3570/6422/54857/2778/5747/3398/1050/7477/4221/5727/1192/93/654/4091/5566/4851/6096/5978/2201/51374/26585/5587/51430/4745/3727/537/23051/657/79697/1052/1655/4041/8994/25819/2658/8074/10312/6497/1021/92/3491/650/374/659/9260/9464/7291/56998/8519/3488/4090/2263/90/8626/3611/3199/10140/4086/9759/1499/4921/4088/3399/4057/860/2735/2662/3082/51564/182/4435/57045/8840/8646/3397/4208/3400/4077/54795/6591/4488/658/54361/2737/2697/63923/3572/3479/652
## GO:1903322 991/11065/27338/55765/5347/55215/6502/8767/330/79139/8877/409/9111/26191/23028/85453/7415/672/2280/7321/57162/7334/5716/7332/10010/57761/201254/7965/54472/64127/3309/26272/11170/80149/23640/10892/55743/5861/55294/22976/59343/10075/54165/9733/6187/329/331/8915/51343/284/754/7314/2801/553115/7329/8312/2931/7189/405/148022/8841/25898/8555/5728/4092/79594/51588/5414/64844/10210/10318/51438/5601/5300/25950/9646/8554/10273/9112/1025/65018/554/23077/5071/54778/1407/154/10401/7337/9759/408/64689/8452/7466/80762/9810/80279/10016/29997/857
## GO:0006706 6715/51302/1594/6783/6696/4504/1588/1056/7533/1593/1544/949/1591/6718/51171/9784/8578/8074/412/8630/1576/10858/51170/1581
## GO:0042730 5329/2160/5054/5345/2161/5340/2243/3848/5328/2266/2811/1361/5055/3273/2147/2244/3818/7057/350/710/5627/7056/2191/5327
## GO:0048596 5080/6664/6496/3549/5629/655/64220/7855/28996/51384/65979/10818/204851/7291/6909/220/6670/5076/7054/7020/8289/2295/7474/6935
## GO:0050901 3695/6402/7412/119/1991/6404/7124/2650/5724/729230/6693/64083/50512/3676/6366/6401/3688/8174/6093/6370/6403/3952/6387/1524
## GO:0051894 7422/5795/6422/3987/3273/5879/8826/6281/6093/9448/25/9270/57669/9647/7070/6385/4088/7010/3791/7248/8829/4653/54361/1307
## GO:0070897 9328/7480/6597/2958/64425/55832/7067/2959/3146/9014/9330/55011/6598/11176/7343/6872/55729/9013/54700/1385/6908/112869/7157/2099
## GO:1900739 3002/1869/2810/637/7027/7534/7159/5366/10971/7533/5534/7029/7529/841/5599/7531/572/7161/23368/5533/4836/8626/7157/596
## GO:1900740 3002/1869/2810/637/7027/7534/7159/5366/10971/7533/5534/7029/7529/841/5599/7531/572/7161/23368/5533/4836/8626/7157/596
## GO:0001843 9355/133/6491/8543/5898/8092/9585/4522/6768/5216/6862/5567/79977/10959/23513/6422/8323/7408/2348/5727/7289/5566/4524/10653/23242/6201/54910/11146/23654/8915/7040/7189/9968/6692/65979/6497/317/55764/5754/55081/25/7976/9839/7291/5916/80199/2648/7403/10427/7249/5076/2909/10395/54903/1856/29072/9620/8289/6385/8321/2535/10522/5914/7474/7248/7042/11019/585/652/4036
## GO:1903725 1236/4067/341/8525/79888/30968/930/1133/9021/887/8898/8651/3417/2784/9971/5747/6714/64127/30837/2358/3949/949/6363/8776/23533/7410/2321/2185/116986/9306/9711/3358/5155/6366/9110/2170/975/8897/55626/5587/7040/9314/6901/5156/29062/5154/824/3815/30849/3356/1154/5580/2268/23682/9655/113791/5295/7010/2322/2181/2261/22863/221395/66036/2247/8835/5159/3357/3667/10451
## GO:0016126 1717/4597/6319/6713/29881/3422/3930/2224/10449/10682/2539/50814/5447/3638/39/79071/348/5901/51700/1080/3157/6721/6307/3837/4800/2194/6647/4598/4802/2222/47/4047/1727/10613/3156/7555/8720/51360/9619/22937/4801/338/31/10654/6667/51422/51141/5562/7108/11160/9453/1718/5563/51478/51706/2246/6309/1581/6720/32/23541/3158
## GO:0048678 983/1719/4067/706/6696/7143/5604/5905/3776/11202/7305/4914/2896/2043/2056/581/199/1813/2348/4099/6647/5792/335/25828/3956/81565/9860/8428/378/3717/9314/383/23162/8578/4149/3725/5728/2695/1605/3670/23098/2696/4916/1495/22876/4548/5802/29956/4131/23767/3371/596/5025/1809/4747/2281/83700/5764/1471/4035/347/3913
## GO:0002577 3112/1236/10288/10875/7454/2213/55080/6556/64127/3111/6363/972/6366/968/10392/3077/29108/7057/54209
## GO:0002726 91543/6375/3569/7186/54440/7855/3606/10892/7292/3553/6885/8809/975/567/114548/7189/3554/5590/2625
## GO:0009713 2643/1644/55737/6531/2861/5409/1610/5053/11315/186/3642/9464/7054/6622/3067/1621/4929/7042/2625
## GO:0031280 9568/3208/8811/729230/8484/4883/2773/53836/79849/2912/9495/56413/2587/2771/2913/1910/10142/84059/53829
## GO:0033189 7298/1789/57817/1788/5467/2626/2056/6569/7252/383/9227/847/8854/56603/4131/5914/1543/5468/1592
## GO:0042423 2643/1644/55737/6531/2861/5409/1610/5053/11315/186/3642/9464/7054/6622/3067/1621/4929/7042/2625
## GO:0051580 1812/2824/1814/23204/5997/1813/4842/2668/5865/5999/1861/5663/1815/6622/5071/10550/10211/8864/477
## GO:0071731 890/1236/7186/9131/4504/1785/54583/1017/6363/8837/3747/3184/1398/2983/1800/4548/4314/2308/358
## GO:1902170 890/7186/9131/4504/1785/1017/8837/3747/10891/4217/3184/1398/2983/1800/4548/6778/4314/2308/358
## GO:1990182 3458/10987/8027/27183/5873/11267/6386/8766/7879/9146/9525/7251/10015/23400/6382/55512/5071/6385/27243
## GO:0009303 55506/10849/9328/10360/4141/1663/6597/25926/2971/2976/9329/4691/11137/51547/64768/2475/9555/9330/55011/6598/2975/10927/2972/7157/84172/29997/284119/283
## GO:0010543 5341/4067/239/5588/6850/348/5578/7006/2266/7099/5155/928/3273/2147/634/5156/5270/10019/114897/10630/5154/2039/4846/5580/5592/6403/7056/18
## GO:0010743 5320/4792/3606/10062/4481/1071/5465/1435/19/1401/1437/5196/4790/183/3690/5583/7376/5601/9619/338/3685/948/5468/23461/4023/247/185/9370
## GO:0010862 7272/655/1460/654/4838/6386/27302/653/7046/7040/657/2658/4089/91/92/650/659/3077/2022/90/3624/1601/94/2662/57045/11030/7043/652
## GO:0032743 8767/942/5788/916/940/5588/9308/5142/7186/54440/729230/3552/3662/920/941/10892/3553/6885/11146/5144/6188/301/7189/25865/25/6711/6777/79679
## GO:0060603 5469/6356/25928/5371/23513/6714/11331/5727/7421/2119/1435/859/1969/10765/7040/1436/2736/374/9423/2263/8945/7474/4488/2099/54361/367/6926/5241
## GO:0061082 10859/3162/9188/2207/23586/4282/8013/3135/1113/51704/972/7099/1653/8915/7040/79004/148022/8482/3815/23411/57506/604/7474/948/7042/2621/11213/7043
## GO:0071539 6790/10615/6491/29887/23636/55722/2932/79648/27185/55968/55125/50855/23386/11190/57787/22994/51134/1453/26005/10540/636/137886/9851/324/2804/10464/5108/585
## GO:0090022 3576/1236/6375/3929/5880/3071/4192/728/57118/719/708/4354/8291/3579/6363/23604/972/6366/5879/27202/683/158747/1906/9750/51561/9353/83700/7060
## GO:2000142 8061/1482/7480/6927/55832/6722/7067/2959/3146/22976/6928/6872/9774/55729/3725/54700/23064/1385/7291/56998/4286/6879/1499/7157/23493/26036/27136/2099
## GO:0032649 3595/9636/80380/51311/914/8767/1236/10859/1054/3329/10225/916/9466/3394/6375/3965/10148/929/26191/7124/4049/8772/5142/10125/54440/3593/140885/3558/729230/3623/3592/51571/7294/51744/708/9971/6556/7356/7855/80149/3606/57824/5621/7292/3586/11126/7099/3553/3146/8809/3265/3113/602/5144/50943/59067/3115/961/3594/51561/25/51284/3670/7098/9173/26525/29108/3624/5914/3554/7474/558/90865/2621/2625
## GO:0060840 639/2296/2253/2138/7422/6659/5629/348/4192/55636/1785/4052/8928/6091/64220/3949/6722/2348/84516/27329/1948/93/2303/4091/4851/9784/6495/10454/3198/11174/6899/4854/3516/56999/7046/657/8131/4092/163/10000/659/2294/9464/6909/10427/338/4824/2022/57178/23129/4638/4015/3280/7798/2702/4763/23493/3248/94/182/4628/5311/23462/7042/221395/5396/8829/6469/1281/3952/7481/5159/4016/5138/4035/2737/1311/652/4036/7021
## GO:2000060 6790/5347/7336/9978/7415/1950/10221/10134/55212/2932/5716/26263/5747/5886/1050/8078/6613/23640/2185/27185/55743/55294/4193/57154/64110/859/7341/207/22933/149628/4780/8312/65992/28951/2931/9817/9709/1263/1453/6872/11236/29978/5663/55070/25898/5728/1855/4092/28952/3300/6449/1452/5601/863/8554/10273/1454/2729/9655/5071/1601/29997/90865/10769/5988/857/1191
## GO:0000096 875/2730/6611/191/4507/4522/58478/1312/23657/7263/4357/4143/84890/51074/4552/189/4524/25828/55256/9054/1491/4594/635/51449/1800/441024/4548/2729/4482/1373/27232/50507/23743/1036/51380
## GO:0050433 3351/3737/151/1814/1137/1141/152/156/1113/1813/3745/2668/5020/6804/5028/26281/186/135/183/6623/2693/4986/8973/3356/65018/1392/1268/6622/5071/4887/5021/6387/9607/150/18
## GO:0035303 26472/221692/5341/28227/3458/9258/11314/9088/10288/10507/5788/60385/945/23076/7124/284352/1133/3071/2280/5610/8898/2932/22853/151987/57718/78986/7184/3326/5521/8178/51400/134/5514/23381/80316/58529/5511/1813/55012/8776/11123/5725/6418/5523/9887/27328/10842/1827/3486/261726/55125/5529/10199/63935/7529/2475/9530/1740/5526/23141/5528/9110/51231/5518/5527/55844/51657/23645/8897/55291/22870/64062/11261/65125/3717/7040/5519/54866/26051/23307/1741/5504/8826/186/5524/8725/4249/65979/7531/10776/23523/80034/26012/5525/63928/6093/5520/2822/9749/8036/9475/3064/81566/650/5510/3673/3958/10421/2771/5300/23504/23293/9989/51763/4659/26229/8189/6295/10160/2029/10395/65018/5580/3672/6609/9104/4642/1760/63898/23075/55105/4088/3476/10231/57082/9858/9814/7248/80279/7042/4208/66036/9665/54843/2281/5502/9891/5764/5159/3551/9863/23261/5507/1408
## GO:0000723 4751/9212/9156/5888/898/9134/2237/22948/5984/4609/5111/9401/641/1763/5427/23649/5982/908/5557/10576/5558/5424/2072/5983/5588/4683/142/5425/54107/54433/7517/8290/6119/7203/79677/10574/55505/675/5591/5594/10575/5371/5889/64858/5985/328/3326/55651/6714/65057/55226/8550/5514/3181/26272/23137/10714/55183/23381/2547/6117/4361/3320/5426/79035/10728/7014/6118/10694/54552/3183/7015/51548/5976/3192/3184/5422/7520/5892/5609/51750/54386/545/55135/7874/7013/6672/7011/5073/7515/80351/11284/7486/3178/24144/23293/50485/79991/26277/140609/5981/472/25913/8658/546/5394/10111/2067/5595/1499/22891/4216/57804/80169/79618/167227/3104/10039
## GO:0006665 7368/6489/8708/2529/8877/2525/27293/3696/79152/4759/7124/5027/9334/221/7915/57733/9217/5476/8560/55750/29095/64834/242/8128/2528/2760/64781/51046/201562/53947/81849/5660/54982/581/10825/8703/2720/2055/6439/51228/8439/1455/2531/6610/23659/29906/5518/1390/23683/8706/410/8612/5587/7903/10558/8879/171546/7132/259230/9514/80772/23344/2527/2583/9517/9215/81537/27429/8869/8705/59344/9331/347735/5023/10400/412/3074/3491/25865/9218/55852/5515/3815/8398/10955/1201/5538/55512/256987/5580/8613/7054/4758/6609/222/5562/8707/56848/2581/253782/29956/224/2717/427/3073/55304/10087/57515/7357/8611/79603
## GO:0033866 5163/6319/6576/11332/1737/9200/79071/5160/5165/2180/9061/25874/2182/5161/8050/64834/9060/51144/23305/201562/55066/23205/1738/2194/10861/60490/47/80025/81616/54704/2639/55229/1836/51660/9524/79717/51703/5538/31/38/23417/80347/79646/6622/5162/5164/79966/2181/2954/6785/7923/60481/5166/84869/32/54898
## GO:0034030 5163/6319/6576/11332/1737/9200/79071/5160/5165/2180/9061/25874/2182/5161/8050/64834/9060/51144/23305/201562/55066/23205/1738/2194/10861/60490/47/80025/81616/54704/2639/55229/1836/51660/9524/79717/51703/5538/31/38/23417/80347/79646/6622/5162/5164/79966/2181/2954/6785/7923/60481/5166/84869/32/54898
## GO:0034033 5163/6319/6576/11332/1737/9200/79071/5160/5165/2180/9061/25874/2182/5161/8050/64834/9060/51144/23305/201562/55066/23205/1738/2194/10861/60490/47/80025/81616/54704/2639/55229/1836/51660/9524/79717/51703/5538/31/38/23417/80347/79646/6622/5162/5164/79966/2181/2954/6785/7923/60481/5166/84869/32/54898
## GO:0045669 6664/26271/1051/7480/3569/655/4880/3570/54857/2778/1050/7477/1192/93/654/2201/51374/5587/51430/4745/3727/537/23051/657/1052/4041/2658/92/3491/650/659/9260/56998/8519/4090/90/8626/3611/4086/1499/4921/4057/860/3082/182/8840/4208/3400/4488/658/54361/2737/2697/3572/3479/652
## GO:0042035 3902/51311/10859/1054/1051/4050/336/10643/3162/942/1991/5788/916/7096/10644/3659/940/3929/5588/9111/10148/6850/7124/3569/64170/1536/7305/5724/3578/3593/6441/729230/3623/10333/5606/6693/3552/3662/920/2069/3635/941/10394/5970/9261/3586/566/7099/943/3553/2302/11146/177/602/57336/51465/8915/50943/9314/59067/28951/23139/7189/4790/351/29110/148022/6774/51665/7538/2693/51284/7098/5607/59307/6777/7057/7072/3624/3315/1958/7474/79589/3625/9590/1524/2625
## GO:0043242 6712/29767/7111/119/7124/26586/822/10300/6710/4281/79929/5962/9711/58526/11344/7429/55604/9181/29766/23332/10677/10013/2039/6708/10519/11078/2258/56893/2059/6711/23274/51332/50810/6588/146057/118/4131/23075/25876/324/23122/11075/6709/2934/57731/89795/85477/51474/11213/89927/57551/50853/25802
## GO:0046637 639/8767/4860/864/3458/942/30009/100/3549/3965/9308/865/6850/3071/54542/54440/3593/8651/3558/3662/941/80149/3606/6363/10892/7292/7535/3707/3718/3146/8943/3142/51043/50943/114548/301/3566/4092/3594/387/149041/51561/8546/9655/5914/4602/604/5590/7048/6469/7704/2737/2625
## GO:0003044 59272/1535/3291/1908/6518/153/5345/1814/1522/27035/1816/1585/1636/6869/148/81285/5144/186/1906/2028/183/10159/387/5972/4846/1215/2150/1889/2702/7168/2149/1907/1511/4311/5125/185/1359/10699
## GO:0035094 116372/6770/3775/7412/1138/3162/3066/7124/551/23657/3596/1143/5594/1137/4914/836/1141/6531/346562/5970/1813/3651/5465/4825/6869/1906/4790/572/1136/1385/5179/1268/7054/596/1140/477/4487/18
## GO:0051602 3208/929/5027/4914/1728/6121/6714/2779/2911/2056/199/4761/27185/23774/5978/5020/6865/2660/10891/6869/23191/3184/6284/159/26012/4976/5728/7976/4656/5864/3760/7054/6548/1917/10142/5064/7832/9590
## GO:0097028 1236/10859/1051/4067/55365/28959/10288/3965/4055/7226/2213/5971/3135/3662/6688/6363/55509/5657/3146/3565/177/3516/7040/7189/1437/2623/5663/81501/814/64343/10538/2150/2322/558/54209/7048/2621/10202
## GO:0060759 7850/4321/11274/6352/6772/11240/8767/330/3654/3574/8970/3458/2950/64135/26228/8877/25939/5788/7444/23586/7128/865/6059/6850/7124/3569/7097/8772/8904/3091/7186/5469/100133941/9021/834/5771/7185/9641/8651/1147/23513/7294/10293/3326/2672/9971/3455/6091/6868/10062/29883/3562/1660/5770/972/3665/8517/7099/5781/3093/9825/54726/841/3459/7737/335/5777/22954/837/1540/329/171392/10554/1435/8996/56928/284/7341/3717/103/7132/11277/9314/383/10019/58509/54765/3977/26065/1906/8717/29110/22900/81858/5598/5048/204851/10616/10555/3557/79594/51588/3460/8887/7376/1893/6880/8554/8737/3716/5607/26525/59307/29108/8567/2150/5071/2874/11140/1997/166/57506/3554/7474/558/54209/6586/6041/7837/9353/5468/25999/2621/11213/3263/857/3551/9370
## GO:0001838 9355/6664/133/6491/8543/5898/8092/9585/4522/6789/6659/6768/3091/5216/6862/655/5567/9421/79977/10959/23513/6422/6788/8323/7408/1072/2348/5727/7475/7289/4838/5566/4524/2668/10653/23242/6495/6201/51098/54910/11146/23654/6928/653/8915/26585/7040/7189/9968/6692/65979/7849/6497/317/55764/5979/5754/55081/25/7976/9839/7291/5916/80199/2648/7403/10427/6662/7249/5076/2909/10395/54903/1856/29072/79600/9620/8289/6385/8321/1499/2535/10522/5914/7474/7248/7042/11019/58495/585/54361/652/4036/2625
## GO:0032272 6712/29767/3925/7111/119/5216/22919/7417/2288/5217/822/4133/6710/5962/11344/7429/1859/55604/29766/10382/10565/7114/10677/9026/6904/2039/6708/11078/8195/2059/6711/5580/5756/51332/6622/23189/118/11075/6709/9353/2934/57731/25999/24139/585/85477/50853/80206/25802/27124
## GO:0034394 919/2207/8514/2219/2824/7124/7305/1950/88/3326/382/6809/7414/9777/26088/26154/23062/10076/57154/5796/23163/9860/859/2316/284/8301/207/1861/9230/8729/10347/3077/287/6810/26056/7375/54741/4130/1499/2013/627/2252/29098/57126/10516/7481/23327/23171/23245/2066
## GO:1903901 3669/6355/9636/6352/4599/200315/91543/6590/4938/4940/8638/8547/5359/5806/2219/3434/6732/8815/7124/22880/5629/60489/27350/5610/5371/8091/3428/200316/89870/684/80149/10155/7726/325/7706/3609/5987/11074/8724/22954/56829/9869/85363/6733/6737/10107/8812/9218/55337/24138/55196/10318/51763/3440/8519/11043/3456/5071/10206/54737/57506/4057/63901/23272/10410/6041/2934/81603/10581
## GO:0031113 3925/84722/4733/22919/2288/5058/402/8851/4133/79998/157922/5879/1859/859/10382/6188/4233/23332/51199/58497/6904/25/6249/23271/55755/4204/2242/1639/6622/4131/1027/29098/10142/11075/25999/89795/4926/24139/23116/27124/4137
## GO:0044764 330/64135/3853/1234/7353/23586/79132/7852/63906/6397/708/89870/920/5478/26057/55666/57115/9873/3665/55601/8993/3273/329/2147/3661/51297/26065/5297/9698/8780/8692/7105/79671/23369/5819/26007/4057/54941/29997/6584/2621
## GO:0046638 8767/4860/864/3458/942/100/3549/3965/9308/865/6850/3071/54440/3593/8651/941/3606/6363/10892/7292/7535/3707/8943/3142/51043/50943/114548/301/3566/3594/387/51561/8546/9655/5914/4602/5590/7048/6469/7704/2737
## GO:0048168 6770/9145/6285/57282/2048/348/1959/5923/9148/6855/1813/8541/2902/1627/4218/3265/8766/3845/23154/815/3766/1742/2898/816/351/57338/26012/183/27020/6900/3815/22930/5864/6543/23025/6622/4763/10497/2915/79772/11346
## GO:0048512 10874/6770/6496/6715/4159/3737/3062/100/191/2692/1814/1141/3398/134/9099/4669/1813/5730/2475/80045/11245/4544/1437/135/5728/4987/9112/463/1392/7054/22871/10499/9611/9975/7157/1958/4887/8863/2691/3751/1471
## GO:0021675 4902/1515/4821/7412/5459/3737/5457/2558/2048/401/1959/2047/55636/5582/4914/1141/6507/8828/10371/2562/10939/2561/3676/55558/6495/3198/6899/9860/3211/5270/23213/10312/5979/6152/104/3200/1605/3670/9935/5076/4762/6405/2065/3280/7020/89797/23025/3611/8929/23405/1499/3232/10497/6299/3213/3212/1902/8829/26018/5205/2737
## GO:0043367 26279/8767/91543/864/3458/942/1880/2529/30009/4063/3965/9308/865/3569/5971/3071/54542/54440/3593/8651/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/5075/6774/3566/4092/3594/149041/51561/6304/6095/10538/538/9655/6778/5914/4602/604/5590/6097/2625
## GO:0002381 9156/7037/959/4436/79915/3329/7468/2956/5788/9466/30009/6375/7374/940/4683/10875/3119/9245/958/3558/695/55183/7292/3586/9025/22976/3565/5452/23529/7040/11277/50943/8741/3981/54537/4292/9984/10538/57379/6830/7158/2067/23075/6778/604/1235/10039
## GO:0031295 29851/1493/3932/80380/1236/4067/959/942/916/940/1445/5133/100133941/7525/9402/1326/5058/6714/2885/23308/941/6363/7292/8740/11126/7409/1948/2534/5062/5781/998/5777/5063/6366/3956/1947/5879/975/5290/207/1803/11148/1949/8764/5170/5295/857
## GO:0001837 2146/6317/2296/8092/3066/2253/3182/8751/3569/3091/4192/9221/655/11171/2651/6949/265/8091/2932/80237/6422/3170/10155/25805/51094/3553/7074/7472/6910/4851/51176/2475/59349/51384/6386/6615/6275/653/26585/3037/3516/4040/7046/7040/553115/1655/9820/7080/23187/10630/23332/4089/4087/57142/26508/23275/5728/4092/10439/650/5515/1605/25937/7291/3670/80199/55223/6662/2022/57669/64081/2263/90/1499/2295/1601/10521/23493/4088/4017/28984/3082/182/7474/9231/1942/10016/23462/10252/7042/23122/7048/753/2042/1277/6591/58495/55273/4488/7481/7041/4487/3249/54361/7043/7049/652/3169
## GO:0002712 7037/4436/79915/7468/5788/9466/30009/2207/6375/940/7124/4049/1378/2208/2213/958/3558/725/695/55183/10666/7292/3586/22976/3565/3133/2302/5777/722/23529/7040/50943/8741/718/54537/4292/9984/5819/6830/7158/6778/604/10039/3263
## GO:0002889 7037/4436/79915/7468/5788/9466/30009/2207/6375/940/7124/4049/1378/2208/2213/958/3558/725/695/55183/10666/7292/3586/22976/3565/3133/2302/5777/722/23529/7040/50943/8741/718/54537/4292/9984/5819/6830/7158/6778/604/10039/3263
## GO:0030239 1482/8557/58/4624/5629/7273/88/4205/84033/58529/6722/8837/8048/27302/859/3688/5156/4633/79933/71/3856/1906/4089/11214/4621/51778/27063/11155/5573/70/10529/23363/91807/3880/825/845/7168/4628/844/4208/10324/5159/80206/4629
## GO:0072132 4609/2296/2253/58/655/6091/2303/4193/4851/6615/653/3516/7046/657/4089/4087/26508/650/2294/7291/4846/3670/6909/2260/6662/2022/70/59/90/72/23493/4088/94/7474/4194/23462/7042/7048/8642/6591/55273/4488/7481/4487
## GO:1901607 29968/26227/875/445/440/65263/6472/5723/5831/4507/4522/58478/8985/5351/5352/5832/6507/5009/51074/4552/4942/189/2806/2744/55256/11315/54529/1491/493/2747/22928/635/10955/441024/256987/4548/63826/1373/2752/2746/2628/8604/23743/2593
## GO:0009452 5435/5440/5433/8732/4686/5437/8731/5439/5431/96764/2968/5436/22916/5438/5432/23070/2963/6829/2071/5434/55421/4331/2965/1022/404672/5430/902/2967/5441/2068/2962
## GO:0014072 114/6870/100/7852/8772/5536/5582/1814/5309/5970/199/1813/2806/4988/2902/4193/2475/2775/6869/10533/5581/5999/5520/8682/8620/4986/5179/1268/63826/2354/6863
## GO:0021955 4781/9334/2047/3326/2049/5747/1141/7101/2043/3320/25987/81565/51199/6324/9331/104/5048/5728/2736/23334/9839/1630/2909/79600/23077/8929/4929/9353/57731/1009/9201
## GO:0036260 5435/5440/5433/8732/4686/5437/8731/5439/5431/96764/2968/5436/22916/5438/5432/23070/2963/6829/2071/5434/55421/4331/2965/1022/404672/5430/902/2967/5441/2068/2962
## GO:0043276 1869/1411/11200/7027/7088/51651/5747/6714/23604/8517/25855/6885/4851/2475/4170/10514/5290/207/3678/3688/1048/7249/57343/166/6794/596/6591/5166/857/4915/4680
## GO:0043278 114/6870/100/7852/8772/5536/5582/1814/5309/5970/199/1813/2806/4988/2902/4193/2475/2775/6869/10533/5581/5999/5520/8682/8620/4986/5179/1268/63826/2354/6863
## GO:0048566 6664/3576/6943/100/3549/2254/7124/10736/3398/64220/5915/6343/3142/6928/6932/5156/2736/2294/8854/6293/6474/2263/25836/2295/6299/7042/5919/6469/58495/5125/2737
## GO:0060428 55151/4781/5604/3596/79977/7965/64220/9719/7477/7472/2302/2627/10413/3516/7080/57333/1385/429/60485/6662/6431/2263/5310/2252/10365/3202/6469/25803/652/3169/10551
## GO:0072595 706/7295/3638/1020/5905/3099/580/5371/8733/3309/402/64714/25777/23568/602/3192/207/3098/11315/2901/6672/10956/9913/23353/10210/65018/23515/2516/6500/23345/585
## GO:1901030 3002/1869/2810/578/637/7027/7534/7159/5366/2932/10971/7533/5534/7029/581/7529/841/5599/2931/7531/572/93974/9026/7161/23368/5533/4836/8626/7157/7755/596
## GO:1902622 3576/56833/1236/6375/3929/5880/3071/4192/728/57118/719/708/4354/8291/101/3579/6363/23604/972/6366/5879/27202/683/158747/1906/9750/51561/3554/9353/83700/7060
## GO:0032755 55765/51311/8767/136/1535/64135/3329/10288/7096/2207/23586/3929/5603/3965/5047/7124/5027/3569/7097/64170/8808/3556/7305/5724/3570/10333/64127/4615/2069/84818/199/7292/1660/7099/3553/5781/3146/59341/177/3605/9181/353514/4155/7189/351/148022/6774/116/8692/7291/3670/11027/7098/10392/4317/29108/2150/57506/7474/2149/948/4023/90865/7494/26137/7349
## GO:0051702 820/6355/6352/6351/3429/3329/1991/2597/5479/5806/23076/5702/348/6882/1642/9367/6441/8091/6597/904/9126/6372/5340/2876/80149/3065/1072/325/7023/566/2959/51176/5978/51193/2332/6598/9150/22938/2147/2033/64710/5091/383/302/23435/5196/8812/3725/9218/2335/858/51763/25833/64848/2040/6667/11334/2150/1105/5071/4057/4153/1511/358/25827/3249
## GO:0006855 6535/6572/6541/10682/1317/6510/81034/1244/6573/10165/23657/79751/10991/23204/55238/10786/6507/64849/5997/6581/2348/57084/10928/54896/6005/6512/6511/3766/26266/55754/5999/57030/4923/6570/6580/183/5663/6506/2350/11230/9152/10550/6582/6561/56918/8604/6584/358/10560/80704/8864/477/5002/6542/5205/9429/6505/4036
## GO:1904427 3627/6373/4283/5336/5031/1812/2539/6375/930/6262/57214/6376/3596/6769/375346/9002/9446/6786/623/581/5335/9472/6271/9001/781/784/2631/57158/7341/2147/4923/2852/57165/3064/10345/799/25/5170/287/9992/9104/783/6622/30845/7070/825/10268/6548/2149/844/187/5311/2259/6717/481/3306/7220/2946
## GO:0035265 983/891/65009/1482/3574/2296/2253/2539/5447/57817/2254/6789/55151/4624/2395/5629/3776/7490/1588/4880/5594/10018/54440/2626/10038/4878/1432/5747/5058/3720/6788/5292/5997/8531/9350/6608/5915/10409/9472/6647/6256/5781/93/2303/7472/6910/10498/5897/4851/2475/2627/5465/51548/3142/10269/27302/10413/3516/148/859/26281/7046/9150/207/657/5600/5999/186/2931/1906/4087/11214/7528/183/27230/5728/5324/7161/6781/5916/5300/1893/6909/5573/60485/2260/8737/10611/6662/55512/2263/7337/4086/6532/6416/4921/2252/7059/23493/23286/2735/5914/10253/55841/4211/596/26011/1901/2261/7042/57493/4208/4322/54796/7048/3953/5950/2247/6469/8470/3952/4488/2099/5159/32/23414/2121/2697/367/7049/3479/9254/1311/57502/2066
## GO:0072089 259266/5080/6664/29127/6663/55612/8326/6496/3148/2120/4072/5788/9048/7473/4771/7422/23028/7480/3091/6376/10736/5610/8091/192669/7101/5017/10763/5292/1813/6608/747/677/7477/27185/5134/58158/1636/6660/63925/7015/51548/23654/10413/3192/7471/9181/7040/7005/7066/6604/5048/10818/54345/2122/7976/10425/2258/429/8650/2260/1495/64321/2263/2009/54894/4763/7424/1499/7157/3736/4435/7474/947/79923/80169/4054/7482/54820/3400/2247/6591/5243/6469/2192/58495/4254/5764/2737/10443/6926/1524
## GO:0002407 6352/56833/1230/1236/1880/1234/3965/7852/7226/729230/3592/811/708/3579/6363/5294/3146/3577/6366/7984/1235/54795/2621
## GO:0003181 6659/2626/4193/6910/4091/4851/657/4089/26508/3491/10439/650/659/7291/90/23493/1942/6586/4194/23462/7042/7048/8642
## GO:0009299 5467/468/3091/5469/3297/728/1649/2069/6722/10114/2316/1655/405/6774/7024/54345/2301/4656/22890/64321/7157/4005/6720
## GO:0035812 1312/551/525/1814/134/1813/552/80763/5020/6869/186/1906/135/183/27131/2771/4879/554/1910/4881/185/6863/10699
## GO:0050687 3559/7353/79132/10875/83737/63906/4277/6397/708/64771/55666/5495/6895/26146/10475/79594/8780/7105/79671/5094/26007/54941/5654
## GO:0090023 3576/1236/6375/3929/5880/3071/4192/728/57118/719/708/8291/3579/6363/23604/972/6366/5879/158747/1906/9750/51561/7060
## GO:0008543 79801/54845/9982/5435/2253/867/2251/2591/5440/2254/27006/5433/63978/5594/23769/2257/2264/26291/4686/5437/2885/5439/3185/1399/9702/9158/5431/8822/5436/5725/80004/5781/22916/2250/5438/5432/2963/26281/10817/7073/51552/23543/8826/5434/23213/25778/8823/8074/2249/3187/2248/10818/27020/25865/8036/23064/3178/80199/2260/5430/2263/7057/4670/7072/5441/200734/55614/5595/1499/2252/23767/860/2962/90993/7474/1490/2261/2246/2817/2247/9365/79633/8817/54361/3730/2625
## GO:1904035 6347/959/3162/3383/409/7128/7124/3569/3135/3596/4192/356/958/5054/26291/5275/2243/1965/2266/8837/677/5584/5335/11126/3676/51129/3651/3565/2475/7015/10298/10891/284/4760/3717/2244/4780/6272/2852/5598/572/889/7538/51588/79155/2624/25/5170/26471/7857/2309/6431/6934/7057/7072/11132/7010/28984/57124/3791/831/7466/8644/80781/79625/2934/9037/2621/6424/10266/2625
## GO:0000083 8318/6241/81620/990/898/4998/7298/5111/26271/1869/1719/7027/8882/8462/2672/3398/7029/1876/1874/8900/23476/25988/4863/5422/2103/571/5925
## GO:0001844 3002/1869/2810/637/7027/7534/7159/10018/5366/10971/7533/5534/7029/581/7529/841/5599/7531/572/7161/23368/5533/4836/8626/7157/596/64112
## GO:0010737 51083/3936/4282/7273/9049/2492/9472/5962/8165/5566/6954/4157/9495/7430/8736/799/5872/10846/5141/3375/154/10268/84059/9867/56892/9590/9370
## GO:0014044 57211/10397/79152/1020/56288/208/5453/6647/207/22933/3084/9968/6497/64398/5454/1605/4916/53616/3611/8506/79628/4763/23405/9639/4653/4915/3913
## GO:0035666 330/929/8772/7321/9641/1147/10333/10010/7311/23643/3665/8517/7099/841/7323/6233/7316/329/7314/3661/7187/29110/148022/7322/7098/8737/3551
## GO:0060993 6772/4609/6943/5613/2297/2253/2138/7422/6659/9245/7490/2650/655/9500/10736/55083/3975/3237/6608/7477/10409/5727/7475/793/2668/2302/6495/10269/6928/7471/1739/26585/7040/186/3911/80144/4089/7849/183/3217/3207/650/55366/25937/3976/51301/56998/6662/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/4435/6299/596/7482/5311/26249/2246/8642/2247/6469/79633/7481/5159/54361/2737/652/2625
## GO:0030809 54541/57103/3208/142/79849/5465/5207/51548/10891/89/6774/55022/863/4656/26471/9759/201163/2203
## GO:0035994 8557/6262/7273/4792/4878/1432/5970/8048/1756/859/5894/1906/4790/3725/27063/6546/6548/2353
## GO:0051023 2821/959/7124/3569/7186/7293/958/3558/7292/3133/7189/7009/933/6810/3567/5950/90865/7494
## GO:0072311 8842/28999/7490/100133941/4643/10409/2303/2302/8826/4868/5420/5800/7827/182/3913/9863/9370/652
## GO:1900372 54541/57103/3208/142/79849/5465/5207/51548/10891/89/6774/55022/863/4656/26471/9759/201163/2203
## GO:1902644 57016/1109/231/10327/5978/1585/1645/1646/653/1609/1584/650/8574/8912/8644/27122/84869/54361
## GO:0002707 10859/3575/10225/5788/30009/6375/409/3965/6318/1378/2213/3135/3134/3805/5272/725/3133/2302/5777/722/634/50943/383/56940/4092/1398/9984/3440/3077/3456/5532/100507436/604/10039
## GO:0033280 3627/1594/3600/6696/5743/5469/655/1032/8805/6422/360/249/920/5292/5251/1591/7706/7421/7299/22938/7040/846/8074/6781/5741/5179/2242/54332/25959/490/3371/6591/5764/8614
## GO:0051931 10874/2171/5024/1312/2906/5724/885/152/134/2911/3586/80763/4988/85446/2475/5020/784/4923/1906/2903/4987/8620/55/4986/11343/11280/1910/4985/6548/2149/4887/55273/4856/58503
## GO:0016197 65009/55353/57706/63893/23603/85377/10652/64129/1174/7454/10938/8218/7415/84079/79720/88/10228/10139/55737/10807/8934/22853/382/7260/10311/55658/8027/5870/7311/27183/8878/10123/26088/5987/10254/8677/11267/51510/23085/4218/10043/89853/7813/9784/8411/9559/51271/6233/7316/51160/25978/7879/26000/80852/8723/1213/9043/11021/23163/54918/9897/58533/6811/19/7314/23325/8301/30844/9146/8675/9727/22836/51552/9907/23023/6272/9525/51272/9182/79778/7251/738/91782/23527/9230/55317/29082/28952/54520/55745/81609/400/8729/51542/8674/79643/9912/27131/6643/55048/79735/9827/5872/9527/2060/25963/8546/6293/1130/55275/22876/80700/392/1639/9779/200576/30845/5071/9341/27065/27243/6642/23339/9648/163486/1203/23258/27147/57020/51479/9905/7840/23426/55610/9765/64284/54551/6653/9201/8938/30846
## GO:0007605 332/1690/7399/54532/1302/5459/50617/3753/2070/3383/4647/491/2138/2558/57214/525/55636/1032/5456/53904/26521/79955/836/1141/26517/40/9381/51475/80204/6507/1729/2876/2562/5660/5077/7275/2561/6647/26519/9948/53942/2917/26520/501/6495/79784/57053/3198/6899/9860/9368/7068/56914/22953/6907/4640/51168/10083/4155/1428/1285/55584/4919/6940/3074/80055/5458/9132/9750/6169/3815/11078/8195/53405/7007/1687/2260/25861/7054/7020/89797/9455/25836/3784/5269/64787/8556/8322/10253/1301/1027/7466/1280/84059/55084/57731/1277/6591/24139/5172/26018/5205/3249/4646/7349/776/4036
## GO:0002637 7037/51237/2821/959/4436/79915/7468/5788/9466/30009/6375/940/7124/3569/7186/2213/3596/7293/958/5591/3558/55183/7292/3586/3598/22976/3565/3133/23529/7040/11277/50943/7189/8741/5585/7009/3566/54537/933/4292/9984/6810/6830/7158/6778/3567/604/10039/5950/90865/7494/3263
## GO:0007585 50515/1439/30012/9618/401/92170/1329/6441/1137/9427/134/10800/6439/2902/2744/54413/128/6440/23178/7352/669/4923/2741/1906/7134/5090/9407/50832/1355/10905/2324/4204/7403/5864/9935/6526/2548/3714/6939/22871/8929/4124/3202/4929/4692/2530/3176/79068/477/1909/2006/1602
## GO:0035249 6347/8564/3351/1812/22943/1020/7143/9456/7124/5743/1956/729230/4914/2895/134/1813/2185/27185/2902/54413/53358/9746/23542/5270/2899/2898/135/5023/5663/116/8398/22930/9378/5649/3356/1268/6509/22871/23025/5071/2897/4763/2752/4920/4887/5021/4208/6812/477/6857/2891/7349
## GO:0043550 1236/4067/8525/930/29982/9021/887/5933/8651/5747/6714/64127/30837/2358/6363/23533/7410/2321/2185/116986/9306/9711/5155/6366/975/55626/5587/2147/7040/9314/5156/29062/5525/5934/3815/30849/1154/2268/9655/5925/113791/5295/7010/2322/1917/2261/22863/2247/8835/5159/3667/10451
## GO:2001244 6280/6279/3932/637/10059/4690/29949/8440/79156/5771/10018/5366/10134/1649/5326/27035/581/6647/55294/5883/4170/6201/51657/9368/6477/27113/7314/6188/8575/11315/6421/9774/572/51588/5414/6498/10955/6135/26471/1687/138151/4824/598/23411/51024/7157/596/8678/201163/857/53832/4487
## GO:0000018 10635/1111/5888/7037/55010/3838/641/3575/4436/79915/7468/2956/5788/9466/30009/940/8914/142/23028/5531/7454/10721/958/3558/151987/10097/55183/4361/3836/7292/3586/7014/6118/22976/3565/9400/56979/23514/51548/2521/64110/23347/23529/7040/50943/51750/54386/8741/55135/64210/56154/54537/7486/4292/9984/56893/6830/29072/7158/10111/4437/22891/6778/7320/604/10039/55086/51149
## GO:2001057 445/2643/3458/64757/3689/3383/706/5806/5447/7124/7097/5743/140885/1785/10333/54/3326/384/1728/2644/3320/80149/199/4842/2185/3586/7099/3553/2475/1545/4843/5879/207/3717/9314/8570/5740/186/961/1906/148022/493/183/9475/4846/6095/6697/9722/23576/9104/4317/23564/1373/6821/4088/10365/2717/3643/3043/947/948/5025/54996/5311/857/6542/1191/1524
## GO:0017158 23413/136/55503/1138/8941/8372/321/3351/1812/10059/1020/10675/10755/28964/1142/5582/2932/255057/1137/1141/5579/6855/8447/5217/8573/1813/3745/192683/9515/5978/594855/7476/2332/6853/488/6804/5028/5030/815/148/5908/5906/9783/320/2901/5868/135/5023/1855/2771/22930/8973/114088/5864/6814/3356/1268/783/22871/107/9581/10497/23621/1129/9501/9162/6843/8448/6812/8938/6857/150/776
## GO:0050848 50852/2633/5026/5341/6351/5031/9454/5024/916/100/6850/7124/4644/1240/2280/2932/375346/9446/920/8445/58529/4842/5725/4761/5621/10523/2185/7535/9472/1827/9001/5566/1756/2475/6014/11261/57158/1193/22953/5144/3094/3084/683/89/57338/493/63928/5598/3064/10345/933/10519/51778/4935/2274/2065/10725/9455/9104/5164/845/6548/54209/5025/29995/5311/3270/6717/51643/2281/1012/2946/55273/5350/23261/3479/3708/4137
## GO:0010324 8685/9212/51411/11314/26228/3689/2207/575/246/9938/2213/23616/3071/4240/6845/199/4481/4627/9844/998/8724/57154/23208/3684/19/9146/55113/29082/54874/54784/718/387/2624/3673/10347/7057/2150/27243/94134/2209/948/54209/51454/8678/1793/2934/5468/55198/11031
## GO:0008652 29968/26227/875/445/440/65263/6472/219595/5723/586/51733/5831/4507/4522/58478/2805/8985/5351/5352/5832/2346/6507/5009/51074/4552/4942/189/2806/2744/55256/5053/11315/54529/1491/493/2875/2747/22928/635/10955/441024/883/256987/4548/63826/587/1806/1373/2752/2571/2746/2628/27165/8604/443/23743/10003/1036/18/2593
## GO:0051881 2537/8326/8838/2730/578/30968/637/664/239/706/5831/215/142/8115/2805/5027/7415/5366/885/4719/10962/6714/23593/208/7351/581/55012/6647/1192/79680/27068/79845/80025/7314/207/23530/11315/135/572/1497/93974/55022/79594/10935/25/598/65018/55186/2729/11334/5071/4985/10550/665/3791/596/23111/4653/1634/4137
## GO:0042088 8767/9466/6375/8807/10148/5971/3593/729230/3592/6693/6556/941/3606/6363/7292/7099/3553/3718/3146/51176/8809/2475/3265/10068/3142/602/301/7189/64218/3566/3594/51561/9173/9655/6778/3554/90865
## GO:0002763 1230/3458/5457/7124/8772/7305/3059/10221/5578/3593/2778/760/3398/2124/920/10456/677/972/51176/841/3605/9398/1435/7040/537/7189/5196/81501/3725/5458/51561/1385/8600/3976/56998/22985/8737/7071/2242/5925/3567/4920/54997/54209/2353/4254
## GO:0071385 1978/445/6770/6715/54541/1789/2950/3383/1244/11335/1956/6753/10018/7332/1977/11170/4654/8837/677/7023/5978/2660/3192/7040/383/186/301/1906/11214/64754/116/7538/6781/842/3670/2309/1392/9101/687/2908/490/2322/678/2308/5176/358
## GO:0099132 50617/491/533/27032/518/506/9296/525/509/9114/8647/516/57130/10476/528/514/23545/51606/515/529/523/526/10632/492/488/498/9914/527/155066/537/308/487/539/10312/513/493/23400/5023/8992/489/538/10396/517/535/490/540
## GO:0042471 5459/8820/8557/2253/1749/7545/4647/3638/2138/2254/8013/474/2048/613/5629/525/10736/5594/55636/23513/5456/53904/79955/2637/8323/4669/6647/6495/57053/3198/6899/9368/7471/51168/10083/8575/1906/7849/55584/1855/5754/9132/9750/6169/2624/2736/7976/11078/7291/9423/9935/10427/2260/220/6662/1750/5076/4762/51141/8516/1856/2263/7020/9620/51761/25836/3199/579/5595/2535/2299/29/10253/1301/80184/4920/6299/7474/1280/55084/5396/57728/26018/116039/4487/3249/2487/6935/80736/2625
## GO:0021695 2146/9928/6712/64211/16/23287/1020/5604/5629/4192/3975/3309/2895/4669/6608/4761/10978/372/5781/8704/8861/7476/869/5270/186/27089/23017/2736/4983/473/8925/6095/538/25861/79934/146057/23544/22891/2735/4628
## GO:0045687 4821/712/3066/274/7097/7852/4192/7133/3398/10215/5970/6009/3065/4099/10419/4851/2475/27339/4825/177/23529/7040/5270/6692/351/650/7161/1605/5803/3976/3280/23405/22891/26011/54209/5468/6469/5764/443/3572
## GO:0048806 3973/6715/2253/578/7490/1588/55636/3975/3239/64220/581/5781/7301/654/10461/653/3293/6932/5156/51665/55366/4762/5310/8626/25836/10388/6716/1499/2295/1718/80000/4920/7474/558/5950/6469/2099/367/6926/4036
## GO:1904036 3162/3383/7128/3596/4192/5054/26291/5275/2243/2266/8837/51129/3651/3565/2475/7015/10298/284/4760/2244/4780/5598/889/79155/2624/25/5170/26471/7857/6431/6934/7010/3791/831/7466/79625/9037/2621/10266/2625
## GO:2000107 9212/3620/6352/1236/10859/3575/1234/2207/100/939/5588/4282/8772/3091/3059/3558/384/64127/26155/3579/6363/972/3665/3707/3718/6366/10461/8915/2693/5896/8660/604/558/1942/1831/4254/2621/6387/652/5304
## GO:0008347 6347/9289/8941/3418/26228/1880/706/1464/1020/729230/23513/7101/30837/8851/1399/2043/25777/27185/566/7074/5028/1435/1600/79143/23224/23380/4323/57142/5048/3074/23353/5649/1499/29956/54209/5025/4692/7042/3912/89927/4035/2737/1524
## GO:0032608 51311/8767/10859/3148/64135/3659/23586/9111/7097/5971/10622/140885/3663/10293/661/1660/3665/10621/7099/5781/54476/55703/3661/5495/10623/26146/58509/7187/1654/29110/7528/10475/148022/8780/5966/51284/79671/7098/5802/29108/10211/57506/26137
## GO:0035176 2019/8997/54584/26047/551/1814/1141/7101/552/2902/50944/54413/2475/5020/6899/22941/2925/23542/1979/1742/57680/5728/1855/1815/8195/4204/9378/1620/9379/7054/23230/6532/23152/2571/22829/5108/585/6310/9369/7349/57502/2922/1524
## GO:0051703 2019/8997/54584/26047/551/1814/1141/7101/552/2902/50944/54413/2475/5020/6899/22941/2925/23542/1979/1742/57680/5728/1855/1815/8195/4204/9378/1620/9379/7054/23230/6532/23152/2571/22829/5108/585/6310/9369/7349/57502/2922/1524
## GO:0051966 6347/8564/3351/1812/22943/1020/7143/9456/7124/5743/1956/729230/4914/134/1813/2185/27185/54413/23542/5270/2899/2898/135/5663/116/8398/22930/9378/5649/3356/1268/22871/23025/2897/2752/4920/4887/5021/4208/6812/477/6857/7349
## GO:0055081 9388/5424/215/1244/2805/348/525/23657/356/1152/2264/9971/3172/134/5009/1071/10568/27329/57468/51085/6569/8694/335/54896/2170/3630/9368/19/2912/8074/57333/5741/9619/23411/5562/1373/5563/9247/7494/5167/6424/771/7021
## GO:0070671 4001/3595/6627/8767/5898/3458/5721/4507/3936/6888/4282/4478/5034/3593/140885/3592/9446/759/3185/9049/6775/3181/829/5478/1072/3586/6647/3313/5062/5055/998/6175/5306/3717/5908/302/961/1265/9987/3594/3716/7297/23236
## GO:2000179 259266/5080/9355/6663/8326/4067/9289/64211/7422/23028/5629/3091/6376/4192/1950/80237/3975/7101/1522/9283/10763/5309/1813/6608/27185/63925/50937/2316/4673/6604/57165/3642/2736/7976/429/2771/7424/1499/2735/6469/2737/4036/1524
## GO:0030004 56833/50617/483/55858/533/506/9296/551/525/1080/356/5594/9114/6556/760/2896/7274/54982/528/27035/23545/9777/4097/51606/25932/552/529/523/526/65010/7879/527/55647/478/476/11261/65082/3759/155066/186/51382/9550/10312/183/1182/8992/1201/5538/535/534/6546/766/23682/5595/1203/6548/596/482/481/64699/3778/477/23327/1811/730
## GO:0032637 51311/914/336/2867/1116/1991/5788/7096/23586/2219/3929/3965/671/929/26191/945/7124/7097/8772/5054/10333/1649/51744/64127/4615/10394/3586/7099/3553/5861/4843/602/8915/64922/9314/1401/27202/11315/7114/58509/301/965/2658/5319/25865/8692/56957/51284/11027/7100/7098/10392/307/8737/5607/29108/2150/57506/408/7474/2149/23005/3952/51157/9370
## GO:1903363 27074/55872/55353/51377/4248/10755/57805/5371/5582/55737/2165/3326/6599/2043/55432/1459/51009/9097/9683/9349/80011/51322/7917/51035/28996/5045/6386/4534/6201/29761/9491/51374/7471/51465/11011/4745/65992/11315/302/7327/7874/6872/11345/23400/5663/10869/10956/64844/6449/6135/6880/9827/3077/23274/9529/8473/4130/23429/819/1942/2272/80279/29997/210/6469
## GO:0006353 6634/5435/7884/10849/6636/5440/6637/11051/6628/8458/1477/4686/7978/5437/9533/64425/221830/2968/6635/81608/1479/1478/1660/10898/10978/22916/10419/9014/25888/10914/10269/4150/79869/2071/7343/5434/7270/79101/9013/4331/2965/23064/9015/6908/1022/23283/8189/404672/5430/902/2967/5441/2068/84172/8106/51585/284119
## GO:0070509 6347/55503/63933/6406/1020/9456/2641/7226/1950/51393/931/56302/6690/8291/8573/79568/5621/10939/5987/2534/2645/5155/781/59341/488/9914/10269/859/846/2916/487/493/4976/8913/7223/799/79085/6781/8912/5664/3958/10367/1392/6546/783/6588/56848/221154/1499/10268/7779/5311/6387/5159/5350/7349/776
## GO:0035601 3458/2005/3066/7422/57805/9734/8819/10432/5927/23408/3065/51547/79685/25855/11313/5978/5245/4287/5599/51548/3622/1859/10474/5587/23186/7040/51043/2033/22933/50943/11176/6421/10933/26993/6497/8841/2339/54531/79885/10270/25865/11107/10013/51104/1487/138151/5538/81926/65018/4752/5187/23411/10014/5562/25836/200734/56848/23409/9759/7157/5563/51564/604/56271/23410/8864/6720/10129/7349/4137
## GO:0060606 9355/133/6491/8543/5898/8092/9585/4522/6768/5216/6862/5567/79977/10959/23513/6422/8323/7408/2348/5727/7289/5566/4524/10653/23242/6201/54910/11146/23654/8915/7040/7189/9968/6692/65979/6497/317/55764/5754/55081/25/7976/9839/7291/5916/80199/2648/7403/10427/7249/5076/2909/10395/54903/1856/29072/9620/8289/6385/8321/2535/10522/5914/7474/7248/7042/11019/585/652/4036
## GO:0007041 274/7415/164/3920/411/55737/4074/55681/2896/6845/10042/5660/27183/9179/64089/51510/4534/25978/7879/3916/9146/22898/65082/1045/51172/51361/6272/9525/7251/738/64400/4864/55850/2580/9392/63894/79158/950/55297/27072/81609/55823/51542/8031/64601/23295/8546/6293/1130/55275/80700/65018/51332/30845/5071/51520/154/56112/23339/9648/138050/63971/9482/51479/29911/66008/22863/4734/9765/6653/22906/388/4035/1191/9737
## GO:0048640 53335/51083/51316/5641/2539/3475/7473/6696/80128/6789/1020/7143/2395/3776/4504/153/6422/5747/5058/3720/6788/8851/1026/393/5997/4133/58529/6049/11221/4099/5727/6910/5465/55558/2660/9518/859/9150/5600/5999/2931/7528/57142/5728/23105/6259/7161/10743/2258/9423/1630/60485/8737/7093/5802/9706/154/6532/23286/1027/55841/4211/7474/23111/2261/8829/7048/5950/8835/9037/56920/2045/2697/652/8614
## GO:0006370 5435/5440/5433/8732/4686/5437/8731/5439/5431/2968/5436/22916/5438/5432/23070/2963/6829/2071/5434/55421/4331/2965/1022/404672/5430/902/2967/5441/2068/2962
## GO:0032094 2539/3291/6566/4504/5582/885/80763/4988/2475/5020/5465/2538/4353/8915/207/29937/4852/2693/8620/8195/1373/1543/4925/65084/2691/3952/585/6720/7349/9607
## GO:0042339 9435/10331/6484/9334/2588/176/79369/10678/6482/8703/2720/8704/2683/8702/23563/10402/9331/8534/3074/6483/2799/11046/11041/3073/4060/5549/2331/11081/4958/4969
## GO:0043516 23028/4282/5366/5716/8444/387893/9521/972/4193/56950/3090/6615/10269/1859/754/960/149628/1655/545/64844/22925/7291/27063/55702/472/23411/200734/7157/6591/4487
## GO:0071353 4171/3561/11009/4783/11151/1019/6375/4360/10376/5771/5371/3326/3309/2194/3718/51176/6187/6932/383/11093/9817/81501/3566/6122/23729/6778/3615/210/7494/2625
## GO:1902100 991/10403/4085/81620/7272/9212/9319/891/5347/1063/26271/5885/54908/7517/25906/8379/84861/7756/4342/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:1905819 991/10403/4085/81620/7272/9212/9319/891/5347/1063/26271/5885/54908/7517/25906/8379/84861/7756/4342/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0030832 6712/5341/29767/3055/1236/7111/11151/119/9087/274/57180/3383/4690/246/10095/10096/7454/8440/5216/23616/3071/3059/6356/88/1496/382/10097/8936/10092/2885/10456/5217/822/7408/57175/10109/10094/6710/54942/1072/2185/55607/9873/10093/5962/5987/8976/10178/9948/2475/11344/9530/4703/9113/1440/5063/6366/7429/2017/9463/10787/23191/55604/1739/55243/29766/5581/10565/7114/6369/10677/9026/2039/387/4868/6708/11078/10152/8195/2059/6711/55435/2909/5580/5756/11034/4641/51332/29108/10435/2150/23189/5921/118/23075/6709/9353/2934/57731/2241/54551/9037/585/85477/51474/24142/6387/10788/50853/80206/51466/25802/2006
## GO:0007059 55143/991/9493/1062/10403/7153/23397/9787/55355/220134/51203/10460/4751/55839/4085/81930/81620/332/7272/64151/9212/9319/9055/3833/891/24137/9928/11004/990/5347/29127/701/11130/57405/10615/1894/79075/9700/4288/2237/9918/699/1063/26271/23310/292/10051/1104/83990/5885/84722/51647/54908/10592/6732/8260/55706/23212/23636/3619/10096/55166/1663/7517/5901/7273/80218/8940/79677/672/5119/64793/5889/11044/25906/29781/81929/3834/9126/10097/56159/201254/3835/8379/11144/79023/3837/57820/23137/11331/10734/4361/1459/84861/27183/10300/7756/4342/23626/55795/79998/56984/79003/23244/9183/7917/7156/55294/51510/998/9391/9400/9113/10664/7175/996/8766/9555/11243/6795/8243/25978/5518/81565/9985/3192/8239/23383/79892/11011/9184/80152/22933/23172/6188/7329/9525/6421/26993/7013/64210/91782/57132/1654/29082/51451/51143/10735/56154/55719/10270/1778/23063/9698/152185/6847/8780/55207/23353/27030/348995/642636/55755/4292/79643/1060/23369/55781/7405/10636/8697/192670/472/56155/79903/8658/546/3550/25836/10388/5925/2068/27243/1499/51112/2908/7320/57082/8452/2669/23047/1843/324/10609/8678/10464/56271/100130958/4926/23126
## GO:0006801 2643/1719/1535/2950/4688/3689/239/6850/7124/50506/1956/1536/655/7305/4504/51167/54/1728/26574/2358/79400/10394/27035/2176/2773/337/6647/4843/4353/7001/3684/7040/4780/1401/683/11315/1906/183/23334/5446/4846/2771/53905/538/9973/9644/5580/9104/2150/948/57126/10516/50507/4137
## GO:0003281 6664/639/1482/8543/7468/6659/5629/2626/1785/4052/54583/6091/3398/64220/64783/84516/4193/6910/4091/4851/3516/7046/4089/7849/26508/8131/10818/3491/5754/4092/163/659/4846/60485/9321/3280/2263/90/8321/7798/2702/2535/23493/6299/7474/6586/4194/23462/7042/57493/9353/7048/10370/7481/5138/23414/65250/7049/6926/652/4036/2625
## GO:0006809 445/2643/3458/3689/3383/706/5806/7124/5743/140885/1785/10333/54/3326/384/1728/2644/3320/80149/199/4842/2185/3586/7099/3553/2475/1545/4843/5879/207/3717/9314/8570/5740/186/961/1906/148022/493/183/9475/4846/6095/6697/9722/23576/9104/4317/23564/4088/10365/2717/3643/3043/947/948/5025/5311/857/6542/1191/1524
## GO:0006885 56833/51458/50617/55858/533/506/9296/551/525/1080/356/887/5594/9114/6556/760/2896/7274/54982/528/27035/23545/6521/9777/4097/51606/25932/552/479/529/523/526/65010/7879/527/55647/11261/65082/155066/537/84679/51382/1906/9550/10312/1182/8992/1201/5538/535/1910/534/766/23682/5595/5164/1203/6548/596/5166/5172/1811
## GO:1902803 23413/136/1138/321/3351/1812/10059/1020/10675/10755/28964/1142/5582/2932/1137/1141/5579/6855/5217/8573/4133/1813/9515/594855/7476/2332/6853/488/6804/5028/5030/815/148/5908/5906/9783/320/2901/5868/135/5023/1855/22930/8973/5864/6517/3356/65018/1268/783/22871/5071/107/9581/10497/23621/1129/9162/6843/6812/6857/776
## GO:0051053 990/23560/55010/29980/3001/26271/51053/641/4436/2956/11200/2072/79000/4683/6282/142/3776/10721/3297/675/4880/27000/8091/55611/9126/6714/65057/55226/55183/4361/51025/10155/339/4221/23244/55294/29947/3980/81931/7014/9400/1676/54552/3183/8243/64110/3192/23347/3364/10533/7520/6188/50943/51750/3060/54386/9320/4968/545/2658/7270/2852/7013/10735/23063/54537/659/7515/80351/51366/7291/4292/3178/27063/9984/24144/56893/23293/79991/57379/26277/472/4297/25913/8658/9104/7158/5394/10111/4437/2067/5884/7157/94/604/1843/80169/167227/10039/55086/201163/5468/7644/64061/2697/9370/1602/2625
## GO:0000375 55110/6627/10212/4904/6634/5435/6631/10907/6632/54496/4116/11168/22827/6636/57819/5440/6732/6637/6626/25804/11051/23450/1994/23028/6628/79833/6427/9775/10713/5433/10492/1477/23210/6629/28960/26986/11157/11171/79084/55660/988/51690/9588/10450/10656/4809/4686/8896/6936/5437/6633/10465/708/22913/9785/7307/27336/6428/9967/6434/5439/3185/5546/10992/79753/11189/3181/4858/51634/51319/5431/83443/51163/96764/10285/51729/6635/4654/64783/81608/5436/1479/5725/1478/27258/80004/1660/9410/10523/55234/56259/54957/5093/10898/65109/27257/10978/29890/55954/8487/54883/22916/79622/11338/10419/6426/1207/23658/10199/10921/1665/10772/50628/10073/6429/5978/10250/7737/3189/9128/27339/10084/5438/5432/10946/25862/9092/10236/10286/51362/2332/11100/1653/3183/5936/10657/8449/26121/27238/9733/2521/10914/6432/51691/9416/57794/1859/3192/79171/8996/2963/10291/3184/51593/79869/22794/9589/24148/22938/10262/79760/9129/4928/22826/8570/84991/58155/1993/23543/11017/6733/58509/1655/10594/5434/6421/51428/3187/8241/23350/60625/10659/9169/23451/5411/51341/8621/3191/10658/23064/8175/56949/11325/6433/23020/58517/10949/3178/10421/1659/24144/6651/55094/8899/91746/5094/23283/8189/8233/5430/6431/202559/4236/79066/22889/7375/54960/55596/23517/9295/9879/23524/9939/23398/3550/4670/7072/5441/220988/11066/56339/11193/10284/29896/51340/10521/6430/2962/9716/55696/8106/7536/51585/140890/25949/6625/10181/83989/4857
## GO:0002753 55765/8767/330/3654/64135/7353/23586/7128/26191/79132/83737/63906/4792/7334/6397/708/89870/64127/5970/7311/26057/55666/3665/8517/7099/6885/5608/841/55601/6233/7316/10454/1540/329/331/7314/3661/7189/26065/9698/8780/23118/7105/79671/23369/10392/26007/55914/54941/29997/80216
## GO:0043388 5080/4318/1054/4830/3458/2296/3148/7295/5457/142/5329/1950/8091/3662/65057/10155/2959/3651/3146/28996/23383/4760/3717/7040/2033/22933/8721/149628/9314/65992/11315/7189/6497/23063/5458/3673/9464/7291/3670/3280/4317/25836/5071/5925/2068/1499/3005/4803/5468/3479/2625
## GO:0015908 26279/8792/5320/10257/2058/215/1244/5467/4282/6850/5027/2180/348/2182/1374/5321/1814/3933/208/522/30814/1813/10478/2806/80763/3553/2168/6754/58526/5608/5020/1636/5465/28965/4843/50487/6198/2170/81579/207/186/4923/1906/5565/1376/123/5319/624/8398/22925/8600/1815/1579/11000/788/31/51422/7057/5825/9611/8660/5563/2181/948/5025/11001/64600/5468/3952/32/54677/2167
## GO:0042102 6352/7037/3559/8767/4860/7412/959/11151/10288/5788/916/6375/3600/923/940/5588/3965/10148/4690/912/3569/8772/8440/3071/100133941/54440/3593/3558/729230/3592/3109/970/920/23308/3606/2056/6363/199/7292/7535/3553/1604/3146/3565/3133/9093/3113/1947/975/177/6188/50943/59067/3115/301/7189/11148/3594/30835/51561/6708/6777/3280/29108/4179/7048/79679/6469/3485/3952/3572/3479
## GO:0001945 2296/7422/6850/5629/1948/93/2303/5784/6899/1969/10630/54345/659/2324/7026/5310/5532/7424/22846/94/3964/57493
## GO:0006297 5984/5111/5982/5424/5983/5425/6119/3978/5985/10714/6117/5426/7311/3980/6118/6233/7316/7314/3981/7515/5981/57804
## GO:0010288 6770/5499/1019/1788/9076/5743/5536/6569/5516/1371/6529/351/847/5515/5741/538/23621/8678/5860/210/6678/4137
## GO:0010758 6352/56833/26228/3735/1652/4282/1240/4192/728/1588/719/1432/79647/2185/59341/2660/1435/7057/5595/5919/727/79148
## GO:0031114 26586/10300/4281/79929/6683/58526/59341/9181/23332/10013/10519/2258/50810/146057/4131/25876/324/23122/11075/89795/89927/57551
## GO:0071526 5365/10507/23616/8828/10371/2668/5362/55558/396/54910/5879/23654/2316/4233/4684/9464/23129/6405/8829/9855/5364/9723
## GO:0072215 6772/4609/7490/10409/2668/5155/10413/6928/186/7849/5154/5979/25937/3976/5076/1499/4435/1958/79633/5159/9370/652
## GO:0034698 890/1515/440/3973/6770/6715/2730/3383/5447/7490/3157/4142/2492/4851/2627/10891/5069/6528/1946/7849/26012/2693/2729/3624/3675/7049
## GO:0039694 7153/3576/9474/22880/60489/8091/200316/8934/10155/5093/998/8411/2332/6598/9869/5868/5297/5288/9475/55196/51763/5094/7155/54737/23272/25827
## GO:0040001 10403/51203/4085/5080/5347/9700/29899/1058/54908/79648/3837/55968/9183/6993/9181/23332/5048/3064/55755/137886/1639/126353/10253/54820/10252/4926
## GO:0044550 875/1001/4948/1652/4644/23657/10755/4357/1544/7299/434/1638/4157/1491/6490/1497/7306/9839/6667/9693/26060/51151/4435/7474/56898/7220
## GO:0045737 891/1164/990/1163/8941/84722/5629/1956/5716/904/6714/8851/6868/896/894/5155/22924/207/8812/4331/905/5310/28984/1027/595/5311
## GO:0048384 2146/23532/10626/23019/5371/811/1399/7181/6256/1390/9745/6899/22938/9249/81/1382/171023/1488/5916/8854/56603/2104/6258/5914/8644/1592
## GO:0051294 10403/4085/5080/5347/29899/1058/54908/79648/3834/4342/55968/9183/6993/9181/23332/5048/3064/55755/4134/137886/1639/126353/10253/54820/10252/4926
## GO:0061615 5214/3101/26330/2821/7167/2584/2597/5230/2023/5223/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/2026/3098/669/5224
## GO:0061620 5214/3101/26330/2821/7167/2584/2597/5230/2023/5223/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/2026/3098/669/5224
## GO:0001990 59272/1535/3291/1908/5345/1814/1522/27035/1816/1585/1636/6869/81285/186/1906/2028/183/10159/387/5972/4846/1215/2150/1889/2702/2149/1907/1511/4311/5125/185/1359/10699
## GO:0006778 3162/706/2395/3145/211/10058/402055/259/1544/644/3658/7390/212/1352/27102/200205/3163/1371/2235/93974/4891/1355/54977/6708/645/7389/8803/4779/55316/5498/1543/210/56898
## GO:0045124 952/8792/7037/54849/7128/1445/6850/4160/5027/3569/1956/5578/760/6714/796/3635/101/51208/9842/537/1436/81501/3690/8600/3375/4763/1901/2488/5166/53832/4982/9607/284266
## GO:0046326 28999/8218/26291/1432/4205/208/5584/5781/7015/3630/207/4780/23433/5906/79602/10776/6506/5458/5741/2719/26060/8660/11132/5295/3643/6041/114882/1389/9847/10580/3667/3479/9370
## GO:0051567 1789/63976/3009/6839/23028/1786/672/3720/55183/5079/59335/79723/55011/6598/9869/4000/10919/55818/55870/55209/11107/2122/51742/4204/79813/10782/23081/23411/546/57343/5926/4602/55693
## GO:0051590 8564/10059/1020/5027/4878/23204/6845/1813/6865/8723/6804/8673/5865/4923/2852/6529/135/5663/8600/1815/22930/1268/783/22871/23025/6622/5071/6532/10497/6812/8938/6857/776
## GO:0051930 10874/2171/5024/1312/2906/5724/885/152/134/2911/3586/80763/4988/85446/2475/5020/4923/1906/2903/4987/8620/55/4986/11343/11280/1910/4985/6548/2149/4887/55273/4856/58503
## GO:1905314 7133/2626/6091/64220/4091/4851/4772/6615/3516/7040/7132/26508/6093/4853/9475/659/7291/4846/6662/5925/2702/23493/182/1942/6586/23462/7042/9353/6591/11117/2006/652/2625
## GO:1901222 3654/8877/1116/5052/9618/939/3965/929/26191/7124/7097/8904/1956/7186/9770/655/5610/54542/4792/3593/10333/811/8795/192669/64127/11156/3987/26523/5970/80149/3606/6363/9516/10892/4142/8740/51094/10913/7099/3553/6885/8809/222487/9966/1540/329/177/602/8996/26585/2033/6188/64922/5495/7114/114548/54765/1896/29775/7189/54386/1906/81/351/8717/5494/7205/10616/387/149041/51561/7105/51284/10920/7098/10392/56672/23291/10725/4317/3611/23328/51564/79092/54209/4856/56892/4306/114899
## GO:0006695 1717/4597/6319/6713/29881/3422/3930/2224/10449/10682/2539/50814/5447/3638/39/79071/348/5901/1080/3157/6721/6307/3837/4800/2194/6647/4598/4802/2222/47/4047/1727/10613/3156/7555/8720/51360/9619/22937/4801/338/31/10654/6667/51141/5562/7108/11160/9453/1718/5563/51478/2246/6309/1581/6720/32/23541/3158
## GO:1902653 1717/4597/6319/6713/29881/3422/3930/2224/10449/10682/2539/50814/5447/3638/39/79071/348/5901/1080/3157/6721/6307/3837/4800/2194/6647/4598/4802/2222/47/4047/1727/10613/3156/7555/8720/51360/9619/22937/4801/338/31/10654/6667/51141/5562/7108/11160/9453/1718/5563/51478/2246/6309/1581/6720/32/23541/3158
## GO:0001959 7850/4321/11274/6352/6772/11240/8767/330/3654/3574/8970/3458/2950/26228/8877/25939/5788/7444/7128/865/6059/6850/7124/3569/8772/8904/3091/7186/5469/100133941/9021/834/5771/7185/9641/8651/1147/23513/7294/10293/3326/2672/9971/3455/6091/6868/10062/29883/3562/5770/972/3665/8517/5781/3093/9825/54726/841/3459/7737/335/5777/22954/837/1540/329/171392/10554/1435/8996/56928/284/7341/3717/103/7132/11277/383/10019/58509/54765/3977/26065/1906/8717/29110/22900/81858/5048/204851/10616/10555/3557/79594/51588/3460/8887/7376/1893/8554/8737/3716/26525/59307/29108/8567/2150/5071/2874/11140/1997/57506/3554/7474/558/54209/6586/6041/7837/9353/5468/25999/2621/11213/3263/857/3551/9370
## GO:0035023 1894/3925/9289/8997/345/613/348/2245/6654/5923/6091/23229/84033/50649/55200/55160/7410/7409/7074/4650/335/396/9138/5879/10276/54848/26230/4168/9181/6014/148/19/23370/27/4233/5894/56882/3688/7984/79933/55785/9826/11214/23101/221472/253980/7204/8874/9750/6655/4983/25/7126/80243/27237/50618/397/286205/26030/54922/10160/22899/2909/10395/9459/2150/23263/23189/10211/6453/25959/64787/408/26084/29/8452/604/64283/54869/2149/3675/9639/23268/57493/1902/8829/50650/201163/9855/23365/1281/55701/4653/5159/9828/10451
## GO:0022029 5194/9289/8941/1812/55079/1020/7143/7852/1956/5455/7101/6091/30837/8851/8828/3362/10371/1813/6722/25777/27185/81565/27023/1600/3084/79143/23224/23380/7080/57142/5454/5663/5048/387/6900/26468/23353/2258/5649/1499/3912/9353/8829/85458/6387/89927/2737/114327
## GO:0030888 952/1493/7037/51237/3574/22806/27242/11314/79915/1880/5788/100/4282/51293/2213/3071/3596/7293/7305/958/57162/3558/836/1141/4332/3635/1026/695/3586/972/7099/3565/975/23529/59067/5585/5074/148022/933/149041/472/8660/3567/604/596/196/4208/10451
## GO:1902041 3148/3162/467/3383/7128/6789/8772/11124/7186/672/4118/356/5054/5366/6422/8795/6788/2243/2876/2266/8837/841/355/653/9181/64114/5894/2244/80196/11315/10116/6672/8717/5728/8682/23017/6498/3958/4846/8737/6810/598/8567/7057/3082/8743/7078/658
## GO:0042509 6352/11009/4067/3458/3066/3600/4771/7124/3569/9021/3596/958/3297/3059/5771/3570/3593/8651/3558/3592/2688/55620/5008/3606/2056/9244/29883/3562/2534/3565/5518/23568/23529/3717/7132/59067/10019/1437/1436/6774/8995/5515/51561/3815/3976/3670/3440/1270/22876/79893/3280/5175/2322/2261/10464/5753/3952/3263/857/2690/3572/1489/3479/2066
## GO:0061333 4609/6943/2297/2253/8549/2138/7422/7490/9500/10736/55083/3975/3237/9788/6608/5727/7475/1282/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/56998/6662/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/4435/6299/596/7482/5311/26249/2246/4208/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0072028 6772/4609/6943/2297/2253/2138/7422/7490/655/9500/10736/55083/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/3976/56998/6662/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/4435/6299/596/7482/5311/26249/2246/8642/2247/6469/79633/7481/5159/54361/2737/652/2625
## GO:0008064 6712/5341/29767/3055/1236/7111/11151/119/9087/274/57180/3383/4690/246/10095/10096/7454/8440/5216/23616/3071/3059/6356/88/1496/382/10097/8936/10092/2885/10456/5217/822/7408/57175/10109/10094/6710/54942/1072/2185/55607/9873/10093/5962/5987/8976/10178/9948/2475/11344/9530/9113/1440/5063/6366/7429/2017/9463/10787/23191/55604/1739/55243/29766/5581/10565/7114/6369/10677/9026/2039/387/4868/6708/11078/10152/8195/2059/6711/55435/2909/5580/5756/11034/4641/51332/29108/10435/2150/23189/5921/118/23075/6709/9353/2934/57731/2241/54551/9037/585/85477/51474/24142/6387/10788/50853/80206/51466/25802/2006
## GO:0014003 6664/4821/6663/4067/2950/79152/745/7097/9334/8891/3398/4099/928/1967/3766/8890/7040/10810/9968/8892/23385/9331/79885/8893/5728/6900/429/8506/2068/26011/3400/1902/2934/6469/443/1191
## GO:0019048 6355/7298/3838/5610/10018/9217/23513/3841/3837/920/3839/80149/3836/10898/6256/23633/28996/841/293/10332/3840/10533/7040/10670/572/8812/9218/30835/8692/1605/4916/598/5071/4088/8106/3643
## GO:0031641 9928/6663/1075/27242/8530/6285/745/1890/8882/11202/7133/8898/56288/5915/3687/4099/2475/9451/1739/207/22933/10810/7038/5728/1605/5803/5916/9921/9896/23405/1499/3082/5914/26011/8604/5764
## GO:1903580 983/891/26330/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/6901/11315/7114/89/405/6774/2103/55022/4656/26471/23479/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0035384 5163/6319/6576/1737/9200/79071/5160/5165/2180/25874/2182/5161/8050/64834/51144/23305/201562/55066/23205/1738/2194/47/81616/54704/2639/51660/9524/51703/5538/31/38/23417/6622/5162/5164/79966/2181/2954/6785/7923/60481/5166/84869/32/54898
## GO:0071616 5163/6319/6576/1737/9200/79071/5160/5165/2180/25874/2182/5161/8050/64834/51144/23305/201562/55066/23205/1738/2194/47/81616/54704/2639/51660/9524/51703/5538/31/38/23417/6622/5162/5164/79966/2181/2954/6785/7923/60481/5166/84869/32/54898
## GO:0045727 6352/8872/1019/940/23185/6659/1994/4690/9775/7124/3569/3692/65094/8440/26986/5724/6199/5594/708/54915/3646/56648/4869/55226/51441/1618/1984/8664/8531/1660/23034/2185/65109/60558/6256/5611/6156/63935/113251/2475/23367/51654/55124/2332/79072/10657/10605/6198/23178/602/23645/84271/3184/6895/10600/2064/1654/253943/5935/55323/79727/27230/8893/387/7431/6191/22927/1938/29063/51335/3673/65110/55245/54505/65018/28958/51334/7057/22868/23107/5595/56339/9811/51065/55364/55005/27303/22849/116496/1153/7349
## GO:1901800 6790/5347/7336/5702/9978/7415/5704/55741/10221/9532/10134/55212/2932/5716/8975/26263/5886/1050/8078/5700/6613/23640/5706/7917/55743/55294/4193/4287/2332/5701/7341/207/5705/22933/4780/65992/28951/114881/2931/9817/9709/1263/1453/6872/29978/5663/55070/25898/1855/51136/4092/3300/6449/1452/5601/863/26471/8554/10273/1454/9992/9695/2729/9655/5071/1601/54209/9810/29997/90865/10769/5988/857/1191
## GO:0006704 3291/3290/3284/5978/1585/653/476/1586/1609/3283/1584/650/8912/1392/27122/1589/54361
## GO:0007194 9568/8811/729230/8484/4883/2773/53836/2912/9495/56413/2587/2771/2913/1910/10142/84059/53829
## GO:0010224 8372/4436/3593/3592/1026/5970/3713/3150/2074/8692/6794/3373/7508/596/4311/1396/4239
## GO:0017085 891/6770/1644/5603/3297/80149/7311/6327/1616/1371/6324/23095/3178/7054/4131/1543/4747
## GO:0032930 1535/2950/3689/1956/7305/2358/2773/6647/3684/7040/1401/183/2771/5580/2150/57126/4137
## GO:0043923 23076/6882/6597/904/7023/2959/51176/51193/6598/9150/22938/2033/64710/3725/6667/1105/3249
## GO:0055003 1482/8557/5629/7273/4205/6722/8048/5156/4633/4089/70/10529/23363/91807/4628/5159/80206
## GO:0061318 8842/28999/7490/100133941/4643/10409/2303/8826/4868/5420/5800/7827/182/3913/9863/9370/652
## GO:0072112 8842/28999/7490/100133941/4643/10409/2303/8826/4868/5420/5800/7827/182/3913/9863/9370/652
## GO:2000811 7088/51651/5747/6714/4851/4170/5290/3678/3688/1048/57343/596/6591/5166/857/4915/4680
## GO:2001267 4318/9705/80758/3965/5329/581/7023/841/355/79886/55011/3717/11315/54475/27429/4088/2934
## GO:0009064 26227/1503/445/440/8833/65263/2730/80150/5471/5831/2673/2805/7915/23657/79814/790/5832/9971/56474/3034/6507/4842/4942/2806/5625/2744/56954/1610/8659/4843/2572/10841/383/2356/54529/23569/493/2747/58510/4846/4204/23576/2729/420/9945/23409/5198/23564/1373/2752/2571/2184/2746/8604/80017/6898
## GO:0050891 3868/3925/114/1364/2810/239/79152/6338/9076/551/525/1080/5567/113/64834/242/360/5575/5568/231/359/2312/3848/109/6722/361/5566/26154/1585/8766/59341/3037/4233/51297/59344/8692/5576/112/1579/51763/5573/56603/554/115/8626/107/108/6337/22841/7466/6340/358/7357/5577/66002/7021
## GO:0061515 10859/2539/8761/9991/7097/23210/5469/3071/79705/7305/10006/2124/2056/6521/6722/51208/80739/5305/5781/55294/6194/5777/3050/6005/2033/29766/2038/537/10019/2313/302/6886/669/7066/2623/351/10296/10100/10163/5048/4891/4853/51341/2039/3815/8600/2068/4057/5926/10365/604/4211/221395/2200/284266/25893
## GO:0016447 9156/7037/959/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/3558/55183/7292/3586/9025/22976/3565/6929/23529/7040/50943/8741/3981/54537/4292/9984/10538/5423/57379/6830/7158/2067/23075/6778/604/1235/10039
## GO:0045981 983/891/26330/136/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/5957/6901/11315/7114/89/405/2979/6774/2103/2978/55022/2981/4846/4656/26471/23479/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0050879 7136/8557/4626/6329/9456/4151/1134/1144/1147/55737/23336/1814/9446/7140/1756/28996/2475/79784/488/7125/4625/859/3759/89/487/7134/4621/1938/7515/51542/429/2548/51761/4130/1760/26058/7138/844/1140/2946/3708/1311
## GO:0050881 7136/8557/4626/6329/9456/4151/1134/1144/1147/55737/23336/1814/9446/7140/1756/28996/2475/79784/488/7125/4625/859/3759/89/487/7134/4621/1938/7515/51542/429/2548/51761/4130/1760/26058/7138/844/1140/2946/3708/1311
## GO:0071349 4001/3595/6627/5898/3458/5721/4507/3936/6888/4282/4478/5034/3593/140885/3592/9446/759/3185/9049/6775/3181/829/5478/1072/3586/6647/3313/5062/5055/998/6175/5306/3717/5908/302/961/1265/9987/3594/3716/7297/23236
## GO:1900544 983/891/26330/136/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/5957/6901/11315/7114/89/405/2979/6774/2103/2978/55022/2981/4846/4656/26471/23479/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0006998 9133/983/891/5347/9688/9631/23175/7443/8815/80346/5578/5579/57097/27183/25777/2010/6683/23141/5518/81565/10269/27348/23399/4000/23435/2852/26993/91782/1861/5520/5048/5515/23353/79188/1639/26092/1760/27243/91754
## GO:0035987 4318/4324/3689/22943/79577/8091/3281/1284/7448/3676/4838/2627/6657/6928/3678/4323/3914/23168/2335/9646/64321/29072/54623/4317/3624/1499/1291/1301/3685/79923/3912/1295/1290/4313/3693/1294/1289/3909/3679
## GO:0042551 53335/712/23028/9334/26047/6376/30813/23114/54738/23787/23294/2475/10882/9175/9463/4897/5881/8578/351/9331/4976/30819/5979/27289/718/375790/6900/4204/6911/1910/5925/10265/1203/1028/596/4929/57731/9855/4653
## GO:0045058 1236/915/1794/5788/916/30009/3600/940/4063/6850/9474/912/3569/8456/5771/3593/6693/3662/920/6722/972/7535/3707/2475/64919/1540/50943/6774/3594/387/51561/10538/3714/6794/6778/596/6469/2737/2625
## GO:0043409 2305/55872/2633/7345/4609/8000/6317/4067/2950/11314/1411/5788/467/1852/4771/1445/26191/23636/5027/5801/2048/83737/348/3301/54900/5795/655/5771/140885/5716/152559/6422/259/78986/1849/63904/10048/11072/5997/2873/55885/11221/4221/11329/10385/5770/7099/3553/5245/5777/2889/10114/51231/5518/1540/57053/171392/9368/1739/859/5296/1845/207/8661/9314/3156/5999/10019/5998/55870/2852/4089/64853/55584/51562/8841/7430/5048/5728/5470/51347/27330/5515/8692/2122/1605/10318/25/81848/3976/23624/9270/5300/57447/51763/1850/10636/10771/5859/2218/65018/5580/5187/6609/2150/57556/5071/200734/2874/9611/4763/408/3476/10253/1942/1843/55450/80279/10252/2308/201163/23410/51339/7078/1848/2192/6653/3480/11213/11117/857/1846/9370/652
## GO:0050729 6280/6279/3620/7941/8792/1075/712/5320/1236/1051/136/26228/2867/6283/3689/2207/3600/923/940/3735/3929/5603/1652/7124/3569/4049/7097/5743/23097/1956/6376/4192/5054/63940/4792/7052/3593/3558/729230/10333/27190/4878/64127/2161/4615/2896/6223/1050/695/84818/6845/101/5008/3949/3606/5734/2113/5294/7292/1660/51704/6346/7099/3553/23633/3133/59341/8723/975/3684/177/8673/3605/353514/3717/7132/59067/11315/6369/4889/351/8717/23765/148022/183/718/9575/51561/3818/8692/10318/3673/51284/8600/7098/55540/26471/4258/9173/6777/1268/9180/4317/6622/26060/7474/8840/54209/4023/90865/5733/5138/185/6863/3572/2167
## GO:0007260 6352/11009/4067/3458/3066/3600/4771/7124/3569/9021/3596/958/3297/3059/5771/3570/3593/8651/3558/3592/2688/55620/5008/3606/2056/9244/29883/3562/2534/3718/3565/5518/23568/23529/3717/7132/59067/10019/1437/1436/6774/8995/5515/51561/3815/3976/3670/3440/1270/22876/79893/3280/5175/2322/2261/10464/5753/2241/3952/3263/857/2690/3572/1489/3479/2066
## GO:0031112 84722/4733/22919/5058/402/8851/10300/79998/6683/59341/5879/859/6188/4233/23332/51199/6249/55755/4204/2242/1639/4131/1027/10142/11075/89795/4926/23116/4137
## GO:0032228 3351/8224/760/134/23349/1813/3799/64854/1269/9001/3845/6869/148/5581/23228/4889/6529/135/5728/1268/766/22871/4763/5021/5334/6812/8938/11188/6863
## GO:0033028 6352/1029/1234/2207/1514/4282/3569/23657/382/64127/6868/3579/2056/5291/7067/5293/3665/3707/3661/10296/5728/2693/23601/23411/350/596/4208/4254/9370
## GO:0043552 1236/4067/930/5747/6714/64127/2358/6363/7410/2321/2185/116986/5155/6366/55626/5587/7040/5156/3815/30849/2268/7010/2322/2261/22863/2247/5159/3667/10451
## GO:0045745 29767/5653/2253/5149/5578/25818/55737/1814/1113/1813/4842/10419/5245/43847/2850/5148/54550/2147/11251/2931/2852/29978/718/6900/858/55/2535/7474/2922
## GO:0045841 991/10403/4085/81620/7272/9212/9319/891/5347/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0046688 983/26/15/3383/3297/4495/3552/1544/359/5621/6647/1616/6284/4780/11315/351/513/6652/5066/538/4779/6622/4017/6649/23621/1543/8678/540/358
## GO:0060317 2253/8751/7472/4851/51384/6615/3037/3516/7046/4089/57142/26508/10439/650/7291/2022/90/23493/182/1942/23462/10252/7042/7048/6591/55273/4488/4487/7049
## GO:0061384 1482/5469/655/2280/6654/55636/8928/54583/6722/4851/9510/27302/653/3516/859/7046/3084/657/10277/2022/23493/7010/1901/23462/7042/57493/5950/58495/7049
## GO:0071295 1594/83990/3600/5469/8805/6422/5292/5251/2348/1591/7421/4193/22938/846/8074/2350/5179/2242/54332/25959/490/3371/1277/6591/5468/3952/2621/5764/10631
## GO:0097421 2146/6790/7298/5111/1051/3162/3549/57817/9076/1956/1460/5967/7351/1459/7448/3586/5727/1361/6156/10419/7040/5906/5774/3077/9104/6430/2735/595/2737
## GO:2000816 991/10403/4085/81620/7272/9212/9319/891/5347/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:2001171 26330/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/6901/7114/405/6774/2103/55022/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0002294 8767/3458/942/1880/30009/4063/3965/3569/5971/54542/3593/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/6774/3566/4092/3594/149041/51561/6095/10538/538/9655/6778/5914/4602/604/5590/6097/2625
## GO:2000300 23413/136/1138/321/3351/1812/10059/1020/10675/10755/28964/1142/5582/2932/1137/1141/5579/6855/5217/8573/1813/9515/594855/7476/2332/6853/488/6804/5028/5030/815/148/5908/5906/9783/320/2901/5868/135/5023/1855/22930/8973/5864/3356/1268/783/22871/107/9581/10497/23621/1129/9162/6843/6812/6857/776
## GO:0007569 2305/983/1111/3159/26271/1029/3383/11200/4282/5604/3014/1030/23636/3135/79677/5933/675/5054/5591/5371/8091/3805/811/1432/384/10135/4869/3398/8550/3987/1026/9521/23137/55532/6722/6647/54708/7014/2475/3265/51384/9093/3845/7015/3622/10269/7471/51343/4000/80317/657/545/5074/1021/4976/5728/7994/10000/25/11179/22925/7291/7486/4215/6909/51389/2022/472/57178/5580/406/23515/23411/4335/8626/3611/2067/26156/7157/22846/604/6787/596/80169/5549/4311/50507/9891/10769/6926
## GO:0005976 313/10331/2642/5499/7262/5834/9334/1118/80183/1950/5255/7360/2932/79369/5236/10678/2992/8445/208/2997/5500/2131/2132/5501/5443/2475/2645/5155/2538/9348/1213/23178/3630/3037/207/7040/5260/5504/2931/5509/4790/2103/8534/5257/3036/27159/5506/5741/55454/8908/2998/56548/51763/2548/55790/5256/55512/51422/2632/178/5261/8660/3643/5836/3340/27232/5837/3953/10580/51294/8864/5502/5167/3667/3572/3479/8972/5507
## GO:1902106 3902/3149/1493/4609/10859/4830/4067/864/55365/28959/30009/3659/3549/865/2213/23240/3135/4192/10221/5771/54542/8651/3558/3623/11006/6422/3398/3635/25793/80149/7292/51208/325/972/7099/3718/55294/3146/3565/2302/8451/7001/3142/171392/6988/51043/634/50943/301/2064/1021/3566/10766/4092/149041/2624/7098/3440/9935/3456/9655/3624/3204/10401/4763/1499/4057/5295/5914/604/10272/6469/2737/2200/9607/9370/652/10234
## GO:0010827 28999/2171/6513/8013/7124/3099/8218/7525/26291/1432/57761/5579/2688/4205/208/5584/3553/5781/673/7015/51548/2887/3630/207/4780/23433/5906/79602/2931/1906/10776/5319/718/6506/55022/5458/8682/2695/5741/51763/6814/79058/2719/51422/26060/8660/11132/5295/3643/6041/114882/1389/9847/10580/25999/55198/3952/6253/1909/5167/3667/3479/9370
## GO:0051279 3627/6373/4283/4067/1535/11151/5031/1812/6375/55151/930/9474/6262/4644/57214/6376/3596/2280/55636/9002/9446/1729/623/581/4842/2185/5335/9472/9001/5566/1756/5777/57158/1193/5144/2147/7040/5581/4923/2852/57338/3064/10345/25/5170/287/6546/6622/7070/825/845/2149/844/187/5311/3270/6717/2281/7220/2946/477/775/5350
## GO:0033619 3458/5588/7124/5027/348/7133/25825/4898/1512/55486/101/6868/5970/8728/55851/51107/5657/29763/3586/4627/3553/5045/8754/9860/56928/7040/7189/8720/4790/23385/6093/5774/5979/5663/2822/51360/1605/102/7076/5664/51752/83464/23621/4804/164656/7078/150
## GO:0061098 6352/7804/54892/26228/1795/7039/100133941/1950/9148/6714/10006/57091/2069/134/2043/6868/5621/51704/5770/2534/5062/55294/5155/1636/2074/353514/26585/148/3084/1741/1742/6886/1436/183/5649/2065/1856/2209/627/4739/2915/9094/1942/50507/2621/4915/150
## GO:0086002 23630/1824/3757/3753/9631/274/6262/2257/3741/6327/6331/6323/3762/781/1739/476/859/2316/5318/3759/1829/6324/6640/8913/3728/10052/3764/287/1832/3781/9722/9992/3760/783/3784/2702/29119/3752/54795/23327/857/775/23171/55800/2697/776/23704
## GO:1900449 81831/6347/3458/2048/6376/88/1612/5923/729230/10368/5621/2185/4988/2534/2902/50944/54413/2904/1740/10891/54550/54800/1739/23542/1741/823/50488/1742/10369/351/2903/2893/8787/2892/5649/65018/1392/2890/22871/23025/27091/154/4208/4747/1393/27092/2891
## GO:1901880 6712/29767/7111/119/26586/822/10300/6710/4281/79929/5962/58526/11344/7429/55604/9181/29766/23332/10677/10013/2039/6708/10519/11078/2258/2059/6711/51332/50810/146057/118/4131/23075/25876/324/23122/11075/6709/2934/57731/89795/85477/51474/89927/57551/50853/25802
## GO:0003091 114/551/525/5567/113/360/5575/5568/231/359/109/361/5566/1585/8766/3037/8692/5576/112/1579/51763/5573/554/115/107/108/22841/7466/358/5577/66002/7021
## GO:0008038 27242/55079/7534/1951/2048/7852/26047/2049/836/6091/8851/2043/10371/1954/55118/1826/4897/1949/351/57142/4978/6900/2909/1268/4685/4692/8829/2042/51294/64221/9037/63923
## GO:0033762 890/445/114/2642/1537/1244/2641/5567/26291/113/5575/5568/109/5566/2740/5207/9340/383/5576/1385/112/5573/115/1407/107/1373/108/5860/5577/6720/1036/5105
## GO:0046825 51512/3429/2810/7295/10541/1020/5905/580/2932/64328/2010/3553/5781/4193/5566/7175/5784/8536/11315/26993/7531/6672/5494/9531/55781/6830/6934/29072/7157/55696/10411/2621
## GO:0050982 8557/8989/7852/7273/4914/79955/40/23349/63982/6323/2534/8048/784/57053/859/5270/55584/3728/3815/3673/8195/25861/3356/5310/23621/1301/3736/5311/84059/6387/63895/3249
## GO:2000516 8767/3458/942/6375/5588/3965/9308/3071/54440/3593/8651/941/3606/6363/10892/7292/11126/1604/975/3142/51043/50943/114548/301/3566/3594/51561/9655/5914/4602/5590/7048
## GO:0018210 983/7272/1111/5347/8767/54541/8877/1116/2591/1020/7443/5604/2641/57214/2011/1981/655/1950/1460/5594/5578/2932/790/22853/56288/5579/7224/8851/156/566/4294/3093/9943/5566/28996/2475/5599/5528/10114/1859/199731/5587/815/7046/65125/207/7040/22933/8312/9294/2590/2931/7225/5585/351/1609/29110/91/6872/51701/25865/4092/9475/5470/2039/2589/5170/63917/51763/8408/5580/51422/9730/8658/90/8558/200734/51719/10253/27347/7474/596/7048/1195/7786
## GO:0007004 4751/9212/22948/908/10576/5588/54433/7203/10574/55505/5594/10575/3326/55651/6714/65057/55226/8550/26272/23381/4361/3320/10728/7014/10694/54552/3183/7015/3192/7520/5609/54386/545/55135/7013/5073/80351/11284/3178/23293/79991/26277/140609/5981/472/25913/8658/5394/10111/5595/1499/4216/80169/79618/167227
## GO:0002026 133/4624/6262/10539/153/156/1113/4842/4635/8048/4634/488/4625/476/148/4633/493/4846/2548/6546/6548/1907/477/857/5350
## GO:0003148 1482/2253/6091/8828/5915/4091/2627/6899/657/4089/659/3670/6909/2022/2263/5914/7042/8829/7048/55742/4488/10512/23414/652/4036
## GO:0006735 5214/3101/26330/2821/7167/2597/5230/2023/5223/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/2026/3098/669/5224
## GO:0009112 7298/8833/2766/5471/1807/10606/100/3251/23028/1890/7372/6240/5594/7498/790/51727/5631/2475/978/6470/55/1806/51292/1373/4329
## GO:0009261 11332/215/3251/5142/272/27115/5151/5152/5143/53343/3704/5144/3094/283927/4907/10846/38/23417/5141/9583/8654/79873/8622/5136/5138
## GO:0035116 5307/2253/7473/257/5469/55636/2778/60529/5915/23322/7476/2249/7291/5916/2719/8626/1499/6469/4488/3899/116039/7704/4487/6926/652
## GO:0035883 5080/4821/2932/3172/6009/6608/4221/654/3651/2627/4825/653/4760/2931/1021/572/3642/9575/5170/406/5991/3280/51092/7474/652
## GO:0035902 51083/2805/5967/10097/1544/5309/2185/23774/190/4193/5245/7040/5972/2309/1392/7054/6546/2067/4303/1543/2353/5468/3176/7031/7166
## GO:0036475 142/468/8013/3091/23657/10333/4841/57707/25793/3586/7099/55294/5978/4170/2021/7471/10533/11315/55074/65018/5071/10314/8321/1499/7248
## GO:0045761 9568/3208/8811/729230/1394/8484/4883/6786/7077/2773/53836/1816/2912/9495/56413/2587/2771/2913/1910/4763/10142/84059/775/53829/776
## GO:0045907 952/3383/5743/551/1956/5724/152/2243/2266/3274/1131/6869/148/207/846/2244/3269/387/3356/2702/2149/1621/54795/857/2697
## GO:0046885 133/3458/1594/5447/7124/3091/2672/3553/7421/654/5978/1181/10891/653/476/27120/4790/1609/405/650/1958/8644/27122/54361/8614
## GO:0060512 10481/5268/9420/655/6422/3239/6256/10116/23213/10818/2736/5916/6662/4824/2263/8626/3371/7474/3400/6469/2099/1396/367/652/3169
## GO:0061621 5214/3101/26330/2821/7167/2597/5230/2023/5223/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/2026/3098/669/5224
## GO:0061718 5214/3101/26330/2821/7167/2597/5230/2023/5223/5315/3099/3607/2027/5211/5313/229/83440/226/230/2645/5213/2026/3098/669/5224
## GO:1902624 3576/1236/6375/3929/5880/3071/4192/728/57118/719/708/8291/101/3579/6363/23604/972/6366/5879/158747/1906/9750/51561/3554/7060
## GO:2000171 53335/3066/9856/7533/382/50807/7224/3196/10498/54413/7225/5728/23105/1630/5802/26052/9693/22871/7337/5530/4776/64689/1942/3397/10769
## GO:0048747 7345/7504/8557/58/7422/4624/9456/7480/7273/1525/6261/9734/26263/8291/3792/2876/4654/6608/10939/1756/10269/22953/4633/79810/6497/9750/858/4656/6474/4015/6443/55909/5530/9759/596/2318/1140/26509/10324/6444/9254/4629/1311/652
## GO:0097345 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/7159/10018/5366/2932/10971/7533/5534/7029/581/2139/7529/841/79680/5599/54978/28978/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/55288/8626/89941/7157/7755/596/64112
## GO:1901799 27074/55872/51377/10755/57805/5582/3326/6599/55432/51009/9097/9683/80011/51322/7917/51035/6386/4534/29761/9491/51465/11011/65992/11315/7327/7874/11345/10869/10956/64844/6449/6135/6880/3077/23274/9529/8473/4130/23429/819/2272/29997/210/6469
## GO:0000717 142/9978/1642/9557/2968/7311/1069/8451/6233/7316/7314/2071/8450/2965/5887/404672/2967/2068/1643/7508/7507
## GO:0006582 1001/4948/1652/4644/23657/10755/7299/434/1638/4157/6490/1497/7306/9839/9693/26060/51151/4435/7474/596/7220
## GO:0030318 6663/4948/4644/1908/8975/5873/56999/81285/2767/89781/3815/9839/1910/4286/4435/596/80070/4208/4254/5167/2737
## GO:0034695 1236/5031/15/6422/5732/6363/7292/5020/6366/2782/5030/2796/207/5581/10270/112/31/5562/5563/5468/7049
## GO:0035809 133/56302/4883/231/685/1813/6521/5020/3037/1906/135/8692/4987/2771/112/51763/4879/554/1910/4881/7021
## GO:0048305 2821/959/7124/3569/7186/54900/7293/958/3558/10758/7292/3133/5452/7189/7009/933/6810/3567/5950/90865/7494
## GO:0048799 10507/6261/2688/26585/5979/387/650/51360/5741/8854/5076/64131/7059/4057/2261/8642/3952/79633/5364/3479/2625
## GO:0051195 54541/57103/4504/2534/5465/5207/51548/10891/89/6774/1497/10013/863/4656/26471/9759/7157/3240/4314/8604/2203
## GO:0051654 7345/3091/4139/80179/8936/10128/55201/6683/8409/7314/23095/4976/55288/5819/89941/9638/4131/66008/4747/55638/4137
## GO:0060390 9688/8200/142/23625/654/4838/7046/7040/657/4089/25937/6711/64081/10140/1601/11030/58495/4856/7043/652/8483
## GO:0060444 5469/6356/5371/6714/11331/7421/2119/1435/859/1969/10765/7040/374/8945/7474/4488/2099/54361/367/6926/5241
## GO:0071378 6770/4067/5747/2688/1442/5770/5617/3718/5829/9518/3717/55777/2689/6774/6777/54741/5295/6776/8835/5618/2690
## GO:1903306 3162/11314/3965/613/2213/3134/729230/255057/8832/3598/5978/2332/5908/634/5906/2294/2771/114088/6814/29/150
## GO:0001912 3902/26228/5788/259197/4068/6375/8807/5027/56253/8772/5817/10125/164/7305/3134/3593/3592/51571/10666/11126/7409/3133/4843/3684/567/3916/59067/383/8417/3594/51561/23705/5819/6777/2150
## GO:0006509 3458/5588/7124/5027/348/7133/25825/4898/101/6868/8728/55851/51107/5657/29763/3586/4627/3553/5045/8754/9860/56928/23385/6093/5774/5663/2822/1605/102/7076/5664/51752/23621/7078/150
## GO:0030810 26330/136/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/5957/6901/7114/405/2979/6774/2103/2978/55022/2981/4846/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0033574 768/10481/6715/4830/5723/867/1019/706/6696/4507/4678/551/4478/3297/1460/790/811/2002/3239/65985/2056/8837/2660/2796/1906/572/9475/51389/6915/4824/23411/7057/1843/5350/367
## GO:0051281 3627/6373/4283/5031/1812/6375/930/57214/6376/3596/9002/9446/623/581/5335/9472/9001/57158/2147/4923/2852/3064/10345/25/5170/6622/7070/825/2149/844/187/5311/6717/7220/2946
## GO:1900373 26330/136/2023/5208/5210/5027/3091/7415/5209/51085/5207/10891/3630/5957/6901/7114/405/2979/6774/2103/2978/55022/2981/4846/3356/65018/5562/957/5563/3643/54209/8604/2819/26137/3479
## GO:0031050 5604/4613/1956/5605/23318/192669/79753/3181/26523/80149/7247/7015/10269/29102/51593/103/7040/79670/8575/6895/1655/4087/79727/9612/9698/7257/23369/51490/23264/8737/192670/9611/5530/4086/56339/23405/7157/4088/29066/2099/652
## GO:0044003 6355/7298/3838/3853/2597/5610/10018/9217/23513/5272/3841/3837/920/3839/80149/3836/10898/6256/23633/28996/841/293/10332/3840/10533/7040/10670/572/8812/9218/30835/8692/1605/10318/4916/598/5071/4088/8106/3643/3685
## GO:0070918 5604/4613/1956/5605/23318/192669/79753/3181/26523/80149/7247/7015/10269/29102/51593/103/7040/79670/8575/6895/1655/4087/79727/9612/9698/7257/23369/51490/23264/8737/192670/9611/5530/4086/56339/23405/7157/4088/29066/2099/652
## GO:0071825 7941/5320/9388/336/341/8435/274/6646/345/348/5034/5567/5360/5568/949/30814/5326/1071/337/5566/8694/335/6456/4353/19/649/183/4547/10347/9619/55937/338/3990/56112/2181/3931/4018/23461/4023/213/185
## GO:1905268 3159/1789/23028/1786/9474/672/55611/25842/3720/6688/26155/5927/6418/339/5079/22823/5253/9555/55011/6598/23133/50943/9320/55818/6497/1487/51366/7291/57379/54880/6830/23081/23411/6879/6622/56848/7320/26036/55693/5252/7349
## GO:0002548 6278/3627/7941/8792/6352/56833/1230/6347/4067/6354/5641/6283/3569/5054/3570/729230/57402/6368/796/6223/2358/199/2321/6346/3146/5155/26585/10488/158747/301/3958/8600/5800/1843/9353/4681/4856/6387
## GO:0021795 5194/9289/8941/1020/1956/5455/7101/6091/30837/8851/8828/3362/10371/25777/27185/81565/1600/79143/23224/23380/7080/57142/5454/5663/5048/387/26468/23353/2258/5649/1499/3912/9353/8829/85458/89927/2737/114327
## GO:0035196 5604/4613/1956/5605/23318/192669/79753/3181/26523/80149/10269/29102/51593/103/7040/79670/8575/6895/1655/4087/79727/9612/9698/23369/51490/23264/8737/192670/9611/5530/4086/56339/23405/7157/4088/29066/2099/652
## GO:0048701 50515/4522/257/9775/10736/79977/3975/2778/5079/7289/2303/4838/6495/3198/6899/27173/7046/5156/9968/4323/4087/7291/4325/29072/2263/7020/3199/10265/4088/860/4208/5396/7048/9742/57728/1746/7043/652
## GO:0060393 7272/22943/655/11171/1460/654/4838/4091/6386/27302/653/26585/7046/7040/657/2658/4089/91/92/4092/650/659/56937/5300/3077/2022/64081/90/3624/1601/94/2662/57045/11030/753/11117/7043/652
## GO:0071827 7941/5320/9388/336/341/8435/6646/345/348/5034/5567/5360/5568/949/30814/5326/1071/337/5566/8694/335/4353/19/649/183/4547/10347/9619/55937/338/3990/2181/3931/4018/23461/4023/213/185
## GO:0042472 5459/8820/8557/2253/1749/7545/4647/3638/2138/2254/8013/474/2048/613/5629/525/55636/23513/5456/53904/79955/2637/8323/6647/6495/57053/3198/6899/9368/7471/51168/10083/7849/55584/1855/5754/9132/9750/2624/2736/7976/11078/9423/9935/10427/2260/220/6662/1750/5076/4762/51141/8516/1856/2263/7020/9620/51761/2535/2299/29/10253/1301/80184/4920/7474/1280/55084/5396/26018/3249/2487/6935/80736/2625
## GO:0007006 3002/8326/1869/2810/578/292/9141/10449/637/664/7027/56993/7534/10105/7159/54927/79135/518/9551/506/3099/509/10018/5366/55750/2932/25813/55669/10971/7533/516/23593/5534/7029/1267/522/3320/10476/514/581/2139/79568/10989/3954/26519/515/6993/92609/7529/841/79680/51079/10632/26520/5599/54978/498/28978/8996/815/1386/6687/6901/2931/521/539/7531/513/6774/4976/572/93974/3308/9026/27109/79594/7161/9927/23368/5533/4836/55288/517/598/65018/8626/6622/89941/7157/7755/6548/596/64112/29928
## GO:0018022 2146/200424/1789/3006/63976/3008/7468/3009/6839/23028/1786/2641/3007/672/9757/2672/3720/387893/79823/55183/26038/4221/79918/5079/59335/399818/22823/11137/79723/56950/8085/22976/9555/64324/56979/63925/5929/23476/23512/55011/6598/9869/8726/22938/25895/4000/10919/55818/55870/4089/55209/64754/79091/11107/9070/7799/80335/23168/6018/54904/9739/2122/30827/79609/80349/51742/4204/79813/9646/7403/84444/54880/84193/6830/10782/8473/4297/23081/23411/29072/546/23067/26053/57343/1499/5926/4602/51111/2145/55693/6419/5252/196483/2625
## GO:0046209 445/2643/3458/3689/3383/706/5806/5447/7124/7097/5743/140885/1785/10333/54/3326/384/1728/2644/3320/80149/199/4842/2185/3586/7099/3553/2475/1545/4843/5879/207/3717/9314/8570/5740/186/961/1906/148022/493/183/9475/4846/6095/6697/9722/23576/9104/4317/23564/1373/4088/10365/2717/3643/3043/947/948/5025/5311/857/6542/1191/1524
## GO:0061053 6664/5100/2296/8557/22943/3549/4522/10683/6862/5591/10959/6422/3975/10006/6608/5523/4617/1044/5727/2303/5362/23242/6495/27023/7471/3955/3516/2033/1045/657/56983/54475/23509/9968/79728/5075/4089/9573/5663/4618/2294/9839/55746/2648/7403/8854/4824/7516/57669/6911/472/6939/5930/7157/4088/4920/7474/4222/6469/57728/7481/10512/54361/4223/2487
## GO:0030101 639/914/57823/11151/50615/80328/3689/5788/259197/3600/5052/26191/10125/164/2000/7305/9437/3134/6927/3593/3558/9760/3592/51744/3398/6845/25807/3606/5293/5873/7917/7301/8809/3133/841/10461/3916/148022/2323/80329/51561/81609/6670/22890/6777/3456/11334/100507436/558/10464/3952/2621
## GO:0050854 50852/2633/3932/1236/4067/11314/26228/3783/5788/100/865/930/26191/9404/2213/5795/79037/5771/8934/11006/5579/5970/10666/10892/5621/10385/5079/11126/5777/9840/975/1540/8915/1845/6188/634/778/23228/640/5074/7430/56940/25865/933/149041/5583/3958/5819/7070/2874/1998/1997
## GO:0140029 5341/4067/2207/10652/6850/1080/10814/23513/4878/6809/695/6845/8541/3745/23256/4218/594855/8723/6804/6616/8673/26276/10490/815/65082/10244/26059/8867/2901/8775/5023/5663/2039/11311/1488/9751/5899/5864/6814/6813/23233/22871/6622/9341/10497/6843/9900/54843/8773/6812/93664/6857
## GO:0098732 3458/2005/3066/7422/57805/9734/8819/10432/5927/23408/3065/51547/79685/25855/11313/5978/5245/4287/5599/51548/3622/1859/10474/5587/23186/7040/51043/2033/22933/50943/11176/6421/10933/26993/6497/8841/2339/54531/79885/10270/25865/11107/10013/51104/1487/138151/5538/81926/65018/4752/5187/23411/10014/5562/25836/200734/56848/23409/9759/7157/5563/51564/604/56271/23410/8864/6720/10129/7349/4137
## GO:1904950 7850/2633/55612/51311/91543/10859/56943/336/27242/3418/3753/9466/5552/7295/3638/7128/1445/1020/26191/7124/5905/348/3301/2213/580/6376/55024/9734/5371/10333/6422/1814/5211/384/9971/79651/84830/55432/10434/80149/7351/10062/3033/1813/5734/353500/51009/3745/3586/10385/5987/4988/3553/5781/9515/7447/5978/9530/335/8724/3998/9478/23208/5715/3630/10961/51465/353514/80223/284/11261/9727/4544/2664/50943/3156/27202/11315/7114/114548/80772/301/7327/11060/6992/7013/6672/22900/7430/7009/2039/933/10956/2693/29969/9448/55366/8620/2335/51715/9270/1815/9531/11142/51763/3440/307/26525/26056/5569/55691/9647/2150/4345/5071/1992/5530/23409/8609/4763/28984/64285/947/80762/2149/948/26297/2281/90865/23005/1149/3625/4856/6720/2621/10391/2615/347/3667/150/114899/9370/4137
## GO:0000377 55110/6627/10212/4904/6634/5435/6631/10907/6632/54496/4116/11168/22827/6636/57819/5440/6732/6637/6626/25804/11051/23450/1994/23028/6628/79833/6427/9775/10713/5433/10492/1477/23210/6629/28960/26986/11157/11171/79084/55660/988/51690/9588/10450/10656/4809/4686/8896/6936/5437/6633/10465/708/22913/9785/7307/27336/6428/9967/6434/5439/3185/5546/10992/79753/11189/3181/4858/51634/51319/5431/83443/96764/10285/51729/6635/4654/64783/81608/5436/1479/5725/1478/27258/80004/1660/9410/10523/55234/56259/54957/5093/10898/65109/10978/29890/55954/8487/54883/22916/79622/11338/10419/6426/1207/23658/10921/1665/10772/50628/10073/6429/5978/10250/7737/3189/9128/27339/10084/5438/5432/10946/25862/9092/10236/10286/51362/2332/11100/1653/3183/5936/10657/8449/26121/27238/9733/2521/10914/6432/51691/9416/57794/1859/3192/79171/8996/2963/10291/3184/51593/79869/22794/9589/24148/22938/10262/79760/9129/4928/22826/84991/58155/1993/23543/11017/6733/58509/1655/10594/5434/6421/51428/3187/8241/23350/60625/10659/9169/23451/5411/51341/8621/3191/10658/23064/8175/56949/11325/6433/23020/58517/10949/3178/10421/1659/24144/6651/55094/8899/91746/5094/23283/8189/8233/5430/6431/202559/4236/79066/22889/7375/54960/55596/23517/9295/9879/23524/9939/23398/3550/4670/7072/5441/220988/11066/56339/11193/10284/29896/51340/10521/6430/2962/9716/55696/8106/7536/51585/140890/25949/6625/10181/83989/4857
## GO:0000398 55110/6627/10212/4904/6634/5435/6631/10907/6632/54496/4116/11168/22827/6636/57819/5440/6732/6637/6626/25804/11051/23450/1994/23028/6628/79833/6427/9775/10713/5433/10492/1477/23210/6629/28960/26986/11157/11171/79084/55660/988/51690/9588/10450/10656/4809/4686/8896/6936/5437/6633/10465/708/22913/9785/7307/27336/6428/9967/6434/5439/3185/5546/10992/79753/11189/3181/4858/51634/51319/5431/83443/96764/10285/51729/6635/4654/64783/81608/5436/1479/5725/1478/27258/80004/1660/9410/10523/55234/56259/54957/5093/10898/65109/10978/29890/55954/8487/54883/22916/79622/11338/10419/6426/1207/23658/10921/1665/10772/50628/10073/6429/5978/10250/7737/3189/9128/27339/10084/5438/5432/10946/25862/9092/10236/10286/51362/2332/11100/1653/3183/5936/10657/8449/26121/27238/9733/2521/10914/6432/51691/9416/57794/1859/3192/79171/8996/2963/10291/3184/51593/79869/22794/9589/24148/22938/10262/79760/9129/4928/22826/84991/58155/1993/23543/11017/6733/58509/1655/10594/5434/6421/51428/3187/8241/23350/60625/10659/9169/23451/5411/51341/8621/3191/10658/23064/8175/56949/11325/6433/23020/58517/10949/3178/10421/1659/24144/6651/55094/8899/91746/5094/23283/8189/8233/5430/6431/202559/4236/79066/22889/7375/54960/55596/23517/9295/9879/23524/9939/23398/3550/4670/7072/5441/220988/11066/56339/11193/10284/29896/51340/10521/6430/2962/9716/55696/8106/7536/51585/140890/25949/6625/10181/83989/4857
## GO:0043484 54845/55544/4116/6732/51755/9991/23076/8882/23210/55796/9588/10656/4686/708/10922/6428/2081/9967/6434/3185/11189/3181/1198/4654/64783/5725/80004/55234/29890/11338/10921/10772/6429/5978/27339/10084/2332/5936/10657/2521/6432/1859/3192/79171/9589/22938/2334/4928/58155/23543/6733/1655/3187/7009/8241/51341/3191/10658/23064/22927/6433/58517/4154/3178/6231/6651/8227/91746/10150/5430/6431/202559/79066/9939/7072/1196/10284/10521/6430/5295/55696/676/79026/140890/6625/10181/57396/83989/1195
## GO:0033045 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/2237/699/1063/26271/5885/54908/8260/1663/7517/25906/8379/23137/84861/7756/4342/55795/56984/10664/7175/996/9555/3192/6421/51451/51143/55719/23063/55755/55781/8697/472/56155/8658/546/3550/5925/1499/8452/1843/324/8678/4926
## GO:1902476 2568/57348/1364/22802/1184/7439/9022/1080/1183/2554/54831/2742/1179/6507/8542/1180/9629/2569/2562/26285/6521/2561/8001/25932/1192/2570/1181/1188/65010/10861/2566/2563/9635/1193/846/5349/57030/23155/2741/1836/1182/55879/51449/2560/53405/57101/1186/2555/6509/65012/1185/5172/55107/1811/6505/5348/2743
## GO:0045071 3669/6355/9636/6352/4599/200315/91543/6590/4938/4940/8638/5359/3434/6732/8815/7124/22880/5629/60489/27350/5610/8091/3428/200316/684/80149/10155/3609/56829/9869/6733/8812/9218/55337/24138/55196/10318/51763/8519/3456/5071/54737/57506/4057/63901/23272/10410/6041/10581
## GO:0070059 4102/79094/1051/30001/578/10525/4690/468/7186/8440/9131/2907/5771/10018/5366/5371/1649/57761/8795/54431/581/5770/7917/3093/3651/837/9451/23645/10961/4217/10488/11315/487/9709/317/4976/7009/10955/598/23411/5071/54546/7157/90993/7466/9024/596/7494/3708
## GO:1901616 3613/51302/1594/57016/6783/219/1312/54363/221/131/27284/4504/8898/2820/1056/79644/1593/6531/2710/949/6822/1591/6718/4051/9784/9108/3612/8578/8867/4923/8074/5728/56623/6652/1579/51763/217/10858/222/6799/2712/8644/1621/6817/1581/1735/4128/66002/4129
## GO:0002830 3620/91543/942/6375/3569/64127/3606/7292/972/975/114548/3566/5914/5590/90865/2625
## GO:0010875 348/4792/5360/5444/10062/5727/26154/335/19/7376/10347/9619/23411/2874/4035/9370
## GO:0010919 5341/3973/5449/5031/5724/117/51744/4142/2185/5028/4923/3269/2852/5741/6622/5745
## GO:0019372 239/246/5743/5444/242/2876/241/50487/59344/2879/5446/5445/240/3248/247/4056
## GO:0022616 9837/51659/2237/5984/84296/64785/1763/5983/4683/64858/4361/7015/5422/64710/25913/10111
## GO:0030214 3161/8372/57214/11261/7040/960/10894/3074/8692/2990/23670/55576/6548/3373/3073/2247
## GO:0031958 5536/811/10432/7533/55885/5245/3717/23054/9575/406/5187/8289/1407/2908/4734/1408
## GO:0034116 3932/246/7124/655/2651/2243/2266/3586/3553/177/960/2244/7070/10211/8631/4680
## GO:0042448 133/6715/10948/1645/1646/10170/10891/1586/1609/3972/6777/10858/1958/8644/2488/174
## GO:0044849 4316/5111/4192/2113/4988/2796/3037/23394/9612/3036/4987/4986/8648/1958/5021/5764
## GO:0051482 1812/23566/3814/7052/2769/719/796/2911/3358/80045/1906/4987/1901/2149/1902/185
## GO:0071732 890/7186/9131/4504/1785/1017/8837/3747/3184/1398/2983/1800/4548/4314/2308/358
## GO:0071871 6770/6715/6262/5142/55328/5313/5566/10891/5144/22933/493/5179/6622/3784/6548/9370
## GO:0097067 2730/1520/1514/5469/1512/1508/5962/10634/6495/10891/2623/2693/3815/2729/687/4005
## GO:1903541 3458/8027/27183/11267/6386/7879/9146/9525/7251/10015/23400/6382/55512/5071/6385/27243
## GO:2001170 54541/57103/142/5465/5207/51548/10891/89/6774/55022/863/4656/26471/9759/201163/2203
## GO:0034644 55872/9212/1111/993/4609/5111/8372/92815/578/5424/2072/5603/142/23028/468/5743/1642/54929/4869/10856/5481/1026/26155/1965/400410/581/9683/4193/79913/2332/5796/51499/2033/11277/4157/545/7528/6872/8450/8692/842/55031/5429/22890/23411/56339/1643/7157/4776/5295/6794/1387/3373/7508/55364/4734/4311/358/5764/1396/138162/4239
## GO:0051851 820/6355/6352/6351/3429/1991/2597/5479/5806/23076/5702/348/6882/9367/6441/8091/6597/904/9126/6372/5340/80149/3065/1072/325/7023/566/2959/51176/5978/51193/2332/6598/9150/22938/2147/2033/64710/5091/383/302/23435/5196/8812/3725/9218/858/51763/25833/64848/2040/6667/11334/2150/1105/5071/4057/4153/1511/358/25827/3249
## GO:0072088 6772/4609/6943/2297/2253/2138/7422/7490/9500/10736/55083/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/3976/56998/6662/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/4435/6299/596/7482/5311/26249/2246/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:0006363 5435/10849/5440/5437/9533/64425/221830/2968/9014/10269/2071/7343/5434/7270/79101/9013/4331/2965/9015/6908/1022/404672/902/2967/5441/2068/84172/284119
## GO:0007099 10733/6491/284403/23636/672/55835/55722/79959/10432/4869/1017/1069/4591/9662/9525/26005/152185/22995/55755/8850/2648/56890/27243/80254/9738/9851/85459/10769
## GO:0030431 10874/6770/6715/3737/100/1737/2692/1814/1141/134/3606/1813/5730/5020/8911/4544/1437/2903/135/3356/1392/5729/4887/8863/5021/2353/2691/1471
## GO:0030513 6664/8200/63893/2297/2626/53918/4851/3516/23213/2658/4089/4087/23770/3491/659/4756/2022/79176/2719/3280/3611/94/57045/4926/4488/4487/23090/652
## GO:0051204 3002/1869/2810/637/7027/7534/7159/10018/5366/10971/7533/5534/7029/581/79568/7529/841/5599/7531/572/7161/23368/5533/4836/8626/7157/596/64112
## GO:0051385 8061/6770/1535/3351/15/142/5901/1536/9131/6714/1026/552/3845/1906/2852/6155/4916/2309/7200/1392/2354/7054/490/1490/595/2353/4747/4129
## GO:1901019 5336/5031/3208/6262/4644/5142/2280/6769/1394/4878/255057/375346/9446/8291/6786/1813/4842/9472/6271/9001/5566/1756/781/2332/784/785/2631/859/2859/57158/7341/1193/5144/6236/28954/7531/57338/3064/10345/4987/8398/63892/1815/287/9722/9992/9104/783/30845/6588/10681/845/6548/2669/844/79026/5311/2259/3270/6717/481/2281/3306/2946/477/5350/150
## GO:0032722 8767/136/3574/3162/2867/3929/3965/4282/7124/3569/7097/3091/5610/3570/6868/199/566/972/7099/3553/22954/59341/177/4155/1436/351/1654/148022/3566/116/27159/51284/7291/7098/9173/29108/57506/1958/7474/727/4023/90865/4035/10631/247/9370
## GO:0043255 5341/3973/5449/5031/5499/2641/57001/5724/1950/1642/5771/3607/117/2932/51744/8445/208/5500/4142/2185/57223/10447/2475/2645/5155/5465/1213/5028/10891/23178/3630/3037/207/60343/7040/2033/2931/4923/5509/3269/2852/4790/10776/1609/10296/140710/2103/5903/5741/8850/51763/2648/283871/8473/55512/23411/6622/1407/1196/8660/5164/5745/3643/2308/3953/10580/3952/2203/5167/4485/3667/3479/114899/9370
## GO:0032613 55765/3620/9636/80380/10859/959/27242/3329/2207/6375/940/3965/9308/7097/2213/7305/54440/3593/64127/3662/7292/8288/7099/3718/3146/177/602/353514/50943/28951/961/51561/5580/11334/4317/29108/2150/3082/5590/947/4179/54209/10464
## GO:0032781 23397/483/5359/23234/6262/3301/5216/10294/10049/1785/10598/496/54431/5217/229/2968/1660/3337/4635/4634/26097/3192/29103/7341/846/64215/7114/4607/8775/11345/3300/5864/11080/9104/26092/163590/7139/120526/482/7168/6419/481/3306
## GO:0072384 9493/7345/80128/3091/10125/22820/3797/8936/6845/5870/4133/3799/10128/25777/1780/55201/5861/6683/9001/998/547/8943/8409/10749/3798/3916/7314/23224/1176/23299/22920/23095/4976/2647/5048/8120/3064/5195/23353/636/11127/1201/55288/8546/89941/10947/9638/9371/4131/63971/5590/66008/55686/4747/4744/79443/55638/4137/25893
## GO:0001893 1515/639/1594/6696/5467/5743/5594/10959/1508/26528/682/4221/6256/23641/7421/4838/207/3726/5740/55870/10935/2693/6781/659/3976/7026/5595/2057/5764/2697/8614
## GO:0003203 2253/655/6091/4193/4851/6615/653/3516/7046/657/4089/26508/650/7291/4846/3670/6909/6662/2022/90/23493/94/4194/23462/7042/7048/8642/6591/55273/4488/4487
## GO:0007528 8326/8997/1134/4898/55906/1399/10939/4593/1282/2119/9093/6495/22953/10369/2064/351/2339/1855/375790/288/11079/4038/1639/3371/7402/2149/5764/8292/3913/1287/9254
## GO:0021587 9928/6712/64211/23287/1020/5604/5629/3975/3309/2895/6608/5781/8861/7476/869/7471/1600/5270/8443/23017/2736/4983/25/7515/8925/6095/538/25861/79934/22891/2735
## GO:0035137 5307/8200/2253/7473/257/5469/55636/2778/60529/5915/5727/23322/7476/3236/657/3235/2249/7291/5916/2719/8626/1499/6469/4488/3899/116039/7704/4487/6926/652/7021
## GO:0048246 6352/56833/6347/26228/3735/1652/4282/51192/1240/6376/79902/4192/728/1588/6441/719/1432/79647/2185/566/59341/2660/1435/3958/1910/7057/5595/5919/1907/727/79148
## GO:0071312 890/5888/641/6770/114/3351/779/3383/1644/55151/6262/6261/836/199/4988/4193/6569/9400/23514/10891/10533/6263/840/598/1392/7054/6546/839/845/1393/2946
## GO:1901998 22948/10576/664/7203/10574/10575/8934/54545/9276/3309/10786/9364/6581/3274/26088/23256/10694/4040/9325/4041/10693/4225/1759/9619/55192/22818/535/10966/8289/8829/23428
## GO:0002204 9156/7037/959/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/3558/55183/7292/3586/9025/22976/3565/23529/7040/50943/8741/3981/54537/4292/9984/10538/57379/6830/7158/2067/23075/6778/604/1235/10039
## GO:0002208 9156/7037/959/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/3558/55183/7292/3586/9025/22976/3565/23529/7040/50943/8741/3981/54537/4292/9984/10538/57379/6830/7158/2067/23075/6778/604/1235/10039
## GO:0007091 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/996/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0008542 65009/2515/1812/1020/3091/23657/885/1814/1141/1813/3274/8704/2902/54413/2475/5153/3845/27023/3156/3688/3269/351/2903/1497/27020/90410/3815/1385/4204/5896/8554/10636/60626/4763/23259/10522/1621/4212/11346/477
## GO:0009066 26227/445/440/80150/23464/6611/4507/4522/58478/10247/10993/2805/8985/51268/5351/5352/4143/51074/4552/1738/2806/56954/4524/1743/501/4967/55256/1428/159/54529/2639/635/89874/441024/4548/4482/27232/443/23743/10157
## GO:0010965 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/996/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0035722 4001/3595/6627/5898/3458/5721/4507/3936/6888/4282/4478/5034/3593/3592/9446/759/3185/9049/6775/3181/829/5478/1072/3586/6647/3313/5062/5055/998/6175/5306/3717/5908/302/1265/9987/3594/3716/7297/23236
## GO:0045190 9156/7037/959/4436/79915/3329/7468/2956/5788/9466/30009/7374/940/4683/958/3558/55183/7292/3586/9025/22976/3565/23529/7040/50943/8741/3981/54537/4292/9984/10538/57379/6830/7158/2067/23075/6778/604/1235/10039
## GO:0030501 9636/8326/2824/7480/5027/655/93/654/2201/51374/7040/4745/657/92/3491/650/5741/659/6546/7020/90/154/4088/490/4057/84059/4208/9365/5764/116039/658/54361/7043/652
## GO:0038179 54541/11151/6654/4914/836/8936/6714/2885/10479/5781/9001/5526/2889/55816/23191/5894/5906/186/6272/183/10818/57498/4916/9693/627/10253/4804/26999/4692/4803/10252/4908/4915/9863
## GO:0045823 10874/59272/133/2643/1482/6870/100/6262/1908/153/4878/5997/522/1113/552/488/476/148/5144/5999/2931/1906/9722/3784/23493/7168/1490/7042/3270/1907/54795/55800/7349/6505
## GO:0009409 3627/133/2766/51316/3329/5024/8989/27344/26027/4792/153/3320/8531/7067/7425/5611/841/1006/10891/9451/80196/79054/7200/4779/5562/154/490/37/6548/65084/2308/2353/5468/55198/3306/4023/9658
## GO:0042771 54541/79915/11200/23028/4282/675/5371/3428/80237/8445/1026/64782/972/7917/29965/28996/3622/51499/602/22938/2033/960/204851/7161/64844/10210/6880/26471/23411/29108/8626/23612/7157/51065/51616/596/4582
## GO:0045103 3868/5317/3857/10049/3267/23336/9118/10763/3850/6647/1674/4534/4287/3849/81565/667/54800/5318/5894/83481/1861/54474/7431/51542/8419/1452/2670/1832/51761/55914/3875/4747/4744/6469/3861/4741/81493
## GO:1901028 3002/8326/1869/2810/578/292/10449/637/7027/7534/7159/5366/2932/10971/7533/5534/7029/581/7529/841/5599/54978/28978/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/8626/7157/7755/596
## GO:1902373 5317/1869/4904/1994/10492/26986/9704/11044/1432/6556/4615/9967/8531/9261/1660/339/11187/2668/2475/23367/54855/2332/3183/10605/3192/3184/23435/25819/51594/8241/7538/7432/10949/90806/10140/79048/1153
## GO:0035304 26472/221692/28227/9258/11314/10288/5788/945/7124/284352/3071/2280/5610/2932/22853/151987/57718/78986/7184/3326/5521/51400/134/5514/80316/58529/5511/1813/11123/5725/6418/5523/10842/1827/3486/261726/5529/7529/2475/5526/23141/5528/51231/5518/5527/55844/51657/23645/55291/22870/3717/7040/5519/54866/26051/5504/186/5524/8725/4249/65979/7531/10776/23523/26012/5525/6093/5520/9749/8036/9475/3064/5510/3958/2771/5300/9989/4659/26229/8189/6295/2029/10395/65018/5580/3672/6609/9104/1760/23075/3476/10231/9858/7248/2281/5502/9891/5764/5159/3551/9863/23261/5507/1408
## GO:0003171 6659/2626/4193/6910/4091/4851/657/4089/26508/3491/10439/650/659/7291/90/2702/23493/1942/6586/4194/23462/7042/7048/8642
## GO:0006700 133/6770/706/2230/231/10948/654/5978/1585/1181/10891/1583/653/1609/3972/1584/650/8912/9256/1958/2488/27122/2232/54361
## GO:0006779 706/2395/3145/211/10058/402055/3658/7390/212/1352/200205/1371/2235/93974/4891/1355/54977/6708/7389/8803/4779/55316/5498/210
## GO:0007205 8525/3351/1608/3558/885/56288/566/1606/1607/9463/23683/160851/3060/1906/135/2596/1154/8526/2149/9162/8527/8611/4035/3357
## GO:0007263 4502/7422/348/1956/6690/2357/3651/3747/3630/4760/186/493/183/2983/9722/23576/2982/2977/7057/23564/8654/79625/948/4887
## GO:0009154 11332/215/3251/5142/272/27115/5151/5152/5143/53343/3704/5144/3094/283927/4907/10846/38/23417/5141/8654/79873/8622/5136/5138
## GO:0022011 57211/10397/79152/56288/208/5453/6647/207/22933/3084/6497/64398/5454/1605/4916/53616/3611/8506/79628/4763/23405/9639/4653/4915
## GO:0032292 57211/10397/79152/56288/208/5453/6647/207/22933/3084/6497/64398/5454/1605/4916/53616/3611/8506/79628/4763/23405/9639/4653/4915
## GO:0032967 3066/3549/409/8710/265/5345/51430/2147/7040/55323/7431/3673/2022/28984/4602/90993/2149/1490/5159/57332/54361/7043/7349/652
## GO:0034114 3932/246/7124/655/2651/2243/2266/3586/3553/335/177/65125/960/2244/9314/4155/5598/3557/5607/7070/10211/8631/4680/9370
## GO:0039528 330/64135/7353/23586/79132/63906/6397/708/89870/26057/55666/3665/55601/329/3661/26065/9698/8780/7105/79671/23369/26007/54941/29997
## GO:0050820 10855/5341/5054/5345/2161/5340/7099/1361/7001/2147/4780/10630/5663/2039/6915/7057/350/2155/22875/2149/948/6403/7056/2152
## GO:0060142 3627/4283/963/575/10938/7305/1432/4654/8837/8740/8754/9518/8536/2323/81501/3566/824/9750/4656/8521/10211/54209/10411/30846
## GO:0060706 79733/10733/639/2709/430/6789/6768/4188/9021/10049/9421/79977/6788/7855/10653/841/59343/6615/207/3856/3976/8521/7026/3880
## GO:0061437 6943/8710/7490/655/3570/8837/2303/5155/4854/284/5156/285/59/2828/3280/5175/7010/1958/947/5311/8829/5159/80310/652
## GO:0061440 6943/8710/7490/655/3570/8837/2303/5155/4854/284/5156/285/59/2828/3280/5175/7010/1958/947/5311/8829/5159/80310/652
## GO:0070168 1230/5552/3091/2185/4851/26585/7040/197/2623/8074/6093/9475/5741/4846/1893/54880/6662/23493/6779/23462/54795/2621/5167/54829
## GO:0070911 2072/142/9978/1642/9557/2968/7311/1069/8451/6233/7316/7314/2071/8450/2965/5887/404672/2967/54778/2067/2068/1643/7508/7507
## GO:0072202 6772/6943/10736/5455/6608/2668/5155/10413/26585/7849/55366/25937/3976/7827/5076/1499/4435/6299/947/79633/54361/3913/9370/652
## GO:1902175 8876/142/3091/5034/10131/4841/2876/27035/6647/55294/4170/3630/8996/207/4780/11315/6421/27429/5598/9529/65018/23411/5071/3315
## GO:1903203 142/468/8013/3091/23657/10333/4841/57707/25793/3586/7099/55294/5978/4170/7471/10533/11315/55074/65018/5071/10314/8321/1499/7248
## GO:1904353 4751/9212/2072/5588/4683/5594/8550/79035/7014/3184/5609/51750/7874/7515/80351/11284/23293/140609/472/8658/10111/2067/5595/4216
## GO:0090130 3868/10563/6286/4318/51378/154754/55612/9982/5646/23603/2821/3458/5613/3162/6273/5641/2253/58/3689/239/575/7422/5467/5801/5743/5629/348/3091/506/5216/23616/6862/10755/958/11171/411/1460/9734/5578/79977/811/5606/1512/1839/382/5747/7101/6714/6091/3164/2896/11156/84830/5217/8828/154796/6868/57175/10371/2876/949/80149/2113/6722/2196/51094/2185/11221/5335/4627/80005/1948/5781/2303/55294/5829/3146/22976/4851/3565/55466/2050/2475/1545/7476/335/5155/11235/8766/7429/3640/498/3273/3849/8754/27302/6869/8503/54566/26585/3037/14/5587/56999/284/1969/5290/7046/207/7040/634/4233/5581/9314/4780/3688/7114/186/301/83481/29775/6239/64218/1803/5585/1906/8823/23332/2658/5586/56413/6672/4163/2249/57142/10982/27286/183/2822/3725/5728/285/25865/889/9475/54345/10013/387/3728/2624/9448/6781/3815/3690/10000/659/25/2294/23473/10519/3673/9839/2324/5170/57111/4215/9270/4846/4204/6915/5872/2260/6662/7857/5607/70/59/57669/6667/5168/23129/9647/23411/64081/4070/7026/5286/10014/7057/54828/23499/23189/350/23328/3315/72/5175/4763/7424/25959/2013/1960/2252/22846/4017/7010/2752/28984/94/9922/3373/306/3791/51564/375056/7474/6776/1942/5025/3964/3675/25960/1235/5797/2246/10016/7042/1793/23122/3397/4208/9353/8829/7048/5176/2247/5468/1012/57608/5793/9037/79812/10769/4856/2191/51157/5764/388/8817/6678/90627/4223/6863/51466/1634/652/2625
## GO:1903312 5317/1869/4904/1994/10492/580/26986/9704/11044/904/708/1432/6556/4615/9967/3181/8531/9261/5725/1660/339/11187/11338/10921/10772/2668/6429/2475/23367/54855/2332/3183/10605/6432/1859/3192/79171/3184/6829/23435/25819/51594/8241/7538/7432/6433/10949/9646/6431/1025/90806/10140/10284/79048/9810/1153
## GO:0098661 2568/57348/1364/22802/1184/2542/7439/9022/1080/54020/5724/1183/2554/1468/54831/2742/1179/6507/8542/1180/9629/2569/2562/26285/6521/5621/2561/8001/25932/1192/2570/6569/2475/1181/1188/65010/10861/2566/6568/2563/9635/1193/846/5349/26266/57030/23155/2741/11095/1836/1182/55879/51449/2560/53405/9016/57101/1186/2555/6509/65012/6561/2915/1185/56172/5172/55107/1811/6505/5348/2743
## GO:0006293 2072/142/9978/6119/1642/9557/6117/2968/6118/8451/2071/8450/2965/2073/404672/2967/2067/2068/1643/7507
## GO:0006295 2072/142/9978/6119/1642/9557/6117/2968/6118/8451/2071/8450/2965/2073/404672/2967/2067/2068/1643/7507
## GO:0007026 26586/10300/4281/79929/58526/9181/23332/10013/10519/2258/50810/146057/4131/25876/324/23122/11075/89795/89927/57551
## GO:0015813 10165/23657/79751/23204/55238/6507/57084/6512/6511/3766/57030/4923/5663/6506/11230/10550/8604/8864/477/6505
## GO:0019228 3737/1812/5024/1134/2257/2332/79784/2859/27094/4544/2898/2852/5023/27345/288/54112/10242/3736/5025/3751
## GO:0032469 79734/578/2907/5910/7052/5371/10134/581/488/487/9709/351/7009/5663/54499/63892/51024/7466/596/3708
## GO:0035162 7422/6789/3091/5469/8563/6788/3562/10019/6886/2623/2323/2624/3815/4297/5087/3791/7173/7048/4254/2625
## GO:0042438 1001/4948/1652/4644/23657/10755/7299/434/1638/4157/6490/1497/7306/9839/9693/26060/51151/4435/7474/7220
## GO:0043090 6510/23657/6520/23204/6507/5997/6511/3766/5999/57030/4923/6529/183/5663/6506/9152/10550/8864/477/6505
## GO:0046827 51512/2810/10541/2932/64328/2010/3553/4193/5566/7175/8536/7531/5494/9531/55781/6934/7157/55696/10411/2621
## GO:0048485 6664/2676/6659/401/4914/8828/10371/2668/3642/7976/429/9464/6405/8626/8929/4763/1499/8829/2625/7021
## GO:0060396 4067/5747/2688/1442/5770/5617/3718/5829/9518/3717/55777/2689/6774/6777/54741/5295/6776/8835/5618/2690
## GO:0060479 55151/4781/3596/79977/7965/2302/2627/10413/3516/7080/1385/429/60485/6662/1499/10365/3202/25803/3169/10551
## GO:0071379 5031/6422/5732/7292/1646/2782/5030/207/5581/10270/112/338/31/5562/5729/5563/3371/8644/5737/5468
## GO:0042093 8767/942/1880/30009/4063/3569/5971/54542/3593/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/6774/3566/4092/3594/149041/51561/6095/10538/538/9655/6778/5914/4602/604/5590/6097/2625
## GO:0051057 4067/9289/10125/6654/5923/117/4914/6714/6091/2885/1399/2056/7409/3707/6993/4851/3265/335/3845/2889/5879/50937/1435/3717/3084/79933/11214/10982/4853/8036/6655/9448/6464/5649/2150/26053/8859/408/8660/2149/9162/4803/1902/2057/1281/4254/5159/3479
## GO:0046916 6280/6279/7037/3934/3932/4609/1356/3162/4502/9997/57817/2395/3091/4504/10058/8454/7036/9114/6556/54583/2512/7018/4738/55832/23545/5621/3658/6647/7782/212/654/523/23516/8943/3163/537/9550/2658/4089/351/7781/23400/2495/64924/48/4891/28952/10463/8031/4682/3077/538/9843/6500/4057/51310/7779/80762/540/26234/6717/164656/3263/25800/9429/79901
## GO:1905897 4102/578/10525/7873/4690/8440/2213/10987/55741/2907/5771/10018/5366/10134/8975/1649/3309/2081/55432/581/51009/5770/9097/7917/5611/3651/51035/22926/1388/4287/29761/9451/23645/10961/51465/10488/4189/4780/11315/55161/7327/51283/9709/4976/11153/29978/7009/51136/10869/10956/10955/6449/26471/9695/598/23411/4779/5071/5295/90993/7466/9024/7494/857/1191/10551
## GO:0006338 55355/79019/55839/1111/79682/3159/2491/11339/3070/11240/1058/4609/81611/1029/3066/8607/23198/4678/54069/86/22880/11335/55166/11177/55320/79172/55636/9557/8091/83444/6597/7150/9031/9757/201254/5757/5058/4869/10856/5931/6599/5928/9219/5081/51412/10629/6944/3065/8467/26038/22955/6603/9025/60/79723/9271/1108/7175/64431/3183/51548/6602/1616/55011/6827/23347/6598/80152/8932/50943/11176/6605/23569/57680/93973/23421/22893/3020/7141/53615/7142/6604/51773/51341/473/1060/6304/8850/2648/7403/23135/55193/6662/22890/6830/6595/546/10014/8626/1105/8289/5925/6601/9759/1107/1499/23314/2186/57082/4602/2145/676/29994/2099/6594/3169/2625
## GO:0006813 23630/81831/3755/3768/3775/8645/51083/3757/3737/1812/3753/3783/483/274/8514/3738/55151/468/3776/26251/3786/23415/10021/1908/3777/610/88/3756/8811/1785/3739/4878/30820/1017/3741/134/6507/9033/3792/3761/1813/4842/3799/5621/2185/3745/10089/3780/9472/3748/3763/3787/9943/3762/3785/3746/150160/2645/4905/9312/3747/6616/3744/54800/1739/478/476/859/3766/2316/11261/9196/7341/5349/27094/4544/3759/5999/486/3773/3060/11060/9525/967/9107/3754/7531/3779/1804/30819/116/5728/10060/9132/3758/27345/3749/288/3769/4986/4846/27012/3764/287/3781/9722/3356/9992/3760/3772/10242/25769/3784/7881/2702/51719/845/1027/3736/27347/482/54209/57419/10142/7248/6844/5311/4734/3790/3752/481/358/3751/3778/477/2273/23327/6833/857/3249/150/5348/776
## GO:0006909 8685/28823/28424/6347/64581/3537/3561/3055/917/51411/919/4651/28778/4067/23603/1535/336/5336/11151/4688/5031/11314/8547/26228/8877/3514/1794/3689/5788/2207/575/3394/5806/3600/4647/2219/3929/4689/1445/929/6504/3601/4690/6850/246/10095/9474/7124/5027/9938/7097/10096/613/7454/23210/2213/1053/5795/23616/3071/7305/7525/5594/7052/4240/1089/57118/5582/3984/140885/1785/6441/3560/811/10552/3326/10097/6556/3500/5747/5058/6714/10006/10092/4615/8291/2885/2212/725/2358/7087/134/6845/3385/3949/10109/949/3320/3683/10062/10094/199/5291/4481/7410/5657/8394/7275/5335/566/9777/7409/10093/4627/5873/6647/7099/63916/9844/8976/2534/3553/7456/7301/60/3146/998/9711/64422/7287/335/8724/2220/2889/7879/27102/5879/23208/10461/3684/55647/10787/722/23191/5296/5290/19/7040/11277/5581/56882/1401/197/3688/5906/301/961/71/55113/5868/10458/135/10960/79767/10163/718/5728/1398/2624/147179/3690/8398/25/717/3673/5338/10347/51517/5580/2268/4641/11334/29108/7057/2150/311/26060/5175/5595/94134/2209/5295/23396/5914/29/4153/306/22918/22841/558/3685/948/54209/51454/8678/26999/1793/2934/3953/5468/8406/55198/11031/80208/3952/2621/4035/81035/10451/9370
## GO:0010823 8326/57103/292/10449/664/706/10059/409/10105/2395/551/5716/2876/51025/3980/9530/3998/54978/10891/51499/28978/8996/10193/10533/207/4000/27429/4976/79594/25994/9531/23274/10493/7249/598/65018/5071/3375/23409/7157/3082/201163/1191/3479/4137
## GO:0046173 3613/2643/5341/3973/1719/5449/5031/1594/8877/2805/5724/117/51744/54928/1593/5805/231/120227/4142/2185/3707/5028/3706/10558/3612/80271/9517/4923/3269/2852/51477/5092/5741/283871/6697/1576/6622/56848/9807/51447/5745/427/2247/3952/5105
## GO:1904645 4321/4318/7412/5641/3383/1020/142/2213/10018/2932/10333/10135/774/2358/2043/773/5621/3676/7099/2534/781/837/177/58533/478/351/5663/782/799/1759/599/2309/154/10268/23621/2915/948/54209/4804/4314/4322/4313/3480/4035/3479
## GO:0032635 55765/5004/51311/8767/1051/136/1535/64135/3329/10288/7096/9466/2207/8807/23586/3929/409/5603/7128/3965/1445/671/5047/26191/6504/7124/29949/5027/3569/7097/64170/3071/8808/3556/6376/7305/5724/55024/3570/140885/10333/9971/64127/4615/2069/3635/84818/80149/3606/9261/199/7292/1660/3586/7099/3553/5781/3146/2302/5777/59341/4843/23208/177/3605/9181/353514/8915/50943/4155/27202/7189/961/55870/351/148022/6774/116/824/2693/8692/7291/79671/3670/11027/7098/64343/10392/26525/4317/29108/9655/2150/4345/56848/57506/408/10365/3082/7474/2149/948/54209/4023/90865/3952/7494/2621/11213/26137/7349/114899
## GO:0007034 274/7415/164/3920/411/55737/4074/55681/2896/6845/10042/5660/27183/9179/64089/51510/4534/25978/7879/57154/3916/9146/22898/65082/1045/51172/51361/6272/9525/7251/738/91782/64400/4864/55850/29082/2580/9392/63894/79158/950/55297/27072/81609/55823/51542/8031/79643/64601/23295/8546/6293/1130/55275/80700/65018/51332/30845/5071/51520/154/56112/23339/9648/138050/63971/9482/51479/29911/80762/66008/22863/4734/9765/6653/22906/388/4035/1191/9737
## GO:0001569 2253/3549/7422/6789/4192/2637/64783/6722/2303/1282/63943/51548/1906/2658/10672/25/2022/4855/23129/90/1499/4776/8829/7048/6469/1909/9723
## GO:0006362 5435/10849/5440/5457/5437/9533/64425/221830/2968/9014/2074/2071/7343/5434/79101/9013/4331/2965/9015/6908/1022/404672/902/2967/5441/2068/84172
## GO:0007094 991/10403/4085/81620/7272/9212/9319/891/5347/1063/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0031572 983/1111/51514/5347/29980/641/4683/63967/672/8091/60561/29086/79184/51343/9577/8555/51347/51720/472/1112/9344/4303/80279/29997/25949/57551/51149
## GO:0031577 991/10403/4085/81620/7272/9212/9319/891/5347/1063/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0032728 51311/8767/3148/64135/3659/23586/7097/10622/3663/661/1660/3665/10621/7099/5781/55703/3661/10623/1654/29110/148022/8780/51284/7098/10211/57506/26137
## GO:0046596 8547/5806/2219/3965/5034/920/7726/325/7706/972/11074/8724/3956/85363/6737/10107/10475/7113/3440/8519/11043/55223/5819/10410/2934/81603/10581
## GO:0071173 991/10403/4085/81620/7272/9212/9319/891/5347/1063/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0071174 991/10403/4085/81620/7272/9212/9319/891/5347/1063/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/472/56155/3550/1843/324
## GO:0090659 7345/1812/7545/409/2395/55636/2043/2636/5660/1813/6323/28996/51286/10269/3766/1600/2741/1949/27429/4864/1497/6900/55074/7200/57731/80208/2743
## GO:1902895 3091/688/7490/6597/6721/6688/5970/6722/3586/5617/4091/5155/7015/7040/657/6774/3725/650/2624/7003/4086/7157/2908/4088/4804/7042/2353
## GO:0071901 5347/7345/6317/1029/4067/2950/11314/2810/1031/1852/7128/26191/1030/23636/348/3301/54900/5795/26973/655/1032/152559/6422/1849/63904/5575/836/1050/11072/1026/25793/5997/2873/11221/7023/4221/11329/5770/3553/55924/51654/3843/9113/5777/9555/7016/10114/5518/10527/171392/4040/859/65125/1845/207/3156/5999/10019/5998/4041/64853/51562/5728/5515/8692/25/10519/5576/23624/8850/51763/5573/1850/10636/54922/5569/5580/51422/23411/7026/6609/29108/200734/2874/3315/5925/4763/1027/1028/1843/324/80279/3087/57493/1848/10614/5577/6653/11213/857/1846/9370/652
## GO:0043666 26472/221692/28227/11314/5788/945/7124/284352/3071/2280/5610/2932/22853/151987/57718/7184/3326/5521/51400/5514/80316/58529/5511/1813/11123/6418/5523/10842/1827/3486/261726/5529/2475/5526/23141/5528/51231/5518/5527/55844/51657/23645/55291/22870/3717/5519/54866/26051/5504/186/5524/8725/4249/65979/10776/23523/5525/6093/5520/9749/8036/9475/3064/5510/3958/2771/9989/4659/26229/6295/2029/3672/9104/1760/3476/10231/9858/7248/2281/5502/9891/5764/5159/3551/9863/5507/1408
## GO:0002028 81831/1482/483/5027/2257/1785/1814/7533/2745/1813/4842/3799/6327/6331/1756/9368/54800/1739/476/859/11261/65125/5318/207/7040/5581/51297/5270/81/6324/493/6640/5774/288/1815/4846/10768/2040/5187/6546/154/1760/6548/27347/54997/7402/29098/482/5025/4734/57731/481/1272/477/23327/23171/55800/5348
## GO:0002532 7850/3620/56833/4067/10225/2207/923/3735/3929/215/4210/6850/5054/63940/140885/113/10333/81929/27190/4878/1432/64127/4615/2896/6223/695/84818/6845/80149/11221/7099/23633/4843/8723/7001/3630/8673/3605/2147/79004/23765/8314/148022/5023/3566/27159/240/5187/29108/26060/225/948/8773/55198/3952/90355/6542/347
## GO:0006081 5226/7086/57103/3418/7167/2539/5223/8566/6888/221/22934/3417/51071/3795/10327/229/5970/9380/189/2806/218/654/5978/2739/1585/1181/1545/1645/8659/501/25796/64577/653/51109/53630/3029/11315/55818/55163/1584/650/8574/8912/58510/23729/8854/220/223/9563/26007/224/2098/8644/27122/22977/64080/216/54361
## GO:2001021 55010/26271/79915/637/11200/2072/79000/23028/4282/10721/3297/57805/8091/5716/1032/80237/55611/8444/54929/8563/5514/55183/972/4193/7014/9400/6615/22954/3622/64110/51499/1859/23347/754/960/6188/51750/9320/4968/54537/64844/7178/7515/51366/7291/9984/24144/56893/6880/55031/55702/598/23411/7158/2067/51616/596/55086/6591/57007/6387/1191/4582
## GO:0007602 58473/6247/5146/24/2792/9600/2780/23596/23173/23746/1259/40/9397/5145/2986/2779/79823/6011/5148/7222/2782/51109/5957/10002/2979/10988/2767/6010/2339/1040/1258/2978/5132/6295/4836/5475/3000/2776/5158/408/9094/2868
## GO:0010718 2146/6317/2296/8092/3066/3569/4192/655/2651/25805/3553/7074/4851/51176/2475/6386/6615/7046/7040/10630/4089/4087/10439/650/25937/7291/3670/2022/6934/90/1499/1601/4088/4017/28984/182/7042/7048/1277/7041/7043/652
## GO:0060425 6664/6943/2253/4781/5604/7124/8985/5594/79977/1512/1522/6722/80004/7477/7472/4838/3845/10413/284217/7080/1605/2294/3976/10427/6662/6431/2263/9620/5595/1499/2252/3371/10253/9231/3202/7482/10252/3397/7048/6469/652/3169
## GO:0099024 8685/9212/51411/11314/26228/3689/2207/575/246/9938/2213/23616/3071/4240/6845/199/4481/4627/9844/998/3684/19/55113/54784/718/387/2624/3673/10347/7057/2150/94134/2209/948/54209/51454/8678/1793/2934/5468/55198/11031
## GO:1901861 983/891/1482/1063/2253/2539/22943/409/6285/57817/2254/7480/3776/5594/9734/2047/10038/26263/1432/79647/5058/3720/5292/5997/8531/6665/8324/9472/1948/7472/6910/4851/51176/2475/2627/5465/4534/6495/2660/50937/10891/27302/10413/6899/26585/3516/859/26281/7046/57158/9150/7040/22933/3084/3156/657/5600/5999/89/1655/2931/1906/4089/7528/2248/10818/5728/10869/650/7161/1385/7291/5300/6909/4656/2648/60485/3488/2260/8737/55692/64321/6474/56603/4015/7093/406/2065/2263/5562/9975/9759/10211/1499/10521/23493/4088/2735/4211/596/4208/2817/7048/201163/5950/2247/6469/57496/23414/2697/7049/3479/652/2066
## GO:0010566 133/51805/23408/654/5978/1181/10891/653/27120/1609/650/1958/8644/27122/54361
## GO:0030812 54541/57103/5465/5207/51548/10891/89/6774/863/4656/26471/9759/7157/8604/2203
## GO:0033540 215/55289/10005/51/23600/1962/6342/26063/30/1384/8310/3295/10455/8309/54677
## GO:0035815 1814/1813/552/5020/6869/186/1906/135/183/27131/2771/4879/1910/4881/6863
## GO:0042362 3458/1594/7124/5360/2672/1593/120227/3553/7421/6615/29914/53630/4790/1576/6591
## GO:0042535 7096/3929/1536/7305/729230/6693/9261/566/7099/943/177/351/7057/3315/9590
## GO:0042921 5536/811/10432/7533/55885/5245/23054/9575/406/5187/8289/1407/2908/4734/1408
## GO:0042994 4188/4794/11124/4792/5716/9908/4796/3586/4795/7114/28952/5310/4601/5311/6717
## GO:0043518 23028/4282/5716/8444/972/4193/6615/1859/754/960/64844/7291/55702/23411/6591
## GO:0044406 59272/3383/6441/3326/949/5818/10332/975/51297/30835/5819/4057/3625/2621/131578
## GO:0046184 7086/7167/8566/654/5978/1585/1181/653/55818/55163/1584/650/8912/27122/54361
## GO:0051198 54541/57103/5465/5207/51548/10891/89/6774/863/4656/26471/9759/7157/8604/2203
## GO:0051883 820/1991/3853/2597/10018/6372/566/2147/383/5196/572/11334/2150/4153/1511
## GO:1903543 3458/8027/27183/11267/6386/7879/9146/9525/7251/10015/23400/6382/55512/6385/27243
## GO:2000369 9829/1785/55681/5291/6457/8976/6456/23208/9892/29978/9026/22848/10188/1601/9094
## GO:0002287 8767/3458/942/1880/30009/4063/3965/3569/5971/54542/3593/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/6774/3566/4092/3594/149041/51561/6095/10538/538/9655/6778/5914/4602/604/5590/6097/2625
## GO:0002293 8767/3458/942/1880/30009/4063/3965/3569/5971/54542/3593/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/6774/3566/4092/3594/149041/51561/6095/10538/538/9655/6778/5914/4602/604/5590/6097/2625
## GO:0016575 2005/3066/7422/9734/8819/10432/5927/3065/51547/79685/5978/5245/4287/5599/51548/3622/10474/5587/23186/7040/51043/22933/50943/11176/6421/10933/26993/6497/54531/79885/10270/25865/11107/10013/1487/138151/65018/5187/23411/10014/25836/56848/9759/7157/51564/604/23410/8864/6720/7349
## GO:0030032 5365/6624/5880/4690/29780/7454/8440/79902/1785/79647/7414/50649/10109/64083/7410/55704/998/2475/11344/2660/3273/5879/10787/23191/7471/55604/1969/10810/3688/23380/10163/8874/2039/3815/3983/29984/5800/538/23647/9459/26053/55909/9759/25970/1901/9353/2241/1012/10451/22885
## GO:0042733 50515/3066/3549/10018/79977/54928/60529/3239/8323/79583/581/3227/3065/7289/2768/3238/7476/51098/657/26146/4089/26005/55764/3207/2736/51776/27077/9464/7291/6909/4038/54903/1889/1499/1387/4920/6299/7474/6468/9742/6469/4488/116039/7704/4487/2737/65250/2697/6926/652
## GO:0048645 2253/22943/2138/5604/7490/655/5594/8928/6091/5292/3227/2348/7472/6910/2668/2627/6495/3516/10716/657/23213/7849/6604/10818/3207/2736/3200/9464/3670/2260/64321/5076/3280/2263/8626/579/5595/1499/7474/7482/2246/10252/4208/7048/10370/6469/2737/367/652/4036
## GO:0070988 200315/200424/5447/23028/8284/23210/6996/27350/200316/328/3720/8242/51400/1544/5927/10155/339/10930/22992/1577/80853/5253/54726/7404/8239/25974/1559/10765/1565/23133/79697/9682/55818/7874/54784/3299/8846/7403/57379/23135/1576/1558/23081/7320/1543/79831/55693/79068/23030/2625
## GO:1904377 29899/3458/7124/2048/1956/245812/6769/382/6809/2770/391/2035/8878/3799/5584/8766/7429/1739/1969/207/5581/3688/9495/5780/10369/2852/7430/10519/5583/5170/3958/27237/2037/11079/6711/6810/5295/10268/5357/22841/2181/29098/54209/3675/2042/10580/25999/4926/4035/10551
## GO:0032273 3055/1236/11151/274/57180/3383/84722/4690/246/10095/10096/7454/4733/8440/5216/3071/22919/6356/1496/382/10097/5058/8936/10092/2885/402/8851/5217/7408/57175/10109/3320/10094/2185/79998/9873/10093/5987/8976/10178/2475/9530/1440/6366/7429/5879/2017/9463/10787/23191/55604/1739/55243/859/6188/4233/5581/6369/23332/51199/9026/387/4868/6249/10152/55755/4204/55435/65018/2242/4641/1639/29108/10435/4131/1027/10142/11076/2934/2241/89795/54551/4926/85477/23116/10788/51466/25802/4137
## GO:0032330 8200/11173/5447/4192/10736/5970/5915/654/2734/6660/26585/7046/81792/3207/4094/2736/5741/5916/6662/6474/51222/579/1499/4088/4017/860/94/8840/1490/6591/7227/2202/85477/8817/7704/658/2737/5744/652
## GO:0032480 9636/10859/51191/64135/23547/7353/23586/7128/9111/9246/79132/83737/63906/5971/9641/140885/10293/64771/55666/7706/3586/54476/1540/3661/5495/26146/58509/29110/7528/8887/5966/79671/5300/5094/5802/29108/57506/54941/7318
## GO:0032757 51311/914/336/2867/1991/7096/23586/2219/3929/3965/929/7124/7097/8772/5054/1649/51744/64127/4615/10394/7099/3553/8915/11315/965/2658/25865/8692/51284/7100/7098/8737/29108/2150/57506/7474/2149/51157/9370
## GO:0070169 9636/8326/26271/1051/2824/468/7480/5027/655/265/7475/93/654/2201/51374/7040/4745/657/92/3491/650/5741/659/6546/7020/90/154/4088/490/4057/84059/4208/9365/5764/116039/658/54361/7043/652
## GO:0018149 1475/5266/9806/2125/6698/7052/9333/2312/3848/6699/4014/3713/7047/7737/7053/50859/3849/2038/301/7051/3858/2335/10347/1832/7057/79625/1281/633/2162/1634
## GO:0032148 7295/4504/151/6714/152/3606/79109/55704/2475/64223/5155/3630/55615/207/3084/11315/5170/9270/4916/65018/3643/7474/5590/114882/2246/283/2621/4908/150/3479
## GO:0032435 55872/51377/10755/57805/3326/6599/9097/9683/51322/7917/51035/6386/4534/11011/65992/11315/7874/6449/6135/6880/3077/23274/9529/8473/4130/23429/819/2272/29997/6469
## GO:0032735 3620/8767/1236/4050/3458/959/3329/3394/3659/3965/7097/3135/4192/958/3593/3663/1432/5970/6363/7292/7099/3146/177/5600/7189/51561/3670/7098/23236/948
## GO:0035088 9355/6624/23616/2011/4478/286/23513/2195/5584/25932/998/9948/2302/9368/284217/378/1045/10015/4649/5754/387/4983/2294/6939/3611/55914/7474/9231/23255/7481
## GO:0061245 9355/6624/23616/2011/4478/286/23513/2195/5584/25932/998/9948/2302/9368/284217/378/1045/10015/4649/5754/387/4983/2294/6939/3611/55914/7474/9231/23255/7481
## GO:0071392 890/81930/3015/6715/5457/1956/9131/3297/6753/10018/8202/6422/8886/10856/4654/8837/3586/10891/10524/3184/2852/5458/3673/599/4656/10268/8204/1393/4488/2099
## GO:0002792 7850/2633/51311/91543/10859/56943/336/27242/3418/9466/5552/7128/8997/26191/7124/348/2213/6376/55024/9734/5371/10333/6422/1814/5211/384/9971/79651/84830/80149/7351/10062/3033/1813/5734/353500/3745/3586/10385/972/5987/4988/3553/5781/9515/7447/5978/335/23208/5715/3630/10961/353514/80223/284/9727/4544/50943/3156/27202/7114/114548/80772/301/6992/22900/7430/7009/933/2693/9448/55366/8620/2335/1815/3440/307/26525/26056/55691/2150/4345/5071/1992/5530/23409/8609/28984/64285/947/2149/26297/2281/1393/90865/23005/3952/1149/3625/4856/6720/2621/2615/3667/9607/150/114899
## GO:0030833 6712/29767/3055/1236/7111/11151/119/274/57180/3383/4690/246/10095/10096/7454/8440/5216/3071/3059/6356/1496/382/10097/8936/10092/2885/10456/5217/822/7408/57175/10109/10094/6710/54942/2185/55607/9873/10093/5962/5987/8976/10178/2475/11344/9530/9113/1440/5063/6366/7429/2017/9463/10787/23191/55604/1739/55243/29766/5581/10565/7114/6369/10677/9026/2039/387/4868/6708/11078/10152/8195/2059/6711/55435/5580/5756/4641/51332/29108/10435/23189/5921/118/6709/9353/2934/57731/2241/54551/585/85477/10788/50853/80206/51466/25802/2006
## GO:0009119 9582/1503/7378/200315/8833/262/4830/4860/353/55034/100/191/4507/58478/3251/5901/7372/60489/9414/27350/200316/790/55669/4354/1716/56474/272/54963/8573/51727/1723/51074/4552/2773/339/10930/3614/132/9567/27304/1740/2987/4833/79631/1739/978/9054/23433/10201/10243/4338/51816/4976/10400/387/4907/51715/55/57379/29922/51292/5729/9583/22875/79873/3615/81602/4337/4832/8382
## GO:0032731 55765/5004/51311/8767/9447/3965/10626/5027/834/7305/3428/24145/55655/64127/7855/6363/566/7099/177/79792/353514/3717/3098/114548/351/22900/3670/11027/10392/29108/3315/22861/4088/1958/7474/4023
## GO:0045104 3868/5317/3857/10049/3267/23336/9118/10763/3850/6647/1674/4534/4287/3849/81565/667/54800/5318/5894/83481/1861/54474/7431/51542/8419/1452/2670/1832/51761/55914/3875/4747/4744/6469/3861/4741
## GO:0051489 1236/5898/4651/6624/7226/9148/382/6722/54942/55607/8976/10178/998/2332/6366/7046/26051/23433/5868/54874/375790/2039/23613/9750/116985/2596/5580/26052/54828/22871/2823/1809/8829/64284/5064/7043
## GO:0060999 7804/54149/10059/8997/348/3558/5597/9148/6792/10097/84298/55607/4076/7074/50944/1627/2475/23316/2332/5063/3706/8536/816/10458/4976/5663/5048/23613/5649/22871/6453/9231/80823/65981/22849/1902
## GO:1900271 114/5641/10288/2048/348/7305/2932/6780/134/2043/11170/4900/1813/8878/5621/55607/54413/177/3630/23373/23385/351/2903/135/23237/27020/25/1385/5649/10858/107/27065/4763/4311/5764/1524
## GO:0072091 259266/5080/6664/6663/55612/6496/3148/4072/5788/4771/7422/23028/3091/6376/5610/8091/192669/7101/5017/5292/1813/6608/677/27185/5134/1636/63925/7015/51548/10413/3192/7040/7066/6604/54345/7976/1495/64321/4763/7424/1499/7157/4435/79923/4054/6591/6469/2192/58495/4254/5764/2737/10443/6926/1524
## GO:0032350 133/3458/51083/1594/5447/7124/3091/2672/2784/3553/7421/654/5978/1181/10269/10891/653/476/27120/4790/7849/1609/405/650/10273/6934/1958/8644/27122/3249/54361/8614/2625
## GO:0043331 8767/64135/9188/23586/3434/5027/64170/5594/4792/57162/5366/6520/4869/1660/10084/1653/3661/4790/148022/23180/79594/8780/5899/7098/3764/201626/3456/5595/10211/57506/11213/857/81035
## GO:0072583 9829/1175/1785/23149/55681/57720/1173/5291/6457/9873/3676/8976/6456/1213/23208/8301/821/161/9892/29978/2580/54874/9026/163/1759/22848/23285/10188/22876/3092/1601/23396/9094
## GO:0034502 10403/983/81620/2146/7272/9212/5347/701/22948/1058/55506/4436/908/10576/3009/5885/54908/55166/7203/10574/675/10575/10856/65057/6117/79035/23626/9183/10498/7014/6118/10694/10664/9555/54552/23514/7015/55011/23383/9184/7520/54386/545/55135/7013/91782/55719/23063/80351/254394/26277/112869/29072/25913/8658/546/3550/25836/5925/51112/57082/23272/10039/2099/51149
## GO:2000106 9212/3620/6352/917/1236/10859/1029/3575/4067/1234/2207/100/939/5588/3965/4282/8013/5027/5133/8772/3091/23657/79444/3059/3558/384/64127/26155/695/29124/101/6868/3579/6363/581/5291/3586/5293/972/3665/3707/3718/6366/10461/8915/56891/5728/2693/3958/5896/23411/9693/7157/8660/604/7474/558/1942/4208/1831/4254/2621/6387/652/5304
## GO:0072078 4609/6943/2297/2253/2138/7422/7490/9500/10736/55083/3975/3237/6608/5727/7475/2668/6495/6928/7471/1739/26585/7040/186/3911/4089/7849/183/3217/3207/650/55366/56998/6662/5076/2719/4070/3280/5310/3611/54806/5228/5087/1499/80000/4435/6299/596/7482/5311/26249/2246/8642/2247/6469/79633/7481/54361/2737/652/2625
## GO:1903509 7368/313/6489/8708/3696/79152/4759/6484/8813/9334/7915/57733/5476/27090/8733/8128/2760/64781/51046/53947/81849/4668/5660/54982/581/84720/10825/5277/8703/2720/51228/8818/93210/6610/29906/1390/8706/410/79690/7903/54344/9514/80772/23344/2583/9215/10402/8869/27315/8705/5408/9331/9487/2822/412/51227/3074/51604/10026/80055/6483/3815/1201/5281/55512/5580/80235/9091/4758/6609/5562/8707/2581/54872/9488/2717/427/3073/55650/65258/23556/5283/2517/7357
## GO:0006879 7037/3934/4609/1356/3162/57817/2395/3091/10058/8454/7036/9114/6556/54583/2512/7018/4738/55832/23545/3658/6647/212/654/523/3163/537/9550/2658/4089/23400/2495/48/4891/8031/4682/3077/9843/6500/4057/51310/80762/26234/6717/164656/3263/9429/79901
## GO:0035904 639/2253/2138/6659/5629/55636/1785/4052/8928/6091/6722/84516/1948/4091/9784/6495/10454/11174/6899/3516/56999/657/8131/163/6909/10427/4824/2022/23129/4638/4015/3280/23493/94/182/4628/5311/23462/7042/1281/3952/5159/4016/5138/4035/4036/7021
## GO:0045604 2146/1515/54845/55506/2296/1594/2810/1514/865/10626/474/5469/1041/79977/8202/360/5068/5275/8689/677/5727/7421/9555/8643/81537/9817/9573/6820/6093/9475/7538/3890/4610/5583/6431/3280/8626/3204/8609/23493/4926/58495/1513/4488/247/6424/652
## GO:0006821 2568/57348/1364/5031/706/22802/1184/57282/7439/9022/1080/5724/1183/2554/54831/2742/1179/760/6507/8542/1180/9629/2569/2562/26285/6521/5621/2561/8001/25932/1192/2570/1207/10316/55129/1181/1188/65010/10861/2566/5030/2563/9635/1193/846/5349/57030/23155/5593/2741/1836/1182/55879/51449/2560/53405/57101/1186/2555/6509/65012/766/6558/2915/1185/5243/5172/55107/1811/6505/5348/2743
## GO:2001022 2305/4609/5111/1054/57103/7336/2140/2138/8914/142/3014/7454/1663/1956/672/57805/5591/5366/5582/7334/8091/54929/29086/10097/9521/55183/10155/1660/9025/3146/3090/5883/22976/79184/2332/23514/2521/2074/23347/6188/149628/1655/545/55135/64210/9774/9577/55719/51588/54537/4255/51720/6498/7515/22925/27063/4862/138151/54780/4824/472/5580/23411/200734/23201/322/55693/6419/10039/57332/4487/51149
## GO:0001702 51471/6862/3975/3170/154796/1954/6722/93/4838/8861/4089/9573/7709/10818/92/6045/90/2114/1499/7474/26011/8646/7358
## GO:0002068 5080/4821/2932/3172/6009/6608/5915/654/4825/653/2931/1021/572/3642/9575/5170/5916/406/5991/51092/5914/7474/652
## GO:0003071 1535/3291/5345/134/1585/5155/81285/186/183/387/5972/1579/5800/2150/2702/2013/2149/2621/10391/5125/2697/185/66002
## GO:0003309 5080/4821/2932/3172/6009/6608/4221/654/3651/2627/4825/653/2931/1021/572/3642/9575/5170/406/5991/51092/7474/652
## GO:0009065 80150/5471/2805/4842/2806/5625/2744/1610/8659/4843/2572/383/23569/493/2747/58510/4846/23576/23564/2752/2571/2184/2746
## GO:0010460 10874/133/2643/6870/100/6262/1908/4878/522/552/488/148/5144/5999/1906/3784/23493/7168/3270/1907/54795/55800/6505
## GO:0030194 10855/5341/5054/5345/2161/5340/7099/1361/7001/2147/4780/10630/2039/6915/7057/350/2155/22875/2149/948/6403/7056/2152
## GO:0032104 1594/5469/4504/5582/885/8805/80763/4988/2475/5465/22938/29937/4852/2693/8620/8195/25959/4925/6591/3952/585/7349/9607
## GO:0032107 1594/5469/4504/5582/885/8805/80763/4988/2475/5465/22938/29937/4852/2693/8620/8195/25959/4925/6591/3952/585/7349/9607
## GO:0032616 27242/3965/5047/3556/64806/384/3662/7356/3606/7292/3565/51176/3133/353514/114548/23765/3440/55540/56848/5914/5590/90865/2625
## GO:0060740 10481/9420/655/6422/3239/6256/10116/23213/10818/2736/5916/6662/4824/2263/8626/3371/7474/3400/6469/2099/367/652/3169
## GO:0090025 6278/3627/7941/6352/56833/1230/4067/5641/5054/729230/57402/2358/199/6346/3146/26585/10488/158747/1843/9353/4681/4856/6387
## GO:1900048 10855/5341/5054/5345/2161/5340/7099/1361/7001/2147/4780/10630/2039/6915/7057/350/2155/22875/2149/948/6403/7056/2152
## GO:0006282 2305/10635/1111/5888/55010/5111/1054/57103/7468/7398/7336/2140/79000/2138/8914/7913/142/23028/3014/5531/7454/1663/1956/10721/672/3297/5591/5371/5582/7334/8091/55611/151987/54929/29086/10097/55183/10155/1660/9025/3146/7014/6118/9400/8451/79184/23514/51548/2521/64110/2074/23347/6188/5893/51750/54386/9320/4968/55135/64210/9577/56154/55719/54537/4255/51720/7515/51366/7291/24144/56893/4862/5429/1025/23411/29072/7158/23201/22891/322/55693/6419/10039/55086/57332/51149
## GO:1903828 81620/2633/55612/8326/116372/9258/3753/7295/166614/3638/1445/1020/2824/8500/5905/3301/580/88/55737/2932/11006/382/64771/26272/55432/1173/10434/51208/51009/55968/9530/3998/9555/9478/1213/23650/51465/859/284/11261/8301/64114/7040/2664/23433/11315/7327/7013/6672/5525/55022/9475/2039/9750/10956/29969/56623/56957/51104/51715/9270/8650/9531/11142/51763/137886/81926/598/5569/54741/9528/4130/146057/23409/4763/1601/948/201163/9201/23327/23245/347/54585/131578/9370/4137
## GO:0051224 7850/2633/55612/51311/91543/10859/56943/336/27242/3418/3753/9466/5552/7295/3638/7128/1445/1020/26191/7124/5905/348/2213/580/6376/55024/9734/5371/10333/6422/1814/5211/384/9971/79651/84830/55432/10434/80149/7351/10062/3033/1813/5734/353500/51009/3745/3586/10385/5987/4988/3553/5781/9515/7447/5978/9530/335/8724/3998/9478/23208/5715/3630/10961/51465/353514/80223/284/11261/9727/4544/2664/50943/3156/27202/11315/7114/114548/80772/301/7327/11060/6992/6672/22900/7430/7009/2039/933/10956/2693/29969/9448/55366/8620/2335/51715/9270/1815/9531/11142/51763/3440/307/26525/26056/5569/55691/9647/2150/4345/5071/1992/5530/23409/8609/4763/28984/64285/947/80762/2149/948/26297/2281/90865/23005/1149/3625/4856/6720/2621/2615/347/3667/150/114899/9370
## GO:0019915 2867/29923/6646/7124/3569/348/10938/5771/4792/9641/6721/8291/2760/949/80149/10062/4481/114885/27329/3553/55294/8694/335/5465/51099/19/1401/2583/4790/123/718/3074/3690/7376/9619/338/6777/23411/57104/1407/3685/948/8204/114882/5468/4023/3952/1149/79068/857/32/5167
## GO:0034308 57016/8608/6783/219/50700/54363/221/131/27284/1119/2820/6121/1109/231/10327/6822/654/8694/5978/1585/1181/1545/128/1645/27163/1646/10170/130/653/51109/53630/11315/9249/1609/9227/1584/650/8574/8912/124/8854/217/220/7276/51573/222/55825/6799/224/54884/8644/27122/6817/5950/216/126/84869/2819/54361/8228/3479/125
## GO:0034637 3613/10331/5499/6513/2805/9334/3906/7360/2932/79369/54928/5236/10678/2992/231/8445/208/2997/5500/2131/2132/2683/2475/2645/9348/23178/3630/3037/207/3612/5260/2931/5509/51477/2103/3036/5741/55454/8908/2998/51763/283871/55790/2632/178/5261/8660/3643/3340/10580/3952/8864/5167/3667/3479/5105/5507
## GO:1903036 10855/5341/5467/50506/7852/4192/5054/5345/1839/5068/2161/2896/5340/4654/6665/7448/7099/1361/2303/2475/3265/3640/81565/7001/2147/5581/4780/10565/301/8578/6239/10630/2039/6915/53905/538/4916/4638/8613/7057/23189/350/2155/825/22875/8840/2149/948/6403/7048/2281/7056/7494/5764/4035/2152/150
## GO:0010634 4318/51378/9982/2821/3458/3162/5641/239/7422/5743/5629/3091/506/5216/958/9734/5578/811/5606/1512/1839/382/6714/2896/8828/6868/949/80149/2113/2185/5335/80005/2303/3146/2475/7476/5155/8766/7429/3640/498/8754/6869/54566/3037/14/5587/284/207/7040/4233/5581/4780/7114/301/6239/1906/8823/23332/57142/10982/27286/183/2822/3725/25865/9475/10013/2624/9448/3690/10000/659/25/23473/10519/3673/2324/5170/57111/4215/9270/4846/2260/6662/57669/6667/5168/9647/8613/23411/5286/7057/54828/23328/3315/7424/2252/7010/9922/3373/306/3791/51564/7474/6776/5025/3675/25960/1235/2246/10016/7042/1793/23122/8829/7048/2247/57608/9037/10769/51157/388/8817/6678/6863/652/2625
## GO:0003323 4821/2932/3172/6009/6608/654/4825/653/2931/1021/572/3642/9575/5170/406/5991/51092/7474/652
## GO:0014046 3351/3737/1814/1137/1141/1813/2668/26281/6623/4986/8973/3356/65018/1268/6622/5071/4887/6387/18
## GO:0014059 3351/3737/1814/1137/1141/1813/2668/26281/6623/4986/8973/3356/65018/1268/6622/5071/4887/6387/18
## GO:0030878 1482/2304/2253/5604/5594/6722/6495/6899/5894/7080/7038/7849/3200/5595/3232/4088/3213/3202/6469
## GO:0042053 6870/1812/3689/3251/1312/55737/1141/6531/2861/5153/3684/11315/1815/6622/5071/3350/4929/18/4129
## GO:0042069 6870/1812/3689/3251/1312/55737/1141/6531/2861/5153/3684/11315/1815/6622/5071/3350/4929/18/4129
## GO:0045821 26330/5208/5210/5027/3091/5209/51085/5207/3630/405/2103/3356/5562/957/5563/3643/2819/26137/3479
## GO:0046823 55612/7295/1020/5905/580/9972/7175/9478/284/11261/11315/6672/29969/51715/11142/5569/4763/948/347
## GO:0060231 6772/7490/10736/53918/6608/8324/10409/2668/26585/7849/3976/5076/6939/1499/4435/6299/54361/652/2625
## GO:0060487 55151/4781/3596/79977/7965/2302/2627/10413/3516/7080/1385/429/60485/6662/10365/3202/25803/3169/10551
## GO:0060713 133/2709/6768/9021/655/10049/79977/2885/7855/677/7477/3586/10653/653/6692/3491/8521/2263/8648
## GO:0071636 6375/3965/8710/5743/6376/5345/5045/1386/50943/10159/1385/7057/4345/4088/4602/947/4179/4060/7481
## GO:0098743 8092/2251/176/1432/4359/7067/4617/7476/56914/2249/649/6662/5310/1301/4920/1490/1280/4256/658
## GO:0044784 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/4342/55795/56984/7175/996/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0051306 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/996/5518/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0043271 4318/23630/10859/3757/3351/3753/10288/274/3383/10105/6406/2824/945/468/2048/5743/88/2257/1394/1814/10971/255057/6690/9446/8291/134/3792/208/5997/522/2056/1813/4842/2185/29763/5987/9943/2475/2332/2917/2775/784/9368/859/2859/7341/1193/207/7040/4544/5581/6236/5999/5270/186/28954/3060/4923/5593/4889/7531/7009/116/5728/10345/6781/4987/3200/63892/288/22925/7291/1815/4846/51763/23479/538/3356/9992/1268/7057/6622/6588/10681/7881/10550/51719/8660/845/2669/27347/7779/596/51185/5311/4734/6717/2281/3952/2946/477/23327/857/5350/150/6424/18/4129
## GO:0002260 9133/3559/4067/608/27240/11151/578/100/7128/3965/4282/5027/8772/3091/8456/3071/6654/54542/10018/5366/4004/10603/3558/836/27040/581/8740/972/3718/6194/9093/8915/207/7040/50943/778/5585/10312/149041/6708/25/6498/55619/5896/6777/5532/596/4208/1831
## GO:0006940 10874/136/6870/8877/100/5743/5724/1143/151/51196/152/134/5997/6722/7137/6647/80005/80763/5020/9312/6865/1131/2017/6869/1906/2852/1613/5023/1136/387/2693/3815/3673/6915/84193/2982/9732/490/5592/2149/4887/5021/1907/10203/477/857/1264/150/18
## GO:0010676 3973/57103/5449/5031/5208/2641/5724/1642/5771/5366/117/51744/6714/8445/208/4142/57223/2645/5465/5207/5028/10891/3630/207/5581/89/4923/3269/2852/10776/2103/572/2822/5903/5741/8850/2648/23411/9104/6622/5261/8660/5745/3643/8604/2308/10580/3667/3479
## GO:0006664 7368/6489/8708/3696/79152/4759/6484/8813/9334/7915/57733/5476/27090/8733/8128/2760/64781/51046/53947/81849/4668/5660/54982/581/84720/10825/5277/8703/2720/51228/8818/93210/6610/29906/1390/8706/410/79690/7903/54344/9514/80772/23344/2583/9215/10402/8869/27315/8705/5408/9331/9487/2822/412/51227/3074/51604/10026/80055/6483/3815/1201/5281/55512/5580/80235/9091/4758/6609/5562/8707/2581/54872/9488/2717/427/3073/55650/65258/23556/5283/2517/7357
## GO:0006929 5788/4690/506/6091/8828/101/10371/23294/752/51330/6386/2017/23607/4983/2335/3673/9270/9423/57698/50624/57669/7424/4628/9353/8829/6591
## GO:0021602 3737/2048/401/1959/2047/1141/8828/10371/55558/6495/3198/6899/3211/104/3200/9935/5076/4762/6405/7020/3232/3213/3212/8829/5205/2737
## GO:0034205 274/348/836/2043/55851/51107/5621/9001/23163/1859/10972/8301/2931/23385/351/6093/5663/9475/102/10347/54103/1942/6653/1191/10418/3479
## GO:0048873 3574/11151/5027/63978/2271/54440/729230/581/6608/5781/3845/1435/5881/3988/2623/2323/2624/5741/10000/51542/4846/6662/118/26058/596/2149
## GO:0072606 914/2867/1116/7096/2219/3965/929/26191/7097/10333/51744/5861/4843/1401/27202/7114/301/965/8692/307/29108/2150/7474/2149/23005/3952
## GO:0000910 9493/79733/55165/51203/9212/9055/10112/24137/9928/990/5347/29127/1894/9700/994/1058/3925/9585/23636/3619/10096/79187/6755/26189/10755/55660/675/5119/28964/10617/25909/10807/26586/1814/10097/80179/79400/1813/27183/1072/643/79998/51289/4627/51100/6683/23157/51510/998/55521/1069/8766/6795/25978/11021/10899/9897/11258/9798/9727/50838/5581/79848/9820/9525/5586/6840/1263/91782/57132/10015/29082/5289/9903/54784/387/288/30849/79643/5300/6651/6711/7405/55958/598/84440/56155/54902/9101/29072/8502/403/311/5921/55909/27243/9371/9738/23503/63971/8452/9094/4628/324/8678/201163/585/79884/388/114327
## GO:0042531 6352/11009/4067/3458/3066/3600/7124/3569/9021/3596/958/3297/3059/3570/3593/3558/3592/2688/55620/5008/3606/2056/9244/3562/2534/3565/23568/23529/3717/7132/59067/1437/1436/6774/8995/51561/3815/3976/3670/3440/1270/3280/5175/2322/2261/10464/5753/3952/3263/2690/3572/1489/3479/2066
## GO:0050918 3627/3576/6352/5365/3148/11151/2253/9048/6360/7422/4282/5795/6376/23513/1233/2358/566/3146/10457/2668/5155/10584/177/284/846/4233/3603/285/8846/3673/3958/4916/7857/7249/7423/2150/5228/7424/2155/2252/4088/3082/3791/7474/1901/8829/2247/1012/64221/9037/4908/4035/2152/652
## GO:0070227 9212/3620/6352/3559/917/3575/27242/578/100/939/5588/3965/4282/5027/5133/8772/3091/79444/356/10018/3558/384/10758/26155/695/1399/29124/101/581/3586/972/3718/6194/1676/9093/10945/8915/207/1178/5585/56891/5728/3958/5896/8737/7157/8660/604/7474/1942/1831/2737/652/5304
## GO:1903051 27074/55872/51377/10755/57805/5371/5582/3326/6599/2043/55432/1459/51009/9097/9683/9349/80011/51322/7917/51035/28996/6386/4534/6201/29761/9491/7471/51465/11011/65992/11315/7327/7874/6872/11345/5663/10869/10956/64844/6449/6135/6880/3077/23274/9529/8473/4130/23429/819/1942/2272/29997/210/6469
## GO:2001257 4318/23630/81831/3755/6347/3458/1520/5336/51083/5031/3753/3208/9456/2048/4644/5142/2280/88/1612/2257/5923/8811/6769/729230/1394/4878/255057/375346/9446/10368/8291/6786/2056/1813/4842/3799/2185/9472/4988/2902/50944/6271/3787/9001/5566/54413/1756/3746/2904/1740/781/2332/784/3747/10891/785/54800/2631/1739/2859/57158/7341/1193/5144/23542/4544/1741/6236/823/50488/1742/28954/10369/4923/351/6324/2903/57338/30819/2893/8787/3064/10345/2892/4987/8398/288/1815/287/5649/9722/9992/2040/65018/1392/2890/783/22871/30845/27091/10681/7881/154/845/2669/3736/54209/844/6844/79026/5311/2259/4208/3270/6717/4747/2281/1393/2946/27092/857/5350/2891
## GO:0032570 8061/4821/952/6663/7298/1364/706/7097/5732/6714/5970/10062/5020/6869/10413/7040/1829/572/23558/79820/1828/2560/57828/2354/7057/10499/7337/8648/11057/5021/7042/2353/10628/6720/5764/857/7043/10266
## GO:0043039 7453/2617/8565/6897/2058/16/3735/3376/4141/833/55278/5464/55157/283459/2193/7965/7407/1615/9521/51067/79731/9255/4677/27068/55699/23395/6301/10667/5188/5917/80222/10352/3035/5859/23438/57038/51520/55152
## GO:0001709 5080/4821/55079/3475/474/5629/89870/4654/5727/4170/7476/2627/7471/11281/8643/9314/10660/4853/64641/2624/429/3670/6909/64321/4855/5076/56603/3280/3199/1499/182/4208/5396/652/2625
## GO:0007080 55143/1062/10403/81930/81620/3833/891/9928/11004/84722/54908/23212/23636/5119/81929/3835/3837/27183/79998/79003/9183/51510/8766/25978/3192/9525/91782/57132/29082/79643/8697/27243/8452/8678/10464
## GO:0031057 1789/23028/1786/9474/672/55611/3720/6688/26155/5927/6418/5079/22823/9555/55011/6598/50943/9320/55818/6497/1487/51366/7291/54880/6830/23081/23411/6879/6622/56848/7320/26036/55693/5252/7349
## GO:0048066 6663/4948/3549/4644/164/84079/1908/10018/8975/581/5873/7299/8943/56999/81285/65082/10981/967/2767/10159/89781/3815/9839/4935/1910/4286/23682/51151/4435/596/80070/4208/4254/5167/2737
## GO:0050873 1051/51316/30001/63976/664/5743/4151/10603/153/1432/1050/5997/11221/2475/59341/10891/3630/3192/3655/51043/3914/283927/64641/6517/23411/10124/154/4329/7350/3952/79068/9658/8800/9370/2167
## GO:0051653 10403/259266/51203/4085/5080/5347/9700/29899/1058/54908/10096/79648/3834/10097/3837/4342/55968/4627/9183/8976/6993/9181/23332/5048/1778/3064/55755/4134/137886/1639/126353/10253/54820/10252/4926
## GO:0090224 22974/10460/5347/10615/29899/79866/84722/23636/79187/4733/5119/8480/9126/2770/79998/51510/79598/7175/8243/25978/1213/3192/6047/9525/57132/10735/1778/10274/5310/1639/27243/26054/10039/4926/79884
## GO:0032892 8792/59272/8564/4282/5027/551/10991/885/23204/552/3553/6754/5608/5020/2170/4923/1906/6529/135/183/5663/8398/22925/8600/1579/22930/5025/6812/18
## GO:0097242 8685/3689/348/728/3949/6722/4481/3065/3416/3565/8766/1213/3684/8301/3156/5868/9230/6093/718/10347/4038/4043/3643/948/54209/4311/3480/4035/1191
## GO:1901186 4318/867/23636/5329/7039/5149/356/1950/6654/9148/9125/2069/134/6868/55294/9001/5148/3516/207/2852/57142/183/9026/116985/3092/1796/5753/150/10551
## GO:1902742 1482/6496/2296/578/8882/1410/655/7133/10018/23513/6688/7855/581/7421/2303/4851/51176/6928/5519/7132/7849/2249/3491/9464/3714/5076/6586/7042/9353
## GO:0007416 6712/78999/1812/119/10507/7336/575/22943/9806/5457/1020/7097/2048/1000/3556/1981/2047/2554/23769/55737/8934/2049/382/4914/5747/56132/1141/40/2895/1399/26050/2562/7855/266977/1813/55607/2561/4593/43/5818/1948/26280/2902/54413/5020/7476/869/53942/23316/6495/1826/2566/23654/56125/9746/57408/4897/23394/22941/3084/577/1007/22865/64218/1946/8927/351/27253/8443/27286/54549/27020/5728/1855/375790/2693/6259/11141/56130/9423/4204/4038/2596/9378/4916/10611/10160/2555/23129/5789/9379/5802/26052/79414/22871/22859/6622/8321/56123/4131/627/27445/23767/7474/9231/2823/22829/5021/23284/80823/4208/26045/64284/7058/7162/2045/5364/79953/8292/4915/2239/54674/9863/576/347902/57502/2066
## GO:0086065 23630/1824/9631/6262/1525/10021/3741/6331/6336/3762/5566/781/478/476/2316/5318/5144/1829/6324/8913/10345/3728/10052/287/1832/3781/3760/6546/783/3784/2702/845/29119/29098/482/3270/6717/481/54795/2281/477/857/775/55800/2697/776
## GO:0044091 2048/1000/5660/54413/859/2319/302/6281/9409/2054/11252/23180/5728/11141/288/858/4038/6711/9378/5789/9379/8504/22871/10211/2013/57515/25999/7357/857/8800/9863/57502
## GO:0045684 10855/55506/2296/51083/1594/2810/10626/5467/7480/7124/474/5469/8456/8202/5727/7421/9555/3849/8643/6820/8717/3858/5583/7474/7042/4926/58495/4488/10468/247/6424/652
## GO:0048488 57706/10059/1020/9829/23513/382/6855/60/6456/6804/23208/821/6620/57030/6455/8867/71/1609/1861/6093/2580/1759/8674/23285/5533/6517/22871/5532/6622/6453/23396/5874
## GO:0060236 22974/10460/5347/29899/79866/84722/23636/79187/4733/5119/8480/9126/2770/79998/51510/79598/7175/8243/25978/1213/3192/9525/57132/10735/1778/10274/5310/1639/27243/10039/4926/79884
## GO:0072665 2633/7128/3920/57707/6845/27183/51100/9179/64089/10542/7879/57154/975/23163/9146/51172/57142/11133/79158/9475/950/23334/8031/8546/51520/9648/4734/79589/9765/6653/23677/1191
## GO:0140238 57706/10059/1020/9829/23513/382/6855/60/6456/6804/23208/821/6620/57030/6455/8867/71/1609/1861/6093/2580/1759/8674/23285/5533/6517/22871/5532/6622/6453/23396/5874
## GO:0033002 983/891/4318/6352/65009/6502/6772/1482/3654/1535/3458/2296/2950/3162/5031/10257/3351/1991/239/3600/7128/2254/5467/1786/1312/8013/7124/3569/5743/3776/1956/6376/3596/5724/4880/10221/5591/5594/2047/7052/3570/3593/3592/5345/1432/1839/79647/10135/5058/3720/3398/2081/4883/231/2069/1026/5292/2547/3606/27035/199/8837/60560/2773/3586/6256/3486/2303/7472/4193/6910/4851/2475/5739/5155/2627/6495/7015/2660/9510/10891/27302/6869/10413/147912/4854/4217/3516/4209/284/94104/26281/7046/207/3717/7520/9314/3156/657/5600/55810/7189/4889/1906/2852/6774/183/4835/3725/4331/5728/7161/3673/9927/51135/2771/57447/56998/6909/4656/5573/60485/3488/2260/8737/7434/6934/55512/26119/2263/7057/3611/4086/9759/1499/23493/2735/3248/7536/4602/1027/4211/26011/1901/5592/7168/8840/4881/7042/4208/7048/283/5950/2247/5468/1012/6469/10203/5136/4313/4856/5159/23414/347/1264/2697/7043/7049/3479/2006/80310/9370/652/2066/4969
## GO:0033865 5163/55711/6319/10380/6576/8942/11332/6783/55856/1737/215/9200/79071/5160/5165/2180/9061/26027/570/27284/51268/25874/2182/23597/5161/8050/64834/9060/54928/51144/23305/201562/10005/1622/55066/23205/6822/1738/2194/4598/8694/1743/4967/10861/6819/60490/54995/47/80025/81616/25830/54704/3156/2639/6820/55229/283927/8460/1836/51660/9524/79717/51703/10249/5538/8801/31/10654/38/23417/8803/80347/79646/6622/5162/6799/8459/5164/79966/2181/3155/2954/6785/7923/6817/60481/5166/3295/64087/84869/80221/32/5167/54677/54898/10157
## GO:0033875 5163/55711/6319/10380/6576/8942/11332/6783/55856/1737/215/9200/79071/5160/5165/2180/9061/26027/570/27284/51268/25874/2182/23597/5161/8050/64834/9060/54928/51144/23305/201562/10005/1622/55066/23205/6822/1738/2194/4598/8694/1743/4967/10861/6819/60490/54995/47/80025/81616/25830/54704/3156/2639/6820/55229/283927/8460/1836/51660/9524/79717/51703/10249/5538/8801/31/10654/38/23417/8803/80347/79646/6622/5162/6799/8459/5164/79966/2181/3155/2954/6785/7923/6817/60481/5166/3295/64087/84869/80221/32/5167/54677/54898/10157
## GO:0034032 5163/55711/6319/10380/6576/8942/11332/6783/55856/1737/215/9200/79071/5160/5165/2180/9061/26027/570/27284/51268/25874/2182/23597/5161/8050/64834/9060/54928/51144/23305/201562/10005/1622/55066/23205/6822/1738/2194/4598/8694/1743/4967/10861/6819/60490/54995/47/80025/81616/25830/54704/3156/2639/6820/55229/283927/8460/1836/51660/9524/79717/51703/10249/5538/8801/31/10654/38/23417/8803/80347/79646/6622/5162/6799/8459/5164/79966/2181/3155/2954/6785/7923/6817/60481/5166/3295/64087/84869/80221/32/5167/54677/54898/10157
## GO:0045685 983/4821/712/27242/3066/274/3569/7097/7852/4192/7133/728/1814/7101/3398/9283/2043/10215/3949/5970/6009/3065/11221/4099/10419/4851/9948/2475/27339/4825/177/23529/1600/2147/7040/5270/6692/351/79727/650/6900/7161/1605/5803/3976/4916/23500/3280/4763/23405/1499/22891/26011/54209/3400/5468/6469/5764/443/1746/3572
## GO:0002523 6280/6279/56833/2867/1991/3689/3929/6376/4192/101/6401/1235/83700/5764
## GO:0006837 10859/3351/2207/2824/6850/4842/6570/5023/1392/6622/6532/3350/6571/4129
## GO:0014857 5467/2047/79647/8837/6495/2660/147912/284/94104/3717/6774/4656/2247/6469
## GO:0019883 6890/6891/9474/912/3135/3134/3416/972/6892/3133/567/51752/64167/3077
## GO:0030207 1464/1463/10675/63827/411/23553/3074/3423/3425/3373/3073/1462/633/1634
## GO:0030889 1493/27242/11314/2213/7305/836/4332/3635/695/3586/5585/5074/149041/472
## GO:0033151 3148/5591/64421/5897/3146/51176/64919/6929/6932/3981/5896/5423/472/9730
## GO:0035810 4883/685/1813/3037/1906/135/8692/4987/2771/51763/4879/1910/4881/7021
## GO:0042033 3162/1991/7124/3569/3606/566/3553/177/351/148022/7098/59307/1958/7474
## GO:0042447 6715/6783/6696/1588/7533/3416/43/1636/5446/8630/1889/51170/1735/8292
## GO:0045064 942/3606/7292/3142/602/114548/301/3566/10538/9655/5914/604/5590/2625
## GO:0046068 4880/4878/5152/2983/6095/4879/10846/2982/2977/8654/4882/4881/5136/5138
## GO:0048569 578/4647/7422/10018/4643/7855/581/3150/64919/9314/4237/2067/2202/2200
## GO:0050755 3162/1991/7124/3569/3606/566/3553/177/351/148022/7098/59307/1958/7474
## GO:0050862 50852/3932/1236/3783/100/8934/5970/10666/9840/975/1540/6188/25865/5819
## GO:0060732 3973/5449/5031/5724/117/51744/4142/5028/4923/3269/2852/5741/6622/5745
## GO:0070669 3559/3561/6850/988/5771/3558/3560/2185/3718/3716/6464/6777/4435/6776
## GO:0070672 3561/3600/3601/2182/3560/2885/920/3718/6774/3716/6464/6777/23236/6776
## GO:0072216 4609/7490/10409/2668/5155/186/7849/5154/5979/3976/5076/1958/5159/9370
## GO:0099509 23413/3351/491/1020/134/492/5028/5030/5023/1268/783/490/9256/776
## GO:2001212 133/7498/51666/634/5906/55662/9693/2013/23493/3791/947/23462/55273/10266
## GO:0048016 9454/7124/1908/2932/375346/51196/5534/8445/3710/58529/5725/5621/10523/9472/1827/10316/2475/4772/11261/3084/89/3269/1906/493/63928/5598/10519/51778/5533/2274/2065/3709/10725/9455/5532/5530/6548/29995/1907/576/23261/3479/3708
## GO:1905818 991/1062/10403/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/8379/1459/84861/7756/4342/55795/56984/7175/996/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324/4926
## GO:0022404 10855/9355/1001/55612/51083/3066/2304/8549/22943/50814/3229/7480/7124/4644/1956/8456/25928/6654/1775/60529/8323/5970/6608/3065/26133/10913/8861/7053/6615/11166/10269/3516/1896/3911/4089/8717/91/5154/54345/3890/55366/27121/7976/80199/4038/60485/3488/538/6662/2263/9620/8626/3624/2068/4763/1499/2252/7474/596/11005/7042/9855/6469/4926/4488/10468/26018/9079
## GO:0022405 10855/9355/1001/55612/51083/3066/2304/8549/22943/50814/3229/7480/7124/4644/1956/8456/25928/6654/1775/60529/8323/5970/6608/3065/26133/10913/8861/7053/6615/11166/10269/3516/1896/3911/4089/8717/91/5154/54345/3890/55366/27121/7976/80199/4038/60485/3488/538/6662/2263/9620/8626/3624/2068/4763/1499/2252/7474/596/11005/7042/9855/6469/4926/4488/10468/26018/9079
## GO:0043648 23475/445/10797/4199/6472/6770/1719/8564/2730/8942/3418/4522/81034/6573/2805/8513/7915/23657/2271/3417/5832/9971/6389/3034/6507/4191/10005/5264/4552/1738/2348/9380/2806/471/5625/2744/56954/4524/79944/8659/1743/4967/47/2572/6470/10841/159/2356/10840/6390/2747/2350/23498/8801/441024/8803/56267/7054/2729/2752/2571/2746/8604/80017/443/10873/6898/5105
## GO:0072676 6278/3627/10563/6373/3695/6364/6352/6347/11240/6351/1236/6354/9420/1880/3383/9466/9048/30009/6375/8772/51192/2833/4478/729230/6693/23143/84830/1399/101/6868/6793/326/199/5294/8740/2185/5293/7535/3676/8976/9943/6366/65125/207/8174/351/5979/387/1398/9750/2838/102/1893/29108/4345/6558/375056/27347/7474/1901/9023/80024/1235/2621/6387/347/9547/2625
## GO:0090132 3868/10563/6286/4318/51378/154754/55612/9982/5646/23603/2821/3458/5613/3162/6273/5641/2253/3689/239/575/7422/5467/5801/5743/5629/348/3091/506/5216/23616/10755/958/11171/411/1460/9734/5578/79977/811/5606/1512/1839/382/5747/7101/6714/6091/3164/2896/11156/84830/5217/8828/154796/6868/57175/10371/2876/949/80149/2113/6722/2196/51094/2185/11221/5335/4627/80005/1948/5781/2303/55294/5829/3146/22976/4851/3565/55466/2050/2475/1545/7476/335/5155/11235/8766/7429/3640/498/3273/3849/8754/27302/6869/8503/54566/26585/3037/14/5587/56999/284/1969/5290/7046/207/7040/634/4233/5581/9314/4780/3688/7114/186/301/83481/29775/6239/64218/1803/5585/1906/8823/23332/2658/5586/56413/6672/4163/2249/57142/10982/27286/183/2822/3725/5728/285/25865/889/9475/54345/10013/387/3728/2624/9448/6781/3815/3690/10000/659/25/23473/10519/3673/9839/2324/5170/57111/4215/9270/4846/4204/6915/5872/2260/6662/7857/5607/57669/6667/5168/23129/9647/23411/64081/4070/7026/5286/10014/7057/54828/23499/23189/350/23328/3315/5175/4763/7424/25959/2013/1960/2252/22846/4017/7010/2752/28984/94/9922/3373/306/3791/51564/375056/7474/6776/1942/5025/3964/3675/25960/1235/5797/2246/10016/7042/1793/23122/3397/4208/9353/8829/7048/5176/2247/5468/1012/57608/5793/9037/79812/10769/4856/2191/51157/5764/388/8817/6678/90627/4223/6863/51466/1634/652/2625
## GO:0000132 10403/4085/5080/5347/29899/1058/54908/79648/55968/9183/6993/9181/5048/3064/55755/137886/1639/126353/10253/54820/10252/4926
## GO:0001914 10859/3575/5788/6375/5027/8772/5817/2213/3135/3134/3593/3592/51571/3133/177/567/634/8417/3594/51561/5819/5532
## GO:0010640 65009/867/5795/5771/6714/5739/868/9678/9860/9368/9146/5782/9026/90410/4015/6622/3092/2155/4035/347/2152/9370
## GO:0032528 51765/6624/688/54825/5911/53841/5962/5781/11344/7429/5337/53827/9368/4640/10083/7430/5420/23043/5909/9693/5357/5205
## GO:0032897 6352/6351/9830/8091/3065/7023/5987/11074/5978/22954/51193/23435/6737/3725/7538/51763/11043/25833/55223/10206/10410/81603
## GO:0032958 5341/3973/5449/5031/5724/117/51744/4142/2185/3707/5028/3706/80271/4923/3269/2852/5741/6622/9807/51447/5745/2247
## GO:0033081 3575/8876/100/3549/10125/23240/8456/6654/5771/101/1209/6647/2302/9840/50943/2064/2736/814/1960/6469/6935/652
## GO:0046639 864/30009/3549/865/54542/8651/3558/80149/7292/3718/3146/3142/51043/50943/301/3566/4092/149041/9655/604/6469/2737
## GO:0060343 1482/7480/2280/6422/54583/6722/2201/9510/27302/26585/859/7059/23493/7010/23462/1277/5950/58495/4488/4313/7049/1101
## GO:0072012 6943/8710/7490/655/3570/8837/2303/5155/4854/284/5156/285/59/2828/3280/5175/7010/1958/947/5159/80310/652
## GO:2000209 1411/11200/7088/51651/5747/6714/25855/4851/4170/10514/5290/3678/3688/1048/57343/166/596/6591/5166/857/4915/4680
## GO:0010631 3868/10563/6286/4318/51378/154754/55612/9982/5646/23603/2821/3458/5613/3162/6273/5641/3689/239/575/7422/5467/5801/5743/5629/348/3091/506/5216/23616/10755/958/11171/411/1460/9734/5578/811/5606/1512/1839/382/5747/7101/6714/6091/3164/2896/11156/84830/5217/8828/154796/6868/57175/10371/2876/949/80149/2113/6722/2196/51094/2185/11221/5335/4627/80005/1948/5781/2303/55294/5829/3146/22976/4851/3565/55466/2050/2475/1545/7476/335/5155/11235/8766/7429/3640/498/3273/3849/8754/27302/6869/8503/54566/26585/3037/14/5587/56999/284/1969/5290/7046/207/7040/634/4233/5581/9314/4780/3688/7114/186/301/83481/29775/6239/64218/1803/5585/1906/8823/23332/2658/5586/56413/6672/4163/2249/57142/10982/27286/183/2822/3725/5728/285/25865/889/9475/54345/10013/387/3728/2624/9448/6781/3815/3690/10000/659/25/23473/10519/3673/9839/2324/5170/57111/4215/9270/4846/4204/6915/5872/2260/6662/7857/5607/57669/6667/5168/23129/9647/23411/64081/4070/7026/5286/10014/7057/54828/23499/23189/350/23328/3315/5175/4763/7424/25959/2013/1960/2252/22846/4017/7010/2752/28984/94/9922/3373/306/3791/51564/375056/7474/6776/1942/5025/3964/3675/25960/1235/5797/2246/10016/7042/1793/23122/3397/4208/9353/8829/7048/5176/2247/5468/1012/57608/5793/9037/79812/10769/4856/2191/51157/5764/388/8817/6678/90627/4223/6863/51466/1634/652/2625
## GO:0016202 983/891/1482/1063/2253/2539/22943/409/6285/57817/2254/7480/3776/5594/9734/2047/10038/26263/1432/79647/5058/3720/5292/5997/8531/6665/8324/9472/1948/7472/6910/4851/51176/2475/2627/5465/4534/6495/2660/50937/27302/10413/6899/26585/3516/859/26281/7046/57158/9150/7040/22933/3084/3156/657/5600/5999/89/1655/2931/1906/4089/7528/2248/10818/5728/10869/650/7161/1385/7291/5300/6909/4656/2648/60485/2260/8737/55692/64321/6474/56603/4015/7093/406/2065/2263/5562/9975/9759/10211/1499/10521/23493/4088/2735/4211/596/4208/2817/7048/5950/2247/6469/57496/23414/2697/7049/3479/652/2066
## GO:0010921 26472/221692/5341/28227/3458/11314/9088/10507/5788/60385/945/23076/7124/284352/3071/2280/5610/2932/22853/151987/57718/7184/3326/5521/8178/51400/5514/80316/58529/5511/1813/11123/6418/5523/27328/10842/1827/3486/261726/55125/5529/10199/63935/2475/9530/1740/5526/23141/5528/51231/5518/5527/55844/51657/23645/55291/22870/64062/11261/65125/3717/5519/54866/26051/23307/1741/5504/186/5524/8725/4249/65979/10776/23523/80034/5525/63928/6093/5520/2822/9749/8036/9475/3064/81566/650/5510/3673/3958/10421/2771/23504/9989/4659/26229/6295/10160/2029/3672/9104/4642/1760/63898/55105/4088/3476/10231/57082/9858/9814/7248/80279/7042/4208/66036/9665/54843/2281/5502/9891/5764/5159/3551/9863/5507/1408
## GO:0043433 2146/1029/3654/9447/1054/3162/3066/6375/409/7128/23028/4188/4794/83737/5629/11124/1240/6862/7293/655/10221/4792/57162/9421/1147/8431/5716/1611/1649/8928/10293/2672/3170/55655/9971/9908/54583/3398/4796/8323/5292/11331/80149/5621/7292/4221/79918/3586/5727/4294/190/25855/22976/2302/1545/222487/4591/4795/1540/7001/171392/2316/11261/7341/50943/9314/5740/7114/114548/140/58509/11060/9817/7187/6737/7874/23376/6672/6872/22900/26508/6425/10616/9684/4092/28952/51588/5458/8887/847/5195/9464/7291/6045/56998/25950/26471/307/5607/59307/9969/6911/6934/23411/5310/29108/4601/4345/5925/9759/8945/408/55914/3399/3275/7466/5311/80279/3397/6717/8553/4488/2621/2099/11213/6424
## GO:0090303 10855/5341/5467/50506/7852/5054/5345/1839/5068/2161/5340/4654/6665/7448/7099/1361/2303/2475/3265/3640/7001/2147/5581/4780/10565/301/6239/10630/2039/6915/53905/4638/8613/7057/23189/350/2155/825/22875/8840/2149/948/6403/7048/7056/7494/2152/150
## GO:0120193 1894/51599/865/9076/7124/1365/79977/92140/50848/56288/9080/402/4867/7855/6722/5584/5566/50855/6615/1739/79983/1969/7046/79778/81/84612/10015/64398/6093/261734/6904/6801/9475/4301/5583/5872/4641/7082/100506658/324/6591/7481/10207/3551/2697/7043/7122/10266
## GO:2000514 8767/864/3458/942/30009/6375/5588/3965/9308/865/3071/54542/54440/3593/8651/3558/384/3662/941/80149/3606/6363/10892/7292/11126/1604/3718/3146/975/3142/177/51043/50943/114548/301/3566/4092/3594/149041/51561/9655/5914/4602/604/57045/5590/7048/2625
## GO:0002686 56833/6347/11240/3162/2841/11314/26228/9466/100/1652/4282/613/1588/23143/84830/134/5734/8976/6366/653/26585/207/27202/9750/6370/23236/4345/3204/29/375056/1843/9353/727/4681/90865/4856/6387/11117/347/79148
## GO:0032653 55765/3620/80380/10859/959/27242/3329/2207/6375/940/3965/9308/7097/2213/7305/54440/3593/64127/3662/7292/8288/7099/3718/3146/177/602/353514/50943/28951/961/51561/11334/4317/29108/3082/5590/947/4179/54209/10464
## GO:0045933 10874/59272/6870/8877/2023/100/5743/5724/151/4878/9446/5997/1113/6722/80763/5020/6865/1131/2017/6869/476/148/487/1906/2852/387/2693/3815/3673/6915/9722/3784/2149/1490/4887/5021/1907/54795/7349/18
## GO:1903307 136/8941/8372/3689/2207/10059/1020/9545/164/3596/5724/3134/4878/8447/6845/3745/192683/5873/8723/6804/3684/8673/3916/376267/3566/2624/5864/6810/1268/2268/783/22871/2150/56848/9846/10497/57126/6812/6857/776
## GO:0031398 991/11065/27338/55765/5347/55215/6502/8767/330/79139/8877/409/9111/26191/23028/85453/672/2280/7321/57162/7334/5716/7332/57761/201254/7965/64127/3309/26272/11170/23640/10892/55743/5861/55294/22976/59343/10075/6187/329/331/8915/51343/284/754/7314/2801/553115/8312/2931/7189/148022/8841/25898/8555/5728/4092/5414/64844/10210/51438/5601/5300/9646/10273/9112/1025/65018/554/23077/5071/54778/1407/154/7337/408/64689/8452/7466/80762/9810/80279/10016/857
## GO:0048332 7296/2296/7473/22943/2138/4771/8013/6862/655/10736/9421/8091/89870/2139/6722/2132/3196/2303/4838/5566/6615/3691/1969/9314/657/3688/6886/4087/23275/3207/3690/659/2294/3673/2116/7403/5573/2260/23135/57669/64321/6911/5076/8516/29072/2263/90/3624/4086/4088/7474/57045/8646/3675/7481/79971/6926/652
## GO:0050688 4321/3559/6772/10859/330/9447/51191/3600/7353/23586/7128/3434/79132/10875/83737/63906/60489/4277/3593/6397/200316/708/89870/10758/64771/80149/26057/55666/1660/3553/54476/10084/55601/329/10269/2074/5495/6895/26146/54765/7187/10475/9698/3594/79594/8780/51561/7105/10077/79671/23369/5094/29108/26007/57506/54941/29997/5654
## GO:0002292 8767/3458/942/1880/30009/4063/3965/3569/5971/54542/3593/3558/6693/3662/941/80149/3606/6363/5734/10892/7292/3718/3146/51176/8809/2475/3142/602/51043/50943/114548/301/64218/26253/6774/3566/4092/3594/149041/51561/6095/10538/538/9655/6778/5914/4602/604/5590/4179/7248/6097/2625
## GO:0016239 8767/3162/664/11040/3091/10133/2773/5305/8517/51100/51322/79837/6885/3565/23367/57154/6829/10558/7957/9517/29110/5049/8396/10013/3064/9927/5899/9531/22930/10392/7405/23274/54832/8408/7249/10241/65018/23411/5071/154/11140/5595/10206/5563/55187/665/3791/8678/7248/79443/26353/1634/57535
## GO:1900076 2888/51237/1019/5588/4690/5771/2101/8651/9971/5058/6714/5579/5970/896/51094/5770/8615/3553/5781/2660/6198/2887/3630/51043/197/64710/2931/2844/4976/183/2822/55022/2771/23235/51763/7249/8473/5580/23411/4641/5562/23189/5791/490/5295/5590/114882/10580/55198/4023/3952/5167/3667
## GO:0048259 3024/341/5336/867/3208/22943/409/7422/9829/6850/345/1950/5054/8898/1785/23513/1814/382/55681/7018/4289/6363/1813/5291/6457/7448/64854/1948/8976/3565/6386/2332/6366/6456/6401/5879/23208/9463/567/54550/26585/284/8301/1742/302/967/9892/23011/29978/23237/718/9026/23607/4983/3690/636/22848/1815/8650/3077/5538/10188/6311/26119/4043/9779/3092/54806/10211/1601/408/9094/26045/4908/1191/9863/6424
## GO:1903825 8140/366/6536/6535/55117/6541/11254/117247/9123/55144/6510/81034/6573/6566/9056/10165/23657/79751/1468/1374/10991/6520/23204/55238/6507/208/64849/5997/9057/6539/2348/57084/58526/6534/6519/23539/54896/56301/6533/6512/6511/3766/207/26266/5999/54716/57030/4923/10630/9962/5565/23169/1376/183/5663/11136/6545/6506/2350/11230/9194/9152/9016/788/11046/31/81539/6509/8501/51422/80131/7057/10550/8660/5563/6561/27347/8604/159963/8864/477/6542/23428/32/6505/4036
## GO:1905039 8140/366/6536/6535/55117/6541/11254/117247/9123/55144/6510/81034/6573/6566/9056/10165/23657/79751/1468/1374/10991/6520/23204/55238/6507/208/64849/5997/9057/6539/2348/57084/58526/6534/6519/23539/54896/56301/6533/6512/6511/3766/207/26266/5999/54716/57030/4923/10630/9962/5565/23169/1376/183/5663/11136/6545/6506/2350/11230/9194/9152/9016/788/11046/31/81539/6509/8501/51422/80131/7057/10550/8660/5563/6561/27347/8604/159963/8864/477/6542/23428/32/6505/4036
## GO:0030071 991/1062/10403/9787/4085/81620/7272/9212/9319/891/990/5347/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/55795/56984/7175/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0046164 3613/51302/57016/6783/219/54363/221/131/27284/4504/8898/2820/1056/79644/1593/2710/949/6822/6718/9784/9108/3612/8578/8867/4923/5728/56623/6652/51763/217/10858/222/6799/2712/8644/6817/1581
## GO:0051205 3002/1869/2810/637/7027/7534/8266/7159/1956/4118/10018/5366/10971/7533/5534/7029/581/79568/7917/7529/841/5599/439/7531/572/9697/7161/7485/6449/23368/5533/4836/8626/7157/596/64112/65055
## GO:0072523 4521/4860/11332/25939/10591/100/191/215/3251/22978/5142/7498/272/27115/2876/5151/55270/5152/5143/53343/3704/5144/3094/51816/283927/4907/10846/38/23417/5141/1806/8654/22875/79873/8622/5136/5138
## GO:1903214 9141/5880/10055/57602/7332/6721/10456/55486/7855/1459/51100/59286/55294/9530/10075/3998/7323/9776/2931/79778/27429/8314/93974/89781/9520/10425/55823/9531/65018/54741/5562/5071/23409/665/6720/3305/22885
## GO:0001502 8092/2251/176/1432/7067/4617/7476/56914/2249/649/6662/5310/1301/4920/1490/1280/4256/658
## GO:0002544 6279/10563/3620/6352/136/7412/8876/191/7128/7124/4049/1588/6356/3586/9536/50943/7057/2697
## GO:0010738 4282/9049/2492/9472/8165/4157/9495/799/10846/5141/3375/154/10268/84059/9867/56892/9590/9370
## GO:0032495 55765/8767/7128/26191/64170/4792/3663/1432/64127/5970/23641/51510/9181/7431/10392/22861/55914/182
## GO:0034104 952/7128/1445/5027/3569/613/6422/796/3635/51208/177/26585/183/3375/29/1471/4982/9607
## GO:0034643 7345/3091/8936/10128/55201/6683/8409/7314/23095/4976/55288/89941/9638/4131/66008/4747/55638/4137
## GO:0045061 1236/915/1794/5788/916/940/9474/8456/5771/6722/972/7535/3707/3714/6794/6469/2737/2625
## GO:0046599 10733/6491/23636/672/55835/79959/10432/4869/4591/9525/152185/55755/8850/2648/56890/27243/85459/10769
## GO:0047497 7345/3091/8936/10128/55201/6683/8409/7314/23095/4976/55288/89941/9638/4131/66008/4747/55638/4137
## GO:0048670 10507/3475/7473/6696/23566/8153/9798/1946/1382/23105/2258/1630/5802/9706/627/23111/2045/4035
## GO:0050860 2633/26191/5795/79037/5771/11006/5621/10385/11126/5777/1845/634/5074/7430/56940/3958/7070/1997
## GO:0051546 3868/4318/55612/5467/1839/382/2475/3849/8754/54566/3037/83481/56413/10982/5728/9448/2252/9922
## GO:0060716 79805/50814/5594/10959/7855/9394/7472/3516/207/3726/3491/79893/5333/3280/23493/22846/23462/58495
## GO:0070987 5984/5111/5982/7353/5983/7415/6119/5985/6117/7311/55666/6118/6233/7316/7314/25898/5429/5981
## GO:0089718 6510/23657/6520/23204/6507/5997/6511/3766/5999/4923/183/5663/6506/9152/10550/8864/477/6505
## GO:0090201 409/10105/2395/551/5716/2876/51025/51499/8996/207/4000/4976/25994/598/5071/3082/1191/3479
## GO:1902074 3208/5603/10247/3297/55328/3309/5309/80149/5251/7564/1616/3184/7040/1906/8074/2693/3178/4747
## GO:0006112 4609/2642/5499/7262/2673/5834/4160/80183/4504/5255/7360/2932/155/2778/5236/2992/8445/208/2997/5500/5501/51052/5443/2475/2645/2538/23178/3630/207/5260/5504/2931/5509/2103/5257/5506/55022/5741/8908/2998/51763/2548/5256/51422/2632/9945/178/5261/8660/3643/5836/27232/5837/221395/3953/10580/51294/9365/8864/5502/5167/3667/3572/3479/5507
## GO:0002066 5080/4821/639/7298/57103/56913/4647/3091/688/2932/23513/79955/3172/1026/6009/6608/5915/6647/654/6098/4825/9368/653/2931/286451/1021/572/5048/3642/9575/9750/11078/5170/5916/10427/2260/406/5991/579/51092/5914/7474/3202/25803/652
## GO:0031102 133/1719/706/6696/7143/5604/11202/2896/2043/2348/4099/5792/335/81565/9860/8428/3717/9314/23162/8578/3725/5728/9448/1605/3670/4916/8408/1495/22876/4548/5802/7070/29956/4131/3371/3082/596/5396/4747/2281/83700/5764/4035/347/3913
## GO:0051310 55143/1062/10403/81930/81620/3833/891/9928/11004/10615/1063/84722/54908/23212/23636/55166/5119/81929/3835/8379/3837/27183/79998/79003/9183/51510/8766/25978/3192/9525/91782/57132/29082/1778/152185/4292/79643/8697/27243/51112/8452/2669/8678/10464/4926
## GO:0120192 1894/51599/865/9076/7124/1365/79977/92140/50848/56288/402/4867/7855/6722/5584/5566/50855/6615/1739/79983/1969/79778/81/84612/10015/64398/6093/261734/6904/6801/9475/4301/5583/5872/4641/7082/100506658/324/6591/7481/10207/3551/2697/7122/10266
## GO:0098813 55143/991/9493/1062/10403/23397/9787/51203/10460/4751/4085/81930/81620/7272/64151/9212/9319/9055/3833/891/24137/9928/11004/990/5347/29127/701/11130/10615/1894/79075/9700/2237/9918/699/1063/26271/23310/10051/83990/5885/84722/54908/10592/8260/55706/23212/23636/3619/10096/55166/1663/7517/5901/7273/80218/5119/5889/11044/25906/29781/81929/3834/9126/10097/56159/201254/3835/8379/11144/3837/57820/23137/11331/10734/4361/84861/27183/10300/7756/4342/23626/55795/79998/56984/79003/23244/9183/7917/55294/51510/998/9113/10664/7175/996/8766/9555/6795/8243/25978/5518/9985/3192/23383/79892/9184/22933/23172/9525/6421/26993/7013/91782/57132/29082/51451/51143/10735/56154/55719/10270/1778/23063/152185/6847/23353/27030/642636/55755/4292/79643/55781/8697/192670/472/56155/8658/546/3550/25836/10388/5925/27243/1499/51112/7320/57082/8452/2669/23047/1843/324/10609/8678/10464/100130958/4926/23126
## GO:0001964 2173/1812/2906/3756/1496/1814/6531/2895/1813/2902/57680/2741/2903/135/5728/1855/4204/9378/5179/5071/23621/3736/4861/7349/2743
## GO:0006482 23028/8284/23210/3720/8242/51400/5927/22992/80853/5253/7404/10765/23133/79697/9682/55818/54784/3299/7403/23135/23081/7320/79831/55693/23030
## GO:0006972 6870/6513/9076/551/231/23308/2547/8531/2056/3954/5602/5020/59341/9181/7520/5585/79085/5170/10367/7098/6558/6750/80303/358/3176
## GO:0007628 7345/1812/7545/409/2395/55636/2043/2636/1813/6323/28996/51286/10269/3766/1600/2741/1949/27429/4864/1497/6900/55074/7200/57731/2743
## GO:0008214 23028/8284/23210/3720/8242/51400/5927/22992/80853/5253/7404/10765/23133/79697/9682/55818/54784/3299/7403/23135/23081/7320/79831/55693/23030
## GO:0010165 641/4436/3735/57817/675/1785/8091/6422/836/1026/79184/2074/64710/1161/3981/7518/7516/472/7158/25836/2067/7157/595/7056/2625
## GO:0018146 9435/10331/6484/9334/176/79369/10678/6482/8703/8704/2683/8702/23563/10402/9331/8534/6483/11046/11041/4060/5549/2331/11081/4958/4969
## GO:0021884 2253/1812/55079/166614/57282/2637/6091/6656/22809/8828/10371/1813/27185/55558/7314/5881/27089/6900/26468/538/2263/9693/7474/9353/8829
## GO:0031116 84722/4733/22919/5058/402/8851/79998/5879/859/6188/4233/23332/51199/6249/55755/4204/2242/1639/4131/1027/10142/89795/4926/23116/4137
## GO:0032770 1001/2643/1719/3458/5447/7124/2208/348/3091/4883/949/2185/3553/6271/7014/2668/3845/7015/3630/207/11315/186/10392/9722/3357
## GO:0033032 6352/1029/1234/2207/4282/23657/64127/6868/3579/2056/5291/7067/5293/3665/3707/10296/5728/2693/23601/23411/350/596/4208/4254/9370
## GO:0034367 7941/5320/9388/336/341/345/348/5360/949/30814/1071/337/335/4353/183/9619/55937/338/3990/3931/4018/23461/4023/213/185
## GO:0034368 7941/5320/9388/336/341/345/348/5360/949/30814/1071/337/335/4353/183/9619/55937/338/3990/3931/4018/23461/4023/213/185
## GO:0034369 7941/5320/9388/336/341/345/348/5360/949/30814/1071/337/335/4353/183/9619/55937/338/3990/3931/4018/23461/4023/213/185
## GO:0042634 10855/1001/55612/51083/79152/7480/7124/8456/6608/7015/4089/8717/9575/27121/79574/406/5187/25836/1499/7474/11005/7042/4926/4488/10468
## GO:0048265 2643/5024/706/8989/1312/5582/4914/774/6530/6869/22953/5979/824/64856/5649/1392/1910/6335/7057/5025/1621/2701/6863/7349/7060
## GO:0060292 952/114/1812/10288/2895/134/6722/2185/3745/55607/1816/869/2332/9463/177/22941/23237/5728/57406/2890/22986/9162/6812/10769/4137
## GO:0085029 3549/60484/2824/4851/3037/7040/183/3036/84168/7148/538/6662/55512/4015/5768/4088/28984/79875/1278/30008/10516/2621/11117/4629/4239
## GO:0090200 4318/578/9141/637/664/10059/10105/5329/8739/10018/5366/10962/581/27141/2852/572/26355/8398/65018/56947/29108/7157/8743/64112/638
## GO:1902932 3973/3458/5449/5031/5447/7124/5724/117/51744/4142/3553/654/5028/4923/3269/2852/5741/9619/5562/6622/5745/2246/1581/6720/54361
## GO:0008037 5551/22948/64581/1236/2515/27242/8547/10576/55079/1794/259197/575/2525/923/2219/7534/1951/5047/7783/56253/2048/7852/23210/26047/8748/6677/8440/7203/4478/10574/10575/2047/4240/7417/2049/836/26998/6091/921/8851/2043/49/10371/949/1954/6363/10666/9898/7275/226/8747/55118/2683/7287/10694/2220/6366/10332/928/1826/11085/975/1739/4897/1949/3911/351/57142/148229/79820/11055/4978/30835/6900/23705/3958/56130/55790/53340/57828/2909/1268/5175/5016/948/4685/4692/8829/2042/51294/64221/9037/1047/3305/1462/81035/63923
## GO:0048844 639/2296/2253/2138/7422/6659/5629/348/4192/55636/8928/64220/3949/6722/2348/27329/1948/2303/4851/6495/3198/6899/4854/3516/56999/7046/657/8131/4092/10000/659/2294/9464/6909/10427/338/2022/57178/4638/3280/2702/4763/23493/3248/94/182/5311/23462/7042/221395/5396/8829/1281/7481/5159/4035/1311/652/4036/7021
## GO:0001756 5100/2296/8557/22943/10683/6862/5591/10959/6422/3975/10006/4617/1044/2303/5362/23242/27023/3955/3516/2033/1045/657/56983/54475/23509/9968/79728/5075/4089/9573/5663/4618/2294/9839/2648/7403/8854/4824/7516/57669/6911/472/6939/7157/4088/4920/7474/4222/10512/4223
## GO:0032729 3595/51311/914/8767/1054/3329/916/9466/3394/3965/10148/929/26191/7124/4049/8772/5142/10125/54440/3593/3558/729230/3592/51571/7294/51744/6556/7855/3606/57824/7292/11126/7099/3553/8809/3265/3113/602/5144/59067/3115/3594/51561/25/51284/3670/7098/29108/3554/7474
## GO:0003176 7133/2626/6091/4091/4851/4772/6615/3516/7040/7132/26508/6093/9475/659/7291/4846/6662/5925/23493/182/1942/6586/9353/6591/11117/2006/652/2625
## GO:0006356 55506/5440/5457/468/4141/1663/5469/23160/6597/25926/55127/4691/11137/64768/2475/9555/10269/55011/9451/6598/2316/23133/7343/2064/6872/9013/5441/29997
## GO:0016486 59272/27344/25825/1522/5126/5046/5122/5045/1636/7252/9159/3972/2028/1081/10159/6447/5972/9718/1215/1889/2488/4803/56605/1511/4311/5125/1359/10699
## GO:0046685 3162/467/5603/10105/1244/468/7415/3297/9446/1026/80149/7390/5936/1616/51593/1371/79752/6047/1654/5728/3178/2729/1543/2872/5176/4747/210/4982
## GO:0060674 8061/79805/3696/50814/5604/9021/5594/10959/7855/64783/9394/7472/3516/207/3726/6692/3491/79893/5333/7026/3280/5310/8289/23493/22846/5311/23462/58495
## GO:0086019 23630/9631/6262/1525/10021/3741/6331/6336/3762/781/2316/5318/6324/8913/10052/287/3781/3760/783/3784/2702/845/29098/54795/775/55800/2697/776
## GO:1904031 891/1164/990/1163/8941/84722/5629/1956/5716/904/3326/6714/8851/1026/6868/896/894/5155/22924/207/8812/4331/905/5310/28984/1027/595/5311
## GO:0015682 7037/50617/533/9296/525/7036/1785/9114/22853/7018/55240/528/23545/51606/57192/529/523/526/1213/527/155066/537/51382/9550/10312/9230/8992/3077/392/535/534
## GO:0033572 7037/50617/533/9296/525/7036/1785/9114/22853/7018/55240/528/23545/51606/57192/529/523/526/1213/527/155066/537/51382/9550/10312/9230/8992/3077/392/535/534
## GO:0043114 133/613/5795/7525/6714/11156/3579/566/6865/59341/6869/284/7040/634/3269/135/624/56998/4879/23576/2909/91807/5139/7010/29/4881/9353/5138/9590/7349/10266
## GO:0045911 7037/4436/79915/7468/5788/30009/940/8914/142/7454/958/3558/10097/55183/7292/22976/3565/56979/2521/23529/7040/8741/55135/64210/54537/7486/4292/7158/6778/7320/51149
## GO:0046636 10859/864/11314/30009/6375/3549/3965/865/83737/54542/8651/3558/384/80149/7292/3718/3146/3142/51043/50943/301/135/3566/4092/149041/3077/9655/604/57045/6469/2737
## GO:0051293 10403/51203/4085/5080/5347/9700/29899/1058/54908/79648/3834/3837/4342/55968/4627/9183/6993/9181/23332/5048/1778/3064/55755/4134/137886/1639/126353/10253/54820/10252/4926
## GO:0051973 4751/9212/4609/10576/5588/5594/10575/79977/3326/65057/8550/3181/4931/3320/25849/10728/26585/3184/7520/9314/5609/55135/5073/11284/140609/25913/8658/5595/1499/4216/79618
## GO:0072512 7037/50617/533/9296/525/7036/1785/9114/22853/7018/55240/528/23545/51606/57192/529/523/526/1213/527/155066/537/51382/9550/10312/9230/8992/3077/392/535/534
## GO:0090313 3753/3208/3689/1020/57214/54471/5058/8851/6845/208/5621/3745/2534/3265/784/3684/11261/2664/2064/2039/10519/288/9270/51763/2040/4641/56947/51024/23255/9847/5174
## GO:1905332 239/7422/4192/9500/3975/6608/3687/7472/2668/2475/6495/51548/26585/7040/186/6239/7849/183/3217/55366/25/3976/6662/5076/54806/1499/7482/54361/367/652/2625
## GO:0006383 5435/5440/9328/672/10622/10625/55290/5437/8178/9533/1050/661/2971/2976/9329/10621/6619/10178/2475/4665/27297/55703/9330/7629/51728/23379/10623/5434/57680/7702/6618/10302/2975/6738/6908/55718/2972/6621/79664/25850/5441/367
## GO:0021545 4821/5459/3737/5457/2048/401/1959/2047/55636/4914/1141/6507/8828/10371/55558/6495/3198/6899/3211/10312/6152/104/3200/3670/9935/5076/4762/6405/2065/3280/7020/89797/8929/1499/3232/6299/3213/3212/1902/8829/5205/2737
## GO:0045744 3576/333/6352/133/5341/3925/3351/100/409/1785/1814/5997/156/1813/4988/6754/23322/7529/43847/54550/4233/5999/493/29978/4987/1759/636/2771/2696/10636/23295/6622/1407/154/408/9501/187/6003/5064/2868/3357/9737
## GO:0046579 4067/9289/10125/5923/4914/6091/2885/1399/2056/7409/3707/6993/4851/3265/335/3845/2889/5879/1435/3717/3084/79933/11214/10982/4853/8036/9448/6464/2150/26053/8859/408/8660/2149/9162/4803/1902/2057/1281/4254/5159/3479
## GO:0051058 8437/3925/23636/9938/2048/50861/23616/10617/7077/79109/22821/2889/5516/148/27/4233/3688/253980/23607/9750/5922/8216/7126/9927/286205/54922/8711/2909/10395/23189/5921/4763/94134/8452/604/3675/7042/57493/9353/201163/4653/2203
## GO:0035051 983/891/1482/7412/8557/2539/22943/409/57817/7422/4624/9474/5629/1956/7273/7490/1525/6862/655/27101/5594/88/2626/10038/811/4878/5058/4205/5997/6722/5915/8324/2348/9472/1948/6256/6910/8048/4851/2475/5978/2627/5465/10269/27302/3192/26585/3516/25776/148/859/9150/7040/3084/4000/3688/5999/5156/186/4633/2931/1906/2852/4089/11214/7528/183/10818/90410/54345/650/5308/9464/7291/3670/5300/9794/6909/2648/23135/10611/70/64321/10529/23363/6546/91807/3280/90/8289/6443/5595/6416/23493/6548/5914/182/26011/4628/7248/10252/7042/4208/50507/8470/6444/5159/10512/80206/7049/6926/3479/4629/652
## GO:1901568 55711/6319/6576/80142/2171/6916/11332/1557/239/873/215/9200/79071/4282/6850/246/7097/2180/5743/4363/551/525/1573/9373/2182/92086/5444/64834/5321/242/51144/5019/1544/23305/201562/65985/2876/10394/9261/747/23205/241/10728/2194/972/552/4051/3553/5730/8694/9536/1545/1646/51/50487/47/1559/81616/7132/622/5740/2639/1906/59344/4048/2938/5319/2879/2687/8824/5446/9524/7306/51703/1579/4258/1800/5538/5445/240/79611/31/38/11343/5322/1558/23411/5742/5595/64064/3248/1543/79966/2181/8644/27306/10464/8605/3155/6785/7923/1907/2166/60481/56898/3295/84869/247/66002/4056/54898/2053/3158/11283
## GO:0042303 3868/10855/9355/1001/55612/51083/3066/2304/3889/8549/22943/79152/50814/3229/7480/7124/3884/5743/4644/1956/8456/25928/6654/1775/60529/8323/5970/6635/6608/3065/26133/10913/8861/7053/6615/7015/11166/10269/3516/8643/1896/3911/4089/8717/91/5154/54345/9575/3890/55366/27121/7976/80199/79574/4038/60485/3488/538/6662/10848/406/5187/2263/9620/8626/25836/3624/2068/4763/1499/2252/7474/596/11005/7042/9855/6469/4926/4488/3861/10468/26018/9079
## GO:0042633 3868/10855/9355/1001/55612/51083/3066/2304/3889/8549/22943/79152/50814/3229/7480/7124/3884/5743/4644/1956/8456/25928/6654/1775/60529/8323/5970/6635/6608/3065/26133/10913/8861/7053/6615/7015/11166/10269/3516/8643/1896/3911/4089/8717/91/5154/54345/9575/3890/55366/27121/7976/80199/79574/4038/60485/3488/538/6662/10848/406/5187/2263/9620/8626/25836/3624/2068/4763/1499/2252/7474/596/11005/7042/9855/6469/4926/4488/3861/10468/26018/9079
## GO:0010951 27074/332/9232/4102/4318/7980/2537/1475/6590/6317/5266/5973/2810/8530/2597/5271/274/3697/5447/409/1469/9806/1476/939/51377/7422/27344/5329/1378/1410/5743/551/25816/27290/4504/5054/10049/3428/1032/259/23204/10816/3933/6714/26998/6690/5272/6197/5275/684/2876/65264/8837/8740/5858/55795/7448/6195/9097/64780/5062/1447/2168/4193/51176/10653/5045/3698/10542/7429/50859/9491/90199/1474/79886/58189/51499/55011/331/8996/10047/8301/207/960/5894/80196/9314/11315/1285/54475/9709/6692/7531/351/1654/22900/135/334/718/10935/5037/7076/27018/56925/55031/5896/7035/1800/3700/5607/5076/7057/8434/6622/2/1992/26952/1718/5269/408/3476/4057/3699/3082/1470/831/10406/1472/6478/4804/4018/11005/4803/6694/7078/5627/727/1293/80760/6695/358/10879/51232/4671/6653/1294/2621/1471/3730/58503/1473/7021
## GO:0001708 5080/4821/54845/8543/5449/30012/22943/2138/5457/474/63978/10736/3170/6656/10215/54738/2139/23040/6608/8324/5727/4838/6657/6495/2128/50937/4825/6928/6899/3236/3516/8643/10660/657/3688/8022/4633/3226/23770/5454/5663/3207/54345/2736/2116/429/3670/2260/4916/6662/64321/6911/5076/1499/26011/79923/8829/2247/6469/2737/367/3169
## GO:0010833 4751/9212/5888/22948/908/10576/2072/5588/142/54433/7203/10574/55505/5594/10575/64858/3326/55651/6714/65057/55226/8550/3181/26272/23381/4361/3320/10728/7014/10694/54552/3183/7015/3192/7520/5609/51750/54386/545/55135/7013/5073/80351/11284/3178/23293/79991/26277/140609/5981/472/25913/8658/5394/10111/5595/1499/4216/80169/79618/167227/3104
## GO:0032204 4751/9212/22948/4609/908/10576/2072/5588/4683/142/7203/10574/5594/10575/5371/6714/65057/55226/8550/5514/3181/26272/23381/4361/79035/7014/10694/54552/3183/51548/5976/3192/3184/7520/5609/51750/54386/545/7874/7013/5073/7515/80351/11284/3178/23293/79991/26277/140609/472/25913/8658/546/5394/10111/2067/5595/1499/4216/80169/79618/167227
## GO:0032677 51311/914/336/2867/1991/5788/7096/23586/2219/3929/3965/671/929/26191/945/7124/7097/8772/5054/10333/1649/51744/64127/4615/10394/3586/7099/3553/602/8915/9314/1401/27202/11315/7114/58509/301/965/2658/25865/8692/56957/51284/7100/7098/307/8737/5607/29108/2150/57506/408/7474/2149/23005/51157/9370
## GO:0006687 7368/6489/8708/3696/79152/4759/9334/7915/57733/5476/8128/2760/64781/51046/53947/81849/5660/54982/581/10825/8703/2720/51228/6610/29906/1390/8706/410/7903/9514/80772/23344/2583/9215/8869/8705/9331/412/3074/3815/1201/55512/5580/4758/6609/5562/8707/2581/2717/427/3073/7357
## GO:0030858 5080/8842/55506/2296/1594/2810/10626/7480/474/5469/8456/100133941/3596/5054/8202/3975/5727/7421/654/2668/2302/9555/4825/8643/9294/694/2658/7849/6820/572/9839/5583/2116/3976/6662/5076/5991/118/54806/1499/94/5624/7716/1003/4926/58495/55273/247/7122/6424/9370/652
## GO:0006953 5004/8792/445/9332/1051/5359/3929/57817/7124/3569/5743/3570/7036/5345/3552/5068/5265/2056/325/23780/3553/50616/3630/2147/1401/197/6774/2335/8600/3077/3700/59307/2157/1268/1910/12/4153/3240/5733
## GO:0043370 8767/864/3458/942/30009/3965/9308/865/3071/54542/54440/3593/8651/3558/3662/941/80149/3606/6363/10892/7292/3718/3146/3142/51043/50943/114548/301/3566/4092/3594/149041/51561/9655/5914/4602/604/5590/2625
## GO:0051291 6241/2643/23590/330/8357/1104/6406/11051/9076/56922/23636/10801/8290/5536/7186/6240/1143/1365/2193/1142/1141/10320/2885/3987/9818/2644/3710/2547/3848/8878/3046/11052/3416/972/58525/2902/7529/3265/2904/2782/3747/1135/329/53371/8915/79869/4144/302/6281/23023/114897/2741/8717/9127/5023/57107/64375/1258/3728/3858/5092/222663/64376/989/4038/6814/8737/1495/6407/5310/22871/5562/3611/55752/7139/27243/144404/51719/5564/1291/3643/3043/5590/7248/5311/7923/1278/1277/7227/64087/84869/1292/6857/9863/2743/9370
## GO:0070972 23480/3638/6262/6731/29927/6227/6132/8733/6142/3309/6202/6223/64714/7311/11231/6734/9349/23471/6181/6156/6217/11224/6206/6194/6728/6235/6230/6175/6158/6201/6233/6747/6187/6729/6170/23645/6143/6134/6176/6188/6192/65992/6193/6129/6147/6222/6208/6210/6232/6204/2901/57142/6726/6229/6228/29082/6167/6155/6128/6152/6171/6161/6133/6160/6141/9218/4736/9697/6191/6234/6169/10956/6146/6165/6203/6122/6136/6209/6727/8729/25873/6164/6231/6205/6135/22930/6168/287/7095/6157/6138/9919/9045/6159/375056/81854
## GO:0017015 6664/55612/50515/63976/2805/1030/23625/10755/11171/3175/1785/4052/3326/64750/3309/6868/7311/9719/25805/2348/4221/4091/28996/2734/6386/9480/2201/6233/7316/57154/9110/3622/7471/58533/859/7314/7046/22938/7040/2033/7080/4089/4087/6497/5494/4092/51341/858/5170/51592/23592/56937/5300/10273/2022/4015/23411/64081/8516/7057/1601/7157/4088/6794/1387/1028/4435/23089/3675/8425/26036/27122/7048/753/201163/10370/65997/1149/11117/857/7041/5654/7043/6935/2200/7049/54829
## GO:0036473 9833/5163/51765/8876/7295/5831/10280/142/468/8013/3091/23657/5034/10131/5371/2626/10333/4841/9283/57707/25793/2876/5660/27035/2861/3586/6647/7099/2534/55294/5625/5978/4170/1545/5151/11235/3630/2021/7471/8996/4217/8428/10533/207/3717/4233/4780/11315/10494/6421/27429/5074/5598/10013/55074/8737/9529/2309/65018/5580/23411/5071/10314/3315/8321/10550/1499/3082/596/4314/7248
## GO:0006119 983/891/6472/1537/9377/4436/30968/637/57017/4726/4704/10105/215/29796/7386/2395/4725/518/4723/9551/506/7415/1349/4708/4700/509/54539/1351/1329/4719/4697/4702/516/4694/1340/4712/4722/4711/522/1337/7381/4710/7384/10476/514/1327/9167/1738/4706/51085/515/4717/51079/10632/4720/4709/498/1352/4713/1345/4701/2631/79736/29103/4729/4714/6901/4696/11315/89/521/539/27089/513/6834/10975/7385/1355/27109/374291/387/79085/4707/4204/4698/4656/26471/1350/23479/201626/538/4695/4705/51103/517/65018/4724/6622
## GO:0006458 51182/30001/3329/10576/10808/56886/2280/27000/10728/3337/972/9403/27348/1861/7266/2580/54788/79982/957/573/2281
## GO:0007413 27242/55079/1951/2048/2049/836/8851/2043/10371/1954/55118/4897/57142/6900/2909/1268/4685/4692/8829/2042/9037
## GO:0007530 6715/6943/1761/2254/7490/6736/190/2796/668/3645/6658/6662/2516/5729/268/7536/3643/4216/10370/54361/367
## GO:0009404 875/6770/1644/4357/1544/2326/1545/54905/4780/1491/23474/5446/2327/400/58472/5066/6667/7054/1543/29104/22977
## GO:0032703 3902/2633/9454/5788/30009/6375/7128/11326/6441/9971/5621/5987/10524/50943/7430/7538/9455/51564/947/89795/2625
## GO:0050926 3576/9048/7422/1233/566/177/846/3603/285/3673/4916/7857/2150/7424/2155/4088/3791/1901/1012/4908/2152
## GO:0051570 1789/3009/23028/1786/672/3720/55183/5079/59335/55011/6598/4000/55818/4204/10782/23081/23411/546/57343/4602/55693
## GO:0060143 4283/963/575/10938/7305/1432/4654/8740/8754/9518/8536/2323/81501/3566/824/9750/8521/10211/54209/10411/30846
## GO:0060445 2253/7124/655/7052/10371/5361/80004/284217/3911/5154/1605/2260/23129/2263/2252/3082/55727/8829/6591/6469/10512
## GO:0071157 8326/1019/11200/4282/811/3326/2124/7023/9349/51085/4193/2852/8812/2301/79366/1025/8929/595/4194/6419/10795
## GO:0071677 6278/3627/7941/6352/1230/5641/7124/5054/729230/57402/2358/199/6346/3146/177/7040/10488/158747/3958/6387/80310
## GO:0106030 27242/55079/1951/2048/2049/836/8851/2043/10371/1954/55118/4897/57142/6900/2909/1268/4685/4692/8829/2042/9037
## GO:0006206 7298/1807/1890/7372/6240/5594/790/51727/2475/978/1806/1373/4329
## GO:0006705 3284/654/5978/1585/1181/653/3283/1584/650/8912/27122/1589/54361
## GO:0006883 483/478/476/186/183/6546/6548/482/481/64699/477/23327/730
## GO:0007320 6406/10876/552/5020/43847/6869/5270/5023/92/6532/5021/8528/6863
## GO:0007494 445/1956/2300/5967/5009/6608/1600/5979/2294/8854/1910/1373/7474
## GO:0008212 3284/654/5978/1585/1181/653/3283/1584/650/8912/27122/1589/54361
## GO:0009635 3934/6770/5603/3297/80149/1616/383/27429/3178/7054/1543/4747/210
## GO:0009650 2237/2072/2876/2071/4157/847/2073/51150/2067/2068/51435/7507/4239
## GO:0010745 4792/10062/1071/5465/19/1401/3690/7376/9619/3685/5468/23461/9370
## GO:0014842 5467/2047/79647/8837/6495/2660/147912/284/94104/3717/6774/4656/2247
## GO:0020027 3276/3091/51327/3623/212/8861/27102/2038/9314/847/3624/118/3263
## GO:0032530 6624/688/54825/53841/11344/7429/5337/10083/7430/5420/5909/5357/5205
## GO:0032536 7504/54825/53841/3792/7477/11344/7476/7429/10083/7430/6900/5357/4747
## GO:0033008 136/2207/3596/4878/6845/8723/8673/3566/2624/2268/56848/9846/6812
## GO:0033127 891/8986/3553/9555/2332/26993/10270/7291/472/1025/5595/7320/9252
## GO:0034374 7941/5320/336/348/30814/1071/4353/183/9619/338/3990/4018/185
## GO:0035723 3561/3600/3601/3560/2885/920/3718/6774/3716/6464/6777/23236/6776
## GO:0035745 91543/30009/6375/3569/3565/975/383/114548/3440/3456/163486/5590/2625
## GO:0042790 55506/4141/1663/6597/25926/4691/11137/64768/2475/9555/55011/6598/29997
## GO:0043306 136/2207/3596/4878/6845/8723/8673/3566/2624/2268/56848/9846/6812
## GO:0045073 3162/1991/7124/3569/566/3553/177/351/148022/7098/59307/1958/7474
## GO:0045820 54541/57103/5465/5207/51548/10891/89/6774/863/4656/26471/9759/2203
## GO:0047484 5743/23209/8531/2056/3954/59341/9181/572/624/79085/10367/80303/5243
## GO:0048291 4436/79915/3329/5788/9466/30009/940/958/3558/22976/3565/50943/4292
## GO:0048308 983/7534/7443/5604/5605/5594/11235/6811/2801/10494/1263/8729/5595
## GO:0048313 983/7534/7443/5604/5605/5594/11235/6811/2801/10494/1263/8729/5595
## GO:0051938 23657/23204/6507/6511/3766/57030/4923/5663/6506/10550/8864/477/6505
## GO:0060347 1482/2280/54583/6722/9510/27302/859/23493/7010/23462/5950/58495/7049
## GO:0060397 4067/2688/1442/5770/5617/3718/3717/2689/6774/6777/6776/5618/2690
## GO:0071350 3561/3600/3601/3560/2885/920/3718/6774/3716/6464/6777/23236/6776
## GO:0071352 3559/3561/6850/988/5771/3558/3560/2185/3718/3716/6464/6777/6776
## GO:0071872 6770/6715/6262/5142/5313/5566/5144/22933/493/6622/3784/6548/9370
## GO:0097152 8200/2120/3091/655/5456/6928/6899/7849/6662/5076/6469/4488/4487
## GO:1901836 55506/4141/1663/6597/25926/4691/11137/64768/2475/9555/55011/6598/29997
## GO:1902894 5467/4781/11006/4775/5970/6722/5155/5465/7528/6662/9759/4776/652
## GO:0051341 1001/56833/2643/3001/1719/1535/3458/1594/5447/2395/7124/2208/348/3091/1956/3596/4504/1785/2672/64127/4883/11331/10063/949/3320/10434/2773/2185/8976/3553/7421/1269/6271/7014/1816/2668/3845/7015/5018/3630/55312/859/207/27/11315/186/51070/1906/4790/8074/493/183/92/10013/23334/25/4846/2771/10392/6697/538/9973/9722/23576/1268/9104/51295/6622/5071/56848/23409/23564/2717/3240/1907/3952/857/8639/185/3357
## GO:0046605 4751/3832/1111/6790/10733/6491/899/23636/7517/26973/672/55835/5119/64793/79648/79959/3834/10432/4869/7514/22809/55968/51510/4591/25978/11190/57787/22994/9525/57132/10015/9475/152185/4682/55755/8850/2648/137886/56890/27243/1499/85459/79884/10769
## GO:0070830 1894/865/9076/7124/1365/79977/92140/50848/56288/402/4867/7855/6722/5584/5566/50855/6615/1739/79983/1969/79778/81/84612/10015/64398/6093/261734/6904/6801/9475/4301/5583/5872/4641/7082/100506658/324/6591/7481/10207/3551/2697/7122/10266
## GO:1903078 3458/7124/2048/1956/245812/6769/382/6809/391/8878/3799/5584/8766/7429/1739/1969/207/5581/3688/9495/5780/2852/7430/10519/5583/5170/3958/27237/11079/6711/6810/5295/10268/5357/22841/2181/29098/54209/3675/2042/10580/25999/4035/10551
## GO:0050850 50852/5026/6351/5031/5024/916/100/6850/7124/375346/9446/920/5725/4761/10523/7535/9472/9001/57158/22953/3094/3084/63928/3064/10345/10519/2065/6548/54209/5025/29995/5311/1012/2946/23261/3479
## GO:0051339 9568/136/3208/2395/8811/729230/1394/8484/4883/6786/7077/4552/2773/53836/79849/1816/2912/5957/9495/11315/56413/2979/2978/2587/2981/4846/2771/23479/2913/1910/4763/10142/84059/775/53829/776
## GO:1904646 7412/5641/3383/1020/142/2213/10018/2932/10333/10135/2358/2043/773/5621/3676/7099/2534/781/837/177/58533/478/351/5663/782/599/2309/154/23621/2915/948/54209/4804/3480/4035/3479
## GO:0048634 983/891/1482/1063/2253/2539/22943/409/6285/57817/2254/7480/3776/5594/9734/2047/10038/26263/1432/79647/5058/3720/5292/5997/8531/6665/8324/9472/1948/7472/6910/4851/51176/2475/2627/5465/4534/6495/2660/50937/27302/10413/6899/26585/3516/859/26281/7046/57158/9150/7040/22933/3084/3156/657/5600/5999/89/1655/2931/1906/4089/7528/2248/10818/5728/10869/650/7161/1385/51460/7291/5300/6909/4656/2648/60485/2260/8737/55692/64321/6474/56603/4015/4762/7093/406/2065/2263/5562/9975/9759/10211/1499/10521/23493/4088/2735/4211/596/4208/2817/7048/5950/2247/6469/57496/23414/2697/7049/3479/652/2066
## GO:0032436 6790/5347/7336/9978/7415/10221/10134/55212/2932/5716/26263/5886/1050/8078/6613/23640/55743/4193/7341/207/22933/4780/65992/28951/2931/9817/9709/1263/1453/6872/29978/5663/55070/25898/1855/4092/3300/6449/1452/5601/863/8554/10273/1454/2729/9655/5071/1601/29997/90865/10769/5988/857/1191
## GO:0019217 5163/341/2171/3638/215/8013/5165/345/3692/5743/551/672/1374/57761/208/55066/10062/51094/337/552/51085/3553/2168/58526/54576/2475/5465/2170/10891/80025/3630/207/634/54704/10613/11277/79602/5565/9926/2693/2695/7291/7376/22937/23038/23417/1268/51422/23411/51141/9104/4779/6622/11160/23409/8660/5563/37/5164/225/33/10464/2954/1581/60481/5468/5166/55198/6720/857/32/3667/9370
## GO:0001942 10855/9355/1001/55612/51083/3066/2304/8549/22943/50814/3229/7480/7124/4644/1956/8456/25928/6654/1775/60529/8323/5970/6608/3065/26133/10913/8861/7053/6615/11166/10269/3516/1896/3911/4089/8717/91/5154/54345/3890/55366/27121/7976/80199/4038/60485/3488/538/6662/2263/9620/8626/3624/2068/4763/1499/2252/7474/596/11005/7042/6469/4926/4488/10468/9079
## GO:0035773 114/56943/5127/3091/1080/25874/3170/9971/5019/7351/3799/65220/5798/7074/7447/3651/2850/5879/2044/9324/5581/5894/3156/51714/1946/9230/572/2822/9448/8398/6810/26056/1392/5532/51092/8609/408/22841/9024/5799/6717/9854/54795/2281/8938/4035/55638/55107/150
## GO:2000243 6790/8372/3066/1761/7490/5724/708/64750/6714/5017/1618/10184/10371/55231/6736/5020/55124/56979/5028/3955/22933/2741/91/10519/8912/85360/6662/56729/64848/23236/1910/2516/3624/9759/1499/8654/7320/3643/7474/5021/10370/6469/4488/3625/4487/23414/54361/367/79846
## GO:0050709 7850/2633/51311/91543/10859/56943/336/27242/3418/9466/5552/7128/26191/7124/348/2213/6376/55024/9734/5371/10333/6422/1814/5211/384/9971/79651/84830/80149/7351/10062/3033/1813/5734/353500/3745/3586/10385/5987/4988/3553/5781/9515/7447/5978/335/23208/5715/3630/10961/353514/80223/284/9727/4544/50943/3156/27202/7114/114548/80772/301/6992/22900/7430/7009/933/2693/9448/55366/8620/2335/1815/3440/307/26525/26056/55691/2150/4345/5071/1992/5530/23409/8609/28984/64285/947/2149/26297/2281/90865/23005/1149/3625/4856/6720/2621/2615/3667/150/114899
## GO:0006720 1381/7804/4597/23590/6770/6715/336/6017/27235/24/57016/2224/1557/8608/50700/5467/8813/345/348/5947/1956/5406/131/79644/6121/1109/231/5949/1544/64220/10577/5264/1798/59342/337/4598/54576/8694/1545/128/335/1645/10170/64577/1559/51109/53630/1565/1208/9249/27429/6010/1382/9227/57107/611/6382/375790/9672/55937/8854/338/220/10654/1576/56603/1571/7276/6383/1392/2719/2262/7054/55825/6385/9453/224/54884/1543/8644/5919/2817/5950/216/4023/1592/3339/4035/8228/2239/4036
## GO:0006195 4521/4860/11332/25939/10591/100/215/3251/22978/5142/7498/272/27115/2876/5151/55270/5152/5143/53343/3704/5144/3094/283927/4907/10846/38/23417/5141/8654/79873/8622/5136/5138
## GO:0021575 9928/6712/64211/23287/1020/5604/5629/3975/3309/2895/6608/5781/8861/7476/869/7471/1600/5270/8443/23017/2736/4983/25/7515/8925/6095/538/25861/79934/10395/3280/22891/2735
## GO:0030204 50515/9806/1464/1463/10675/63827/411/55501/54928/23553/9469/79586/54480/50859/22856/23169/3074/29940/55454/56548/3423/55790/64131/3425/64132/3373/3073/79625/7358/1462/51363/633/1634
## GO:0032784 2146/51224/5457/57805/79577/80237/8178/8563/27336/11198/9025/3150/8861/9400/23476/2074/3192/6827/6829/10102/25920/23168/80349/9984/9646/10771/6830/54623/2962/55837/6469/643376/6919
## GO:0071548 1978/445/5111/6770/6715/54541/1789/3383/1244/9076/11335/1956/5724/1977/2056/8837/7023/2660/7040/383/186/1906/64754/2693/842/2309/1392/9101/1373/2908/2308/5176/358
## GO:2000008 919/2207/8514/2824/7124/7305/1950/88/3326/382/6809/9777/26154/9860/859/8301/207/1861/9230/8729/10347/3077/6810/26056/54741/4130/1499/627/29098/23327/23171/23245/2066
## GO:0055013 983/891/1482/8557/2539/57817/7422/4624/9474/5629/7273/1525/88/2626/10038/4878/5058/4205/5997/6722/9472/8048/2475/5465/10269/27302/3192/148/859/9150/4000/5999/5156/186/4633/2931/1906/4089/11214/7528/183/5300/9794/10611/70/10529/23363/6546/91807/6443/6416/23493/4628/8470/6444/5159/80206/6926/3479/4629/652
## GO:0033559 9415/6319/80142/2950/2171/6916/1557/239/873/215/79071/4282/246/2180/5743/551/525/1573/9373/8560/64834/5321/242/1544/10005/747/241/10728/972/552/4051/3995/3553/5730/9536/1545/1646/51/1559/7132/5740/1906/59344/2938/8824/1579/6342/240/26063/11343/1558/23411/5742/30/5595/3248/1543/79966/225/8644/27306/10464/8605/6785/1907/2166/60481/3295/2946/247/66002/4056/54898/2053/11283
## GO:0001958 2296/1749/1305/54928/2778/249/3636/654/4665/4209/4664/4323/4325/55790/55512/7010/860/5191/1280/2261/4208/1277/8817/652
## GO:0003081 59272/1535/5345/1814/1522/27035/1636/6869/81285/186/2028/183/10159/387/5972/1215/2150/2702/2149/1511/4311/5125/185/1359
## GO:0006298 9156/5111/10535/4436/2956/5424/5425/6119/6996/3978/5582/10714/6117/3146/6118/11277/7161/27030/25/254394/4292/29072/4437/57804
## GO:0010714 3066/3549/409/8710/265/5345/51430/2147/7040/55323/7431/3673/2022/28984/4602/90993/2149/1490/5159/57332/54361/7043/7349/652
## GO:0036075 2296/1749/1305/54928/2778/249/3636/654/4665/4209/4664/4323/4325/55790/55512/7010/860/5191/1280/2261/4208/1277/8817/652
## GO:0036336 6352/56833/1230/1236/1880/1234/3965/7852/7226/729230/3592/811/708/3579/6363/5294/3146/3577/6366/7984/2059/1235/54795/2621
## GO:0050858 2633/11314/26191/9404/2213/5795/79037/5771/11006/5621/10385/11126/5777/1845/634/23228/5074/7430/56940/933/3958/7070/2874/1997
## GO:1901661 23590/27235/57016/57017/51805/874/1109/231/10327/1645/1646/29914/3156/56997/57107/51004/8574/79934/9946/10229/8644/57834/51117/84869
## GO:2000191 8792/2058/4282/6850/5027/208/522/3553/6754/5608/5020/2170/207/186/4923/1906/8398/22925/8600/1579/7057/9611/8660/5025
## GO:2001025 51083/23204/1141/1813/2668/6865/5865/2021/5074/135/183/5663/10013/2587/4986/1815/8737/56729/2309/65018/1392/4297/4887/6387
## GO:0044264 313/10331/2642/5499/7262/5834/9334/80183/5255/7360/2932/79369/5236/10678/2992/8445/208/2997/5500/2131/2132/5501/5443/2475/2645/2538/9348/23178/3630/3037/207/5260/5504/2931/5509/2103/5257/3036/5506/5741/55454/8908/2998/51763/2548/55790/5256/51422/2632/178/5261/8660/3643/5836/3340/27232/5837/3953/10580/51294/8864/5502/5167/3667/3572/3479/8972/5507
## GO:1900407 2643/51765/1719/8876/7295/5831/215/142/468/8013/7124/3091/23657/655/5034/10131/2626/10333/4841/9283/57707/25793/2876/5660/27035/79109/2861/3586/6647/7099/2534/55294/5978/4170/5151/3630/2021/7471/8996/10533/207/4233/4780/11315/6421/27429/5074/5598/10013/23334/55074/8737/9529/2309/65018/23411/9104/5071/10314/3315/8321/1499/3082/948/4314/7248/10516/2530
## GO:0000731 51514/9636/9768/5984/5111/5982/5424/7353/5983/9100/9246/5425/7415/6119/5985/1032/10714/6117/5426/7311/55666/7706/6118/6233/7316/5422/7314/11277/25898/56158/6847/7486/51455/5980/5429/22890/5981/23411/56897/57804/11201
## GO:0001706 4318/4324/3689/22943/79577/8091/3975/3281/1284/7448/3676/4838/2627/6657/6928/3678/4323/4087/3914/23168/2335/9646/64321/29072/54623/4317/3624/1499/1291/1301/3685/79923/3912/1295/1290/4313/3693/1294/1289/3909/3679
## GO:0002931 1978/7345/57103/10525/10105/5027/3099/6376/9131/55328/24145/8878/5608/5978/10891/1435/8996/4217/815/22953/846/23172/1436/9475/23017/1938/10519/842/10273/23417/65018/7157/1958/596/79625/54209/5025/8864/857/2697/1524
## GO:0014009 6664/6663/1869/4067/430/3418/706/4771/6659/7124/3569/4049/6376/5501/2185/5584/3553/2119/4851/2475/7015/1435/1436/23376/6497/116/5324/374/1938/1385/5583/9921/5179/3280/23405/29956/4602/3953/90865/5764/1191
## GO:0036465 57706/10059/1020/9829/9373/23513/382/6855/60/7476/6456/6804/23208/23191/821/6620/57030/6455/8867/71/1609/5868/1861/6093/2580/1759/5338/8674/23285/5533/5864/8546/6517/26052/22871/5532/6622/6453/23396/2259/5874
## GO:0045540 1717/4597/6319/6713/3422/2224/5447/79071/348/5901/3157/6721/3837/4800/2194/6647/4598/4802/2222/4047/10613/3156/8720/51360/9619/22937/4801/338/31/10654/6667/5562/7108/11160/9453/2246/6309/1581/6720/32/23541
## GO:0086009 23630/3757/3753/483/4878/3741/6331/9472/3762/9948/781/784/10269/1739/476/859/2316/3759/7531/6324/6640/30819/3764/287/3781/9722/9992/3760/3784/2702/845/482/10142/3752/481/477/23327/857/2697/776/23704
## GO:0106118 1717/4597/6319/6713/3422/2224/5447/79071/348/5901/3157/6721/3837/4800/2194/6647/4598/4802/2222/4047/10613/3156/8720/51360/9619/22937/4801/338/31/10654/6667/5562/7108/11160/9453/2246/6309/1581/6720/32/23541
## GO:1905517 6352/56833/6347/26228/3735/1652/4282/51192/1240/6376/79902/4192/728/1588/6441/729230/719/1432/79647/2185/566/928/59341/2660/975/1435/4323/3958/1910/7057/4345/5595/4920/54209/5025/5919/1907/727/11117/79148/1524
## GO:0007157 7412/3383/1088/923/1000/1525/5068/57863/2895/3683/1002/5818/869/6401/3678/7369/30835/11141/23705/1048/8763/5789/22871/22859/6403/8642/79633/214/347902/4680
## GO:0007603 6247/5146/24/2792/23173/23746/1259/9397/5145/2986/2779/79823/6011/5148/2782/51109/2979/10988/2767/6010/2339/1258/2978/6295/4836/5475/3000/2776/5158/2868
## GO:0050775 7804/10059/8997/84079/6792/10097/2043/6845/4076/7074/1627/23316/5063/56965/3706/1523/9820/816/23011/10458/4976/5048/11141/5649/5789/23363/3611/29882/80823/65981
## GO:0060323 1749/7473/22943/3549/29123/23648/64220/5781/5083/6899/7040/2033/8879/5156/4621/6497/25976/10159/59338/22930/6237/25836/84159/444/1277/4313/83716/4487/7043/7122
## GO:0061077 9601/30001/10576/9141/5479/2289/10808/26973/10131/2288/5481/10728/3337/972/1676/27348/1861/7266/2580/54788/3300/64175/6449/79982/5824/3315/120526/126393/573/1191
## GO:0071402 3689/2207/6850/348/3157/26291/10333/6721/4615/84830/6868/3949/7099/928/975/968/19/207/846/3688/148022/4864/9619/55512/9655/375056/948/5468/1012/4023
## GO:0001779 639/5788/3600/10125/6927/9760/3398/5293/7301/10461/2323/6670/22890/6777/11334/558/2621
## GO:0007221 9787/6772/64783/4851/4854/3516/22938/2033/55534/26508/9794/8850/4855/23129/5087/1387/23286
## GO:0007271 116372/348/1137/1728/1141/43/6865/1131/57053/6869/135/1136/5913/1140/3908/8292/6863
## GO:0007597 2160/708/2161/462/2811/2814/2147/2158/2815/3818/2157/3827/350/2/710/5547/7450
## GO:0009309 4953/15/6611/1644/6723/54498/6303/79814/438/10394/4946/196743/4947/6799/3067/51686/7166
## GO:0010107 3757/483/10021/610/3762/1739/478/476/3759/486/10060/3764/9992/3760/482/481/477
## GO:0010888 7124/3569/5771/4792/10062/5465/51099/19/1401/3690/7376/9619/57104/3685/114882/5468/3952
## GO:0032288 7368/7097/8898/23114/928/8443/64398/9896/287/3611/8506/200576/2068/23405/23136/26011/2817
## GO:0033005 136/2207/64109/8013/3596/4878/6845/10666/8723/8673/3566/2624/5819/2268/56848/9846/6812
## GO:0034063 2886/11273/9908/1965/55239/10146/51657/1654/6228/1778/636/23369/6311/5562/5563/1153/4137
## GO:0036303 2296/7422/5629/93/2303/5784/1969/10630/54345/659/2324/5310/5532/7424/22846/94/3964
## GO:0042789 468/3091/5469/728/1649/6722/2316/405/6774/7024/54345/2301/4656/22890/64321/4005/6720
## GO:0044320 890/8013/4504/51094/2645/2244/8074/6774/5728/55022/8195/23411/3953/7357/3952/585/3625
## GO:0046641 8767/5788/916/6375/940/3965/10148/3593/729230/3606/7292/7535/1604/3133/975/51561/7048
## GO:0060749 8792/7422/3091/1950/3398/11331/27023/374/2294/8600/595/3202/8835/2099/367/7166/2066
## GO:0061377 8792/7422/3091/1950/3398/11331/27023/374/2294/8600/595/3202/8835/2099/367/7166/2066
## GO:0070633 51458/5031/7439/1525/1080/57127/65010/5030/1437/1906/9962/2822/10768/1910/6558/358/3708
## GO:0070932 2005/3066/9734/3065/51547/4287/51548/22933/6421/79885/10013/5187/23411/10014/9759/51564/8864
## GO:0070977 10507/6261/2688/26585/387/650/51360/5741/64131/7059/4057/2261/8642/3952/79633/5364/3479
## GO:0071371 890/3973/6770/2730/5447/7490/3157/2492/4851/2627/10891/6528/1946/7849/26012/2729/3624
## GO:1901739 3627/4283/963/575/10938/1432/4654/8837/8740/9518/2323/3566/824/9750/4656/10211/30846
## GO:1902176 8876/3091/10131/4841/2876/3630/8996/207/4780/11315/27429/5598/9529/65018/23411/5071/3315
## GO:0045742 4318/867/23636/5329/7039/5149/356/1950/6654/9148/9125/2069/134/6868/55294/9001/5148/207/2852/183/9026/116985/3092/1796/5753/150/10551
## GO:0061036 8200/5447/4192/202018/5970/654/6660/27302/2658/649/3491/3207/650/659/6662/51222/4086/4088/4017/860/94/7474/8817/7704/658/2737/652
## GO:1901976 10403/4085/81620/891/55159/11200/5629/7517/57805/25906/60561/8563/5514/26272/55795/6118/7175/8451/10116/79621/51451/51143/55755/9984/1407/1843/54465
## GO:1902230 79915/637/23028/4282/57805/1032/80237/54929/972/6615/22954/3622/51499/960/64844/7178/6880/55031/598/23411/51616/596/6591/57007/6387/1191/4582
## GO:0001707 7296/2296/7473/22943/2138/4771/8013/6862/655/10736/9421/8091/89870/2139/6722/2132/3196/2303/4838/5566/6615/3691/1969/9314/657/3688/6886/4087/23275/3207/3690/659/2294/3673/2116/7403/5573/2260/23135/57669/64321/6911/5076/8516/2263/90/3624/4086/4088/7474/57045/8646/3675/7481/79971/652
## GO:0019674 23475/952/5214/3101/26330/4860/8564/2821/57103/8942/7167/2597/5230/2023/5223/4190/5315/5743/3099/7415/3607/55328/2820/9390/2027/5211/10135/4191/5313/229/83440/65220/226/230/2645/5213/23057/2026/5740/683/3098/89/669/4907/23498/54956/54981/27231/55739/5224/4837/7157/55191/8604/2819/23171
## GO:0043407 7345/6317/4067/2950/11314/1852/26191/23636/348/3301/54900/5795/655/152559/6422/1849/63904/11072/5997/2873/11221/11329/5770/3553/5777/10114/5518/171392/859/1845/3156/5999/10019/5998/64853/51562/5515/8692/23624/51763/1850/10636/5580/6609/200734/2874/4763/1843/80279/1848/6653/11213/857/1846/9370/652
## GO:0015909 26279/5320/2058/215/4282/6850/2180/348/1374/5321/1814/3933/208/522/30814/1813/80763/2168/6754/58526/1636/28965/50487/6198/2170/81579/207/4923/5565/1376/123/5319/624/8398/22925/1815/11000/788/31/51422/7057/5825/8660/5563/2181/948/11001/64600/5468/32/2167
## GO:0015914 336/341/24/3783/10650/23250/9600/5027/345/348/4363/23760/5360/3949/949/10577/26207/1071/337/51228/51054/58488/9885/26154/335/23200/5306/51499/19/55754/80772/10079/950/4547/57194/10347/9619/23120/10396/5580/114884/51761/374868/57205/10087/114882/9854/5243/5244/5205/161291
## GO:0031060 1789/3009/23028/1786/2641/672/9757/2672/3720/5081/55183/5079/59335/22823/22976/4524/10664/9555/64324/63925/26097/23476/55011/6598/94104/8726/22938/4000/55818/4089/23168/54904/80349/4204/9646/54880/6830/10782/8473/4297/23081/23411/54623/546/26053/57343/1499/4602/55693/5252/2625
## GO:0045670 1230/10859/1051/3458/5457/7124/9770/7305/2101/3593/11006/6422/2778/760/3635/51208/7099/55294/3565/2475/171392/3605/1435/6988/537/7189/10766/4853/5458/7030/51561/814/1385/8600/7098/9935/7071/4286/10401/4763/1499/4057/5295/54209/10272/2488/2353/2200/9607/284266/10234
## GO:0046128 8833/262/4830/4860/353/55034/100/191/4507/58478/3251/5901/9414/55669/4354/1716/272/8573/51074/4552/2773/3614/132/9567/27304/1740/2987/4833/79631/1739/9054/23433/10201/10243/4338/51816/4976/10400/387/4907/51715/55/29922/51292/5729/22875/79873/3615/4337/4832/8382
## GO:1905710 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/10105/7159/4504/10018/5366/2932/10971/7533/23593/5534/7029/581/2139/1670/7529/841/79680/5599/54978/28978/1386/6687/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/55288/8626/89941/7157/7755/6548/596/64112
## GO:2000378 57103/664/2539/706/215/9474/613/1410/3091/3099/672/4504/10131/140885/54/26574/23408/55532/80149/7416/8837/3586/2534/3630/22933/8570/5740/11315/493/6774/1497/9475/10013/387/5446/5076/65018/7020/9104/5071/7157/2717/3240/596/947/225/4314/8678/23410/857/6571
## GO:0007009 10397/51411/85377/5788/5359/274/92154/79152/215/745/5027/7852/1785/23418/8291/208/9788/53947/57047/63982/5660/27035/6521/29763/4627/6647/51100/8976/8048/488/6456/23208/859/207/23207/55113/10458/64398/29082/2054/54874/27230/11252/5728/6708/288/858/10347/6711/5864/287/5580/80115/79628/23136/10211/225/4628/7042/2934/8436/26509/7357/79633/857/1289/1191/30846/367/57088
## GO:1903844 6664/55612/50515/63976/2805/1030/23625/10755/11171/3175/1785/4052/3326/64750/3309/6868/7311/9719/8837/25805/2348/4221/4091/28996/2734/6386/9480/2201/6233/7316/57154/9110/3622/7471/58533/859/7314/7046/22938/7040/2033/7080/4089/4087/6497/5494/4092/51341/858/5170/51592/23592/56937/5300/10273/2022/4015/23411/64081/8516/7057/1601/7157/4088/6794/1387/1028/4435/23089/3675/8425/26036/27122/7048/753/201163/10370/65997/1149/11117/857/7041/5654/7043/6935/2200/7049/54829
## GO:0043038 7453/2617/8565/6897/2058/16/3735/3376/4141/833/55278/5464/55157/283459/2193/7965/7407/1615/9521/51067/79731/9255/4677/27068/55699/23395/6301/10667/5188/5917/80222/10352/3035/5859/23438/57038/51520/55152
## GO:0061912 8767/57103/9474/8878/10133/26100/7879/57154/55626/10193/10558/9517/27429/29110/10013/3064/9927/9531/10392/23274/54832/7249/10241/65018/5071/154/11140/23001/5595/7157/55187/440738/3964/8678/54463/26249/22863/26353
## GO:1902099 991/1062/10403/9787/4085/81620/7272/9212/9319/891/990/5347/9700/1063/26271/5885/54908/7517/25906/8379/84861/7756/4342/55795/56984/7175/51451/51143/55755/55781/8697/472/56155/3550/5925/8452/1843/324
## GO:0045637 9636/29909/3149/1230/6772/4609/10859/4830/1051/54892/8357/4067/3458/3148/5588/865/3276/5457/8013/7124/8772/3692/3091/5469/9770/3071/7305/4778/3059/51621/10221/5771/2101/4792/3674/2551/5578/3593/79577/3623/11006/6422/60682/1432/9757/2778/192669/760/6688/3398/5579/2124/920/3635/10456/26523/64783/2113/3065/677/51208/325/2185/2811/972/4352/3665/3707/7099/3313/55294/8085/3565/51176/2475/841/8861/7564/8451/1441/5929/23112/171392/3605/9398/567/1435/10193/6988/7040/2033/634/537/23543/7189/6886/1437/5196/7066/2623/405/91/3020/6774/1021/81501/4850/92/3725/10766/4853/7538/9070/5458/7030/2624/51561/9739/814/10519/80349/1385/3958/8600/3976/5916/56998/8850/7098/26013/22985/9646/9935/8737/7071/2309/192670/6777/2242/4015/4297/3218/4286/54623/7057/3624/3204/5925/10401/4763/1499/4057/5295/1387/3567/5914/182/4211/4920/54997/54209/10272/3202/4212/2488/4208/2353/10398/54681/85477/4254/7704/2200/9607/284266/9370/10234/25893
## GO:0048284 983/6890/11151/578/30968/8877/664/10059/6891/54927/29091/84079/80183/10228/811/55669/8291/8447/6845/208/9554/581/27183/3799/54809/2773/8615/6892/4218/594855/8411/25978/7879/6804/55647/6811/662/301/302/79363/2901/4976/9392/55022/79594/9882/27072/9927/858/55823/4033/8674/114088/5864/6810/10493/54332/56947/51024/6622/5071/9341/56112/23339/51479/6843/23176/9847/6812/80208/6857/10451
## GO:0055006 983/891/1482/8557/2539/57817/7422/4624/9474/5629/7273/1525/88/2626/10038/4878/5058/4205/5997/6722/9472/8048/4851/2475/5465/10269/27302/3192/148/859/9150/4000/5999/5156/186/4633/2931/1906/4089/11214/7528/183/5300/9794/10611/70/10529/23363/6546/91807/6443/6416/23493/182/4628/10252/8470/6444/5159/80206/7049/6926/3479/4629/652
## GO:0090559 3002/55353/8326/1869/2810/578/292/10449/637/664/7027/7534/10105/7159/3099/9414/4504/10018/5366/2932/50848/10971/7533/23593/5534/7029/1267/581/2139/1670/6993/7529/2475/841/79680/5599/54978/28978/8996/815/1386/6687/2931/7531/10015/6774/572/93974/9026/79594/7161/23368/5533/4836/55288/54922/598/8626/89941/7157/7755/6548/596/64112/57493
## GO:0031123 891/55110/10212/79650/7884/4116/3028/6626/11051/6427/9775/1477/580/55149/26986/3297/4686/79577/11044/904/23318/2926/9785/8563/7307/6428/6832/6741/60528/23144/81608/1479/1478/677/11052/10898/65109/10978/22916/11338/6426/10921/6429/10250/25888/57187/51362/26097/10914/6432/51728/84271/79869/22794/6829/79670/80145/79228/351/64506/79727/55520/5073/9984/9646/23283/8189/64852/10768/6431/1025/9295/54623/9939/114034/6430/9877/8106/51585/9810/22849
## GO:1904659 11182/28999/6515/2171/1812/6513/5467/8013/7124/3099/8218/7525/6518/6927/26291/1432/57761/5473/5579/2688/6524/4205/208/6527/5584/3553/5781/673/7015/6523/51548/56606/2887/3630/207/4780/23433/5906/79602/2931/6272/1906/10776/6514/5319/718/6506/55022/5458/8682/2695/29988/5741/51763/6814/6526/6517/79058/2719/51422/26060/8660/81031/11132/5295/3643/7248/6041/114882/1389/9847/10580/25999/55198/3952/6253/1909/5167/3667/3479/9370
## GO:0032675 55765/5004/51311/8767/1051/136/1535/64135/3329/10288/7096/9466/2207/23586/3929/409/5603/7128/3965/1445/671/5047/26191/6504/7124/5027/3569/7097/64170/3071/8808/3556/6376/7305/5724/55024/3570/140885/10333/9971/64127/4615/2069/3635/84818/80149/9261/199/7292/1660/3586/7099/3553/5781/3146/2302/5777/59341/23208/177/3605/9181/353514/50943/4155/27202/7189/961/351/148022/6774/116/824/2693/8692/7291/79671/3670/11027/7098/10392/26525/4317/29108/9655/2150/4345/57506/408/10365/3082/7474/2149/948/54209/4023/90865/7494/2621/11213/26137/7349/114899
## GO:0042278 8833/262/4830/4860/353/55034/100/191/4507/58478/3251/5901/9414/55669/4354/1716/272/8573/51074/4552/2773/3614/28992/132/9567/27304/1740/2987/4833/79631/1739/9054/23433/10201/10243/4338/51816/4976/10400/387/4907/51715/55/29922/51292/5729/22875/79873/3615/221443/4337/4832/8382
## GO:0000768 3627/4283/79805/963/575/51177/10938/7305/3756/1432/4654/4842/8837/8740/4627/928/975/50937/8754/7471/9518/859/6988/8536/577/22904/2323/81501/3566/824/4868/9750/8912/4656/8521/9644/10211/9149/8038/54209/10411/26509/30846
## GO:0030166 50515/1464/1463/10675/63827/2300/176/55501/2131/2132/124583/9469/79586/54480/9348/10090/79690/22856/9953/23169/29940/64377/2135/55454/659/2137/56548/26229/55790/6934/64131/64132/1499/3340/26035/7358/54360/1462/51363/633/658/1634/3479
## GO:0032210 4751/9212/22948/908/10576/5588/7203/10574/5594/10575/6714/65057/55226/8550/26272/23381/7014/10694/54552/3183/3192/7520/5609/545/7013/5073/80351/11284/3178/23293/79991/26277/140609/472/25913/8658/5394/5595/1499/4216/80169/79618/167227
## GO:0043551 1236/4067/930/9021/887/8651/5747/6714/64127/30837/2358/6363/23533/7410/2321/2185/116986/9306/9711/5155/6366/55626/5587/7040/9314/5156/29062/3815/30849/1154/2268/9655/113791/5295/7010/2322/2261/22863/2247/8835/5159/3667/10451
## GO:0050994 336/341/1019/215/7124/345/1374/26291/3417/134/208/3949/949/5294/7067/27329/337/3553/2168/5140/2475/5465/6343/3630/51099/207/5581/2822/13/7291/23417/1268/5580/64784/5562/57104/8660/225/5919/1149/32/3667/150
## GO:0140253 3627/4283/79805/963/575/51177/10938/7305/3756/1432/4654/4842/8837/8740/4627/928/975/50937/8754/7471/9518/859/6988/8536/577/22904/2323/81501/3566/824/4868/9750/8912/4656/8521/9644/10211/9149/8038/54209/10411/26509/30846
## GO:0046324 28999/7124/3099/8218/26291/1432/4205/208/5584/5781/7015/51548/2887/3630/207/4780/23433/5906/79602/2931/10776/5319/6506/55022/5458/8682/5741/6814/79058/2719/51422/26060/8660/11132/5295/3643/6041/114882/1389/9847/10580/55198/3952/6253/5167/3667/3479/9370
## GO:2000401 6278/3627/10563/6364/6352/6347/11240/6351/6354/9466/6375/8772/4478/729230/6693/23143/84830/1399/101/6868/6793/326/199/8740/2185/3676/8976/9943/6366/65125/207/8174/351/387/1398/9750/102/1893/29108/4345/375056/27347/7474/80024/1235/6387/347/9547
## GO:0035725 81831/3775/483/6329/6338/10246/7226/10021/610/2257/1785/6520/8647/1814/7533/40/10786/2745/9033/6559/4842/3799/6327/6331/6336/10568/41/6569/1756/64078/6574/55515/9368/54800/1739/478/476/859/11261/5581/51297/486/57030/81/6324/493/6640/5774/6339/6550/288/357/1815/23315/2040/6543/6546/6335/25769/10050/6326/6575/26504/6548/6337/27347/54997/7402/29098/9187/482/57419/80024/5311/4734/481/54795/6340/477/23327/23171/55800/5348
## GO:0006418 7453/2617/8565/6897/2058/16/3735/3376/4141/833/5464/55157/2193/7965/7407/1615/9521/51067/79731/9255/4677/27068/55699/23395/6301/10667/5917/80222/10352/3035/5859/23438/57038/51520/55152
## GO:0009069 29968/26227/875/6472/2730/5723/23464/4522/58478/10247/81034/10993/2653/570/23657/4357/2618/51074/4552/189/1610/6470/6301/1491/22928/2731/10955/10249/256987/63826/2729/55258/275/1036/51380
## GO:0009311 8708/2525/6513/4759/6484/3906/57733/11181/7841/8128/4125/2760/51046/81849/10825/673/2683/79690/7903/1486/11253/4126/10402/3074/6483/4247/9526/2548/3425/4758/4123/2717/2530/23324/8972
## GO:0017001 80896/5973/57016/6783/5052/219/50506/221/131/27284/4504/55577/2876/6822/8288/337/4353/7001/23530/10935/847/53905/217/222/4025/6622/6799/2878/7173/2098/3043/3240/8644/7837/6817
## GO:0045429 445/3458/3689/3383/5806/7124/5743/1785/10333/3326/3320/199/2185/7099/3553/2475/207/3717/9314/186/1906/148022/183/9722/23576/4317/23564/4088/10365/3643/3043/948/5025/5311/1191
## GO:0050654 50515/9806/1464/1463/10675/63827/411/55501/54928/23553/9469/79586/54480/50859/22856/23169/3074/29940/55454/56548/3423/26229/55790/64131/3425/64132/3373/3073/79625/7358/54360/1462/51363/633/1634
## GO:0061001 7804/10059/8997/1020/10097/8851/2043/9762/1072/55607/4076/7074/54413/1627/23316/5063/3706/816/10458/4976/23237/5048/5728/102/10152/10611/5649/26052/22871/7337/115703/1942/26037/80823/65981
## GO:0006541 26227/1503/440/8833/5471/2673/7915/790/9971/56474/2744/56954/54529/4204/9945/23409/5198/1373/2752/2746
## GO:0006783 706/2395/3145/211/402055/3658/7390/212/1352/200205/1371/2235/93974/4891/1355/54977/7389/4779/5498/210
## GO:0009110 29968/3458/1594/8566/7124/5360/2672/1593/120227/3553/7421/6615/29914/25974/55312/53630/4790/55163/1576/6591
## GO:0010226 58/999/5743/113/811/3398/1050/5313/2185/3981/8893/7518/429/4656/107/4776/1027/6469/3485/2167
## GO:0030813 26330/5208/5210/5027/3091/5209/51085/5207/3630/89/405/2103/3356/5562/957/5563/3643/2819/26137/3479
## GO:0031342 10859/3575/3853/5788/409/3965/6318/2213/3135/3596/3134/3805/3326/5272/3565/3133/634/1398/5532/100507436
## GO:0031639 5230/2023/2160/5054/5345/2161/1522/2243/5328/2266/4241/1361/2244/5270/3818/7057/350/1718/3249/5327
## GO:0032634 27242/64109/3556/3578/64806/3568/7356/8288/51176/5144/50943/114548/23765/3440/55540/9173/5914/5590/90865/2625
## GO:0032656 27242/3965/5047/3556/384/3662/7356/7292/3565/51176/3133/353514/114548/23765/3440/55540/5914/5590/90865/2625
## GO:0042094 3902/942/5788/916/940/5588/64170/3556/6441/3552/3662/920/941/3606/3553/11146/50943/5074/7538/6777
## GO:0044321 890/6770/8013/4504/51094/2645/2244/1906/8074/6774/5728/55022/8195/23411/595/3953/7357/3952/585/3625
## GO:0048714 4821/3066/7097/7852/4192/7133/10215/6009/3065/10419/2475/7161/1605/5803/22891/26011/5468/6469/5764/443
## GO:0050927 3576/9048/7422/1233/566/177/846/3603/3673/4916/7857/2150/7424/2155/4088/3791/1901/1012/4908/2152
## GO:0051197 26330/5208/5210/5027/3091/5209/51085/5207/3630/89/405/2103/3356/5562/957/5563/3643/2819/26137/3479
## GO:0051220 4188/4794/11124/4792/5716/9908/4796/3586/1627/7529/9113/4795/2316/7114/28952/5310/4601/22873/5311/6717
## GO:0051350 9568/3208/8811/729230/8484/4883/4552/2773/53836/79849/2912/9495/56413/2587/2771/2913/1910/10142/84059/53829
## GO:0051457 7295/1020/5905/580/5371/402/25777/23568/602/3192/11315/6672/9913/23353/10210/23515/2516/6500/23345/585
## GO:0072643 9636/914/10859/3965/26191/10125/51744/9971/80149/57824/11126/5987/11119/11118/10312/25/26525/2150/79679/2625
## GO:0140112 3458/10987/8027/27183/5873/11267/6386/8766/7879/9146/9525/7251/10015/23400/6382/55512/5071/6385/27243/947
## GO:1901522 1749/7422/468/3091/4504/5970/4851/4093/3516/2033/10488/4780/4089/650/4090/4086/7157/860/79800/7494
## GO:1903429 6790/9928/53335/51083/5047/4880/51441/2475/5518/9175/6954/22933/5881/4976/5979/6911/1910/4882/596/25893
## GO:0050871 952/7037/3574/4436/79915/1880/7468/5788/30009/100/940/939/4282/6850/3569/51293/3071/3596/7293/958/57162/3558/1141/64127/3635/1026/695/55183/7292/55795/972/7099/22976/3565/975/23529/7040/59067/8741/4323/148022/572/54537/79155/4292/6777/7158/8660/6778/3567/604/596/4208/7494/10451
## GO:0007223 22943/2780/192669/5534/8323/5145/26523/7855/6885/51176/5331/4772/2775/5148/2782/23112/815/5330/51701/7976/192670/6934/23236/5532/5158/5530/1499/2535/8322/4920/7474/7481
## GO:0007520 3627/4283/963/575/51177/10938/3756/1432/4654/4842/8837/8740/4627/928/975/50937/7471/9518/859/577/2323/3566/824/4868/9750/8912/4656/10211/9149/8038/26509/30846
## GO:0042149 7378/440/6513/468/5366/3428/3309/80149/26608/51100/10514/9463/9451/8897/4780/5289/11133/23334/25994/30849/3178/23378/5562/7157/5563/55846/55364/596/8678/22863/7494/27244
## GO:0043277 8685/6347/8547/575/2219/246/23210/7305/7052/4240/949/10062/7301/3146/2220/10461/11277/55113/718/3690/717/10347/7057/5914/558/3685/948/54209/8678/80208/2621/4035
## GO:0071867 333/6770/6715/3066/1812/468/8013/6262/5142/5594/2551/1785/55328/5313/5566/1816/2782/10891/5144/22933/351/493/25/112/5179/6622/5071/3784/5595/6548/3397/9370
## GO:0071869 333/6770/6715/3066/1812/468/8013/6262/5142/5594/2551/1785/55328/5313/5566/1816/2782/10891/5144/22933/351/493/25/112/5179/6622/5071/3784/5595/6548/3397/9370
## GO:0097178 23603/29887/26228/3383/54849/92154/25940/5216/23616/382/391/5217/3636/199/8394/5962/9530/3265/23242/5879/81565/23191/9842/51763/4070/22871/23189/64787/26084/54869/857/51466
## GO:0048260 3024/5336/867/409/7422/6850/1950/5054/1785/55681/7018/6363/1813/7448/8976/3565/2332/6366/6401/9463/567/26585/284/302/967/23011/718/636/3077/5538/26119/9779/3092/54806/1601/408/4908/1191/9863/6424
## GO:0090102 890/4171/2138/2558/3776/3777/5456/53904/2562/5660/2561/793/23322/6495/11020/3198/6899/4976/5048/1855/90410/5754/2624/2736/4916/6662/5076/4762/1856/3280/2535/23493/7474/5816/55084/8642/3249/2487/6935/2625
## GO:0009798 5080/6790/6491/6496/7473/4188/7490/6862/10736/10959/25806/6422/1649/3975/3170/5046/7855/9350/6722/6608/10409/5727/7475/4838/4091/8861/7476/59343/23242/7471/657/4089/4087/9573/26005/51668/6497/55329/10818/80055/5308/6781/80319/6045/7403/54880/57669/6911/4762/2719/2114/50805/54806/1499/23493/4435/7474/10370/6469/79971/6926/652
## GO:0043297 1894/865/9076/7124/1365/79977/92140/50848/56288/402/7414/4867/7855/6722/5584/5566/9948/50855/6615/1739/79983/1969/79778/81/5586/84612/10015/64398/6093/261734/6904/6801/9475/387/4301/5583/5872/1495/4641/7082/9231/100506658/324/6591/7481/10207/3551/2697/7122/10266
## GO:0090181 1717/4597/6319/6713/3422/2224/5447/79071/348/5901/3157/2784/9971/6721/3837/3949/4800/2194/6647/4598/4802/2222/4047/10613/3156/8720/1609/51360/9619/22937/4801/338/31/10654/6667/26119/5562/7108/11160/9453/37/33/2246/6309/1581/64788/6720/32/23541/2053
## GO:0006826 57348/7037/50617/533/9296/525/7036/1785/9114/22853/6556/2512/7018/55240/528/94081/23545/4241/5818/3658/51606/57192/529/523/526/23516/1213/527/567/155066/537/51382/9550/10312/9230/2495/4891/8992/3077/23479/538/9843/392/535/534
## GO:0007019 81930/146909/11004/3925/9793/26586/3796/10300/4281/79929/6683/58526/59341/9181/23332/10013/10519/2258/50810/146057/4131/25876/324/23122/11075/89795/347240/89927/57551
## GO:0010259 1515/8438/5449/4436/2956/1644/4726/2692/1410/3635/11231/3416/29842/10269/11277/1906/27230/6506/7799/8692/7486/472/7054/8626/2516/2067/7157/3952/1311
## GO:0032212 4751/9212/22948/908/10576/5588/7203/10574/5594/10575/65057/8550/26272/10694/7520/5609/545/5073/80351/11284/3178/140609/472/25913/8658/5595/1499/4216/79618
## GO:0071868 333/6770/6715/3066/1812/468/8013/6262/5142/5594/2551/1785/5313/5566/1816/2782/5144/22933/351/493/25/112/6622/5071/3784/5595/6548/3397/9370
## GO:0071870 333/6770/6715/3066/1812/468/8013/6262/5142/5594/2551/1785/5313/5566/1816/2782/5144/22933/351/493/25/112/6622/5071/3784/5595/6548/3397/9370
## GO:1901385 3208/5142/6769/1394/4878/255057/8291/1813/6271/1756/781/2332/784/785/2631/2859/6236/28954/4987/1815/9722/9992/783/30845/10681/2669/79026/2259/6717
## GO:2000403 6278/3627/10563/6364/6352/6351/6354/6375/8772/729230/6693/101/6868/199/8740/2185/3676/9943/6366/65125/8174/351/387/102/29108/27347/7474/6387/9547
## GO:0002507 3620/29851/3559/4067/10288/916/7128/3965/83737/5133/3135/1233/23239/326/3146/3133/2302/7040/50943/1178/64844/7048/11213
## GO:0002691 1991/3383/9466/613/8772/4192/5724/729230/101/5734/3676/6366/177/683/9750/6370/23236/7070/29/3554/83483/6387/80310
## GO:0016577 23028/8284/23210/3720/8242/5927/22992/80853/5253/7404/10765/23133/79697/9682/55818/3299/7403/23135/23081/7320/79831/55693/23030
## GO:0033598 1051/5469/675/5594/6091/3398/11331/2876/581/1969/10765/6239/57142/374/8600/8945/10522/6778/7474/595/3202/2099/2625
## GO:0042044 366/362/7380/551/1080/360/359/361/343/79849/65010/3037/4284/363/1437/1906/8692/51763/10768/1910/6563/358/3708
## GO:0060037 1482/2253/2138/53820/655/2348/5727/5362/6495/6899/653/7046/657/659/3670/4824/3280/90/1889/7042/221395/652/2625
## GO:0060351 3549/5447/4880/9350/5915/871/10498/59341/10269/3207/6781/5916/6662/6474/9321/55512/7059/5914/1280/4322/7048/1277/1311
## GO:0061217 7422/7490/9500/10736/3975/6608/10409/2668/6495/6928/26585/7040/186/7849/183/3217/55366/6662/5076/4070/7482/652/2625
## GO:0071377 445/114/2642/2641/5567/26291/113/5575/5568/109/5566/2740/9340/383/5576/112/5573/115/107/1373/108/5577/5105
## GO:0086010 3757/10021/610/7533/6327/6331/781/859/3759/6324/5774/8913/288/287/6546/783/2702/29098/54795/477/775/55800/776
## GO:0098868 5447/4880/9350/5915/10498/10269/6781/5916/1893/55512/2263/4921/7059/5914/2261/4322/54796/7048/3953/3952/4488/2121/1311
## GO:0006613 6731/29927/6227/6132/6745/6142/6202/6223/7311/11231/6746/6734/9349/23471/6181/6156/6217/11224/6206/6194/6728/6235/6230/6175/6158/6201/6233/6747/6187/6729/6170/6143/6134/6176/6188/6192/6193/6129/6147/6222/6208/6210/6232/6204/6726/6229/6228/6167/6155/6128/6152/6171/6161/6133/6160/6141/4736/9697/6191/6234/6169/6146/6165/6203/6122/6136/6209/6727/25873/6164/6231/6205/6135/6168/7095/6157/6138/9045/6159/81854
## GO:0000460 23246/54512/23481/55759/10200/10171/27340/8602/10438/79707/23517/5394
## GO:0002468 1236/10875/2213/6556/64127/6363/50856/972/6366/968/10392/7057
## GO:0002517 3620/29851/3559/10288/916/83737/3135/23239/326/50943/1178/7048
## GO:0002566 9156/4436/2956/25939/7374/10721/103/8888/5423/57379/27343/27434
## GO:0003084 1535/3291/551/134/552/80763/1585/148/65125/387/554/7026
## GO:0006491 8128/51046/11320/11282/23193/5589/7903/79158/10905/57134/2530/4121
## GO:0019374 7368/8708/79152/7915/57733/5660/8703/9514/5408/1201/8707/2581
## GO:0031115 3925/22919/2288/4133/1859/10382/6904/6622/11075/25999/24139/27124
## GO:0032252 80128/4644/10125/4133/3799/5294/8615/547/10749/3798/23095/55638
## GO:0033197 100/6427/3157/383/847/8678/595/1277/210/2281/5468/3952
## GO:0033605 1141/156/3745/2668/5020/6804/4986/65018/4887/5021/6387/9607
## GO:0034309 654/5978/1585/1181/653/11315/1609/1584/650/8912/27122/54361
## GO:0036005 26228/7097/5771/7099/5153/1435/4486/1436/81501/1796/2241/5138
## GO:0036006 26228/7097/5771/7099/5153/1435/4486/1436/81501/1796/2241/5138
## GO:0038110 3559/3561/6850/5771/3558/3560/2185/3718/3716/6464/6777/6776
## GO:0042340 2588/176/2720/3074/2799/3073/4060/5549/2331/11081/4958/4969
## GO:0042368 3458/1594/7124/2672/1593/120227/3553/7421/6615/4790/1576/6591
## GO:0042416 2643/1644/55737/6531/2861/1610/11315/186/7054/6622/4929/7042
## GO:0043301 3162/11314/3965/613/2213/3134/729230/8832/3598/634/2294/29
## GO:0044650 59272/3383/6441/3326/5818/10332/975/30835/5819/3625/2621/131578
## GO:0045472 1019/80149/4193/23367/5020/10891/3184/4976/1392/7054/4776/5244
## GO:0046112 8833/5471/10606/100/3251/7372/790/51727/5631/2475/6470/1373
## GO:0048302 4436/79915/5788/9466/30009/940/958/3558/22976/3565/50943/4292
## GO:0051481 2805/3777/3741/1813/2969/4544/6263/6546/4088/490/477/4035
## GO:0051608 4067/100/4878/695/6845/6581/8723/8673/1437/1906/116/8773
## GO:0051873 820/1991/2597/6372/566/2147/383/5196/11334/2150/4153/1511
## GO:0060391 9688/142/654/4838/7046/7040/657/4089/1601/11030/7043/652
## GO:0060442 10481/655/6422/3239/6256/10116/10818/4824/2263/6469/2099/652
## GO:0060900 6664/5629/64220/51384/65979/10818/7291/220/5076/7020/8289/7474
## GO:0070486 6280/6279/10507/5880/8013/4478/655/6793/7535/3553/3037/960
## GO:0070493 5341/3925/9002/2811/4233/1609/2150/6622/3248/2149/2151/10788
## GO:0071472 231/2547/677/9990/3954/59341/7520/79085/10367/825/80303/358
## GO:0097284 637/6789/1788/382/6788/5294/8837/3856/598/5925/3875/2934
## GO:0098712 23657/23204/6507/6511/3766/4923/5663/6506/10550/8864/477/6505
## GO:0099640 3799/7014/1740/3192/3798/23162/6421/4130/3315/5813/5874/3800
## GO:1902337 2296/655/7133/581/7421/2303/4851/6928/7132/7849/5076/7042
## GO:2001053 8200/3091/655/5456/6928/6899/7849/6662/5076/6469/4488/4487
## GO:0006471 7453/3458/64761/9933/142/10038/57097/56965/51548/54969/23394/378/22933/143/25976/79668/7515/54956/80351/11284/8850/26277/8658/420/23409/10039
## GO:0007202 3702/5031/8698/1956/728/2769/117/7294/9170/5335/552/10316/6401/148/5330/183/5741/3356/2776/627/1902/553/283/1909/4915/3357
## GO:0016056 6247/2792/23173/23746/1259/9397/5145/2986/2779/79823/6011/5148/2782/51109/2979/10988/6010/2339/1258/2978/6295/4836/5475/3000/5158/2868
## GO:0019098 3066/1812/8997/4543/551/55585/7067/552/2902/1816/5020/7068/4808/8932/23542/5270/351/3074/5728/4986/1620/7054/9759/8648/4861/1621
## GO:0042168 3162/706/2395/3145/211/402055/259/644/3658/7390/212/1352/200205/3163/1371/2235/93974/4891/1355/54977/645/7389/4779/5498/210/56898
## GO:0043372 8767/3458/942/3965/9308/3071/54440/3593/8651/941/3606/6363/10892/7292/3142/51043/50943/114548/301/3566/3594/51561/9655/5914/4602/5590
## GO:0045197 9355/23616/2011/4478/286/2195/5584/998/9948/9368/284217/378/1045/10015/4649/5754/387/4983/2294/6939/3611/55914/7474/9231/23255/7481
## GO:0050690 3932/3055/919/1794/940/1174/164/5610/1175/23513/162/926/920/1173/51606/9844/2534/5062/23633/5879/567/8905/55690/161/10053/163
## GO:0060325 1749/22943/29123/64220/5781/5083/6899/7040/2033/8879/5156/4621/6497/25976/59338/22930/6237/25836/84159/444/1277/4313/83716/4487/7043/7122
## GO:0060338 4321/11274/25939/6059/8772/5771/9641/23513/3326/3455/29883/5770/3665/5781/3093/5777/103/11277/58509/26065/29110/79594/11140/57506/7474/6041
## GO:0090314 3208/3689/1020/57214/54471/5058/8851/208/5621/3745/2534/3265/784/3684/11261/2064/10519/288/9270/2040/4641/56947/51024/23255/9847/5174
## GO:1902991 4067/274/1944/348/2280/836/2043/5621/9001/23163/177/10972/8301/2319/2931/351/6093/9475/10347/23025/54103/1942/6653/1191/10418/3479
## GO:1904837 4609/8607/7088/79577/6597/3065/4221/8085/51176/7091/7015/5929/26108/8295/10524/2033/6932/83439/9070/6934/7090/1499/607/1387/7089/51339
## GO:1903779 59272/1482/483/491/6262/1525/4880/6261/4878/53826/6786/3710/4842/5566/492/53822/488/478/476/2316/5144/5349/486/487/6263/493/183/10060/10345/489/287/10768/6543/3709/6546/30845/1760/2702/490/4882/845/29098/482/4881/844/444/3270/6717/481/54795/2281/7220/477/857/5348/3708/10699
## GO:0032465 9493/79733/9212/9055/10112/9928/990/5347/29127/1894/994/9585/23636/3619/79187/6755/26189/10755/55660/675/28964/25909/10807/1814/80179/1813/27183/643/79998/51289/51100/6683/998/1069/8766/6795/9727/50838/5581/79848/5586/6840/1263/5289/9903/387/30849/5300/7405/55958/598/84440/56155/29072/8502/9371/9738/23503/63971/8452/8678/201163/585/79884
## GO:0001974 2296/2253/578/9474/613/7052/55636/729230/581/93/2303/4193/1636/3273/8996/3516/64114/7040/634/186/183/3200/659/2324/3976/4846/538/94/29/182/558/2034/1621/4208/1471/10512/633
## GO:0002833 5650/8767/1535/3329/4064/4282/79132/56253/5817/5578/3593/25818/3592/89870/2896/23643/26057/10666/10133/11126/654/55601/3273/5225/9450/383/7189/29110/9698/23369/10392/5819/2150/23328/5595/10497/81545
## GO:0030199 2296/1302/79709/176/5033/5345/2303/1545/26585/7046/9508/63894/7148/4320/538/4015/9509/5925/4763/4921/4017/1301/1280/10609/7042/1278/4060/1277/1281/50509/1290/11117/1289/165/2331/7373/1311
## GO:0046580 8437/3925/23636/2048/50861/10617/7077/79109/22821/2889/5516/148/27/4233/3688/253980/9750/5922/8216/7126/9927/286205/54922/8711/2909/10395/23189/5921/4763/8452/604/3675/7042/57493/201163/4653/2203
## GO:0060412 6664/1482/7468/6659/5629/54583/6091/3398/64783/4851/3516/7046/4089/26508/4092/659/4846/60485/3280/2263/90/8321/2702/2535/23493/7474/6586/23462/7042/9353/7048/10370/7481/23414/7049/6926/652
## GO:0072604 51311/64135/9466/23586/3965/5047/26191/7124/3556/55024/84818/80149/199/1660/3553/3146/59341/4843/23208/3605/353514/4155/27202/8692/7291/11027/29108/2150/4345/56848/57506/2149/4023/3952/7494/2621/114899
## GO:0042116 1075/51311/712/3458/9258/26228/8877/3329/8530/3689/5788/7096/3735/3929/671/4282/6850/7124/3569/7097/23210/2213/6376/3596/7305/728/11326/10333/6556/10135/8291/2896/1050/2358/3949/80149/10062/199/3586/566/972/7099/3684/177/11277/5581/22904/351/148022/3566/3725/79155/51284/6095/7098/23729/9173/472/4317/64784/7057/6622/4345/22918/7474/54209/221395/1907/9867/90865/6542/1191/4137
## GO:0006906 6890/11151/8877/6891/29091/84079/80183/10228/811/8291/8447/6845/208/9554/27183/3799/54809/2773/8615/6892/4218/594855/8411/7879/6804/55647/6811/301/302/79363/2901/9392/9882/27072/858/55823/4033/8674/114088/5864/6810/6622/9341/23339/51479/6843/23176/9847/6812/80208/6857/10451
## GO:0003198 2253/4851/6615/3516/7046/4089/26508/2022/90/23493/7042/7048/6591/55273/4488/4487
## GO:0009067 440/4507/4522/58478/8985/5351/5352/51074/4552/2806/55256/54529/635/441024/4548/23743
## GO:0030540 6715/578/1588/55636/3975/64220/581/7301/10461/8626/7474/558/5950/2099/6926/4036
## GO:0031000 1789/3066/779/55151/6262/6261/790/1723/10891/6263/135/6546/5562/845/5468/2946
## GO:0033145 6502/142/5536/5469/8896/5058/55885/8085/10413/11315/6872/23558/51389/79447/367/3169
## GO:0034375 9388/336/341/345/348/5360/949/1071/337/335/9619/55937/3990/3931/23461/213
## GO:0036270 1789/3066/779/55151/6262/6261/790/1723/10891/6263/135/6546/5562/845/5468/2946
## GO:0042401 4953/15/6611/1644/6723/54498/6303/79814/438/10394/4946/196743/4947/3067/51686/7166
## GO:0045187 10874/3737/100/2692/1814/1141/134/1813/5730/4544/1437/135/1392/4887/8863/2691
## GO:0051788 79139/23753/7353/7415/2161/55658/7917/4287/55284/6048/1861/54788/10013/10273/8452/1191
## GO:0051957 59272/8564/5027/551/10991/885/23204/552/4923/6529/135/183/5663/22930/6812/18
## GO:0060438 54768/5604/5594/6722/7477/1896/2294/5916/6662/5595/1499/5914/3202/7048/6469/652
## GO:0060644 2001/1051/3091/3398/208/6608/5727/9113/27023/81606/207/4255/2294/3664/3202/2066
## GO:0061298 3091/6094/25932/93/1282/1545/284217/5156/4041/659/22899/8322/94/8829/5159/4693
## GO:0061323 2138/5292/6910/4851/6495/27302/3516/4089/5308/659/9464/3670/6662/3280/1499/652
## GO:0071280 26/3297/4495/1544/359/5621/1616/4780/351/538/4779/6622/23621/1543/8678/358
## GO:0072673 23603/51177/8936/6714/10006/57175/7429/960/6239/10630/10163/8874/6643/5168/23189/6642
## GO:1990573 3757/483/10021/610/3762/478/476/3759/486/10060/3764/9992/3760/482/481/477
## GO:2000136 2138/5292/6910/4851/6495/27302/3516/4089/659/9464/3670/6662/54903/3280/1499/652
## GO:2000831 51083/1394/2661/5781/654/186/114897/183/2587/5972/4824/56729/1392/1407/185/6863
## GO:0021879 5080/2253/1749/1812/64211/55079/166614/57282/5629/5456/2637/6091/6656/22809/8828/10371/1813/27185/55558/64919/7314/10716/5881/7080/1436/27089/2624/6900/26468/429/538/3280/2263/9693/3624/23314/6299/7474/9353/8829/1746/2066
## GO:0043954 55765/9456/348/2213/91752/8898/55737/382/6832/5621/5657/2534/4524/50855/2904/1740/3801/10882/2017/3706/9463/3630/1739/577/1741/26059/1436/8927/23613/4983/51104/1488/11228/25861/1639/2150/27445/3643/2149/3675/57126/3480
## GO:1901185 5641/867/23636/7039/1956/5795/1950/5771/1839/2885/2069/55658/8027/685/29924/58513/10254/998/6456/7879/58533/1845/9146/27246/5782/7251/2064/84619/5774/5663/8874/374/23624/79643/27131/2060/3672/26469/9655/10253/10252/9052
## GO:0042267 3002/3902/57823/10859/1054/11151/80328/259197/4068/203068/8807/5052/409/3965/10383/6318/56253/5817/10125/3135/164/9437/3134/3593/3592/3805/5272/6845/3606/10666/11126/7409/5873/3133/5777/3916/634/59067/1398/80329/23705/3811/5819/1130/6777/100507436/3952
## GO:0046530 5080/8842/639/92211/5146/4647/3549/2792/23287/7422/2780/6094/23418/6121/2779/4901/4669/5584/4308/25794/6096/7287/57096/1826/1406/55000/7068/10002/6774/261734/54549/1258/90410/10210/1270/6662/7054/403/7070/54806/80184/1735/9742/585/5764/4915/1746
## GO:0072678 6278/3627/10563/6373/3695/6364/6352/6347/1880/3383/9466/6375/8772/2833/4478/729230/6693/23143/1399/101/6868/326/199/5294/8740/5293/7535/3676/9943/6366/65125/351/387/1398/9750/2838/102/1893/29108/4345/6558/27347/7474/1901/1235/6387/347
## GO:0007033 55353/11151/4647/55858/9474/5027/60673/411/4504/83460/55737/2896/53/4669/9554/54982/5305/79065/51100/56270/5861/55014/23256/51510/79837/3257/26100/64422/4534/7879/9776/57154/55647/81876/8897/55626/19/65082/11277/80317/302/51172/51361/6048/8720/23130/5868/64400/29082/5289/23400/29978/5663/8396/3074/90410/79158/950/89781/23673/1200/11152/9637/9927/51715/5899/64601/55062/1201/9531/22930/26471/9896/55054/2548/5538/23241/8408/1130/9140/83452/65018/5287/7942/200576/9638/4124/1203/440026/29911/8678/22863/8100/8406/80208/57535/4693
## GO:0002639 7037/51237/2821/4436/79915/7468/5788/30009/6375/940/3569/3596/7293/958/3558/55183/7292/22976/3565/3133/23529/7040/8741/3566/54537/4292/6810/7158/6778/3567/5950/90865/7494/3263
## GO:0014002 6279/712/1812/7124/3569/1956/4504/728/25825/2896/2358/3949/6608/7099/3553/3845/177/351/4919/135/1021/10100/5454/5663/8893/10319/7431/5354/4763/4920/54209/4035/3913/4137
## GO:0033173 9454/7124/2932/375346/5534/8445/58529/5725/5621/10523/9472/1827/2475/4772/11261/3084/89/493/63928/5598/10519/51778/5533/2274/2065/10725/9455/5532/5530/6548/29995/576/23261/3479
## GO:0072210 6772/6943/2297/7490/10736/55083/3975/6608/2668/5155/26585/5156/186/7849/5979/55366/3976/7827/6662/5076/3280/5310/1499/4435/1958/6299/947/5311/5159/54361/3913/9370/652/7021
## GO:1903053 6624/79709/3569/7133/2264/84830/2113/8837/4241/1361/4851/3037/7040/7132/1803/23187/10630/23332/183/84168/1605/25/6662/6939/5925/4921/4088/28984/23122/2191/1471/11117/4035/165
## GO:2000404 6278/3627/10563/6364/6352/9466/6375/8772/729230/6693/23143/1399/101/6868/326/199/8740/3676/9943/6366/65125/351/387/1398/9750/102/1893/29108/4345/27347/7474/1235/6387/347
## GO:0031124 891/55110/10212/7884/4116/6626/11051/6427/9775/1477/580/55149/26986/3297/4686/79577/904/2926/9785/8563/7307/6428/23144/81608/1479/1478/677/11052/10898/65109/10978/22916/11338/6426/10921/6429/10250/25888/57187/51362/26097/10914/6432/84271/79869/22794/6829/80145/79228/351/64506/9984/9646/23283/8189/64852/10768/6431/1025/9295/54623/9939/6430/9877/8106/51585/9810/22849
## GO:0002181 1978/16/1802/8662/4690/28985/1981/6227/6132/3646/6142/51441/8664/8531/1660/8562/6156/2475/8668/51611/10480/2332/27335/6235/5936/8669/6170/6143/8667/8661/8665/51386/1939/1983/6228/64506/6128/79727/6152/6171/6161/6160/6141/4736/6234/6169/1938/25873/6231/6135/8666/56339/120526/22849
## GO:0002460 10563/9156/28823/28424/7037/1075/713/5551/51311/712/3537/8767/91543/10859/3575/28778/959/4436/79915/3329/3514/7468/2956/5788/3383/9466/30009/2207/6375/100/7374/8807/940/939/4063/7128/5588/4683/10148/3251/930/7124/5027/3569/4049/10875/1378/2208/8772/7454/3119/5817/9245/733/7186/2213/5971/3135/1380/7133/958/54542/3134/54440/3593/7264/3558/735/729230/3592/51571/1512/6693/708/731/6556/3500/3662/3004/725/920/3635/695/6868/55183/941/7855/80149/3606/6363/326/10666/10747/10892/732/7292/3586/972/3665/9025/5873/7099/4791/3553/1604/3718/3146/3598/6885/22976/3565/51176/8809/3133/2475/2302/3265/10384/5777/10068/975/5452/3142/177/602/10945/722/567/1739/2794/8915/23529/7040/51043/634/11277/50943/383/11118/114548/301/7189/64218/1178/8741/8417/5585/716/10312/6774/3981/3566/23180/56940/718/4092/3594/54537/149041/51561/717/4292/9984/715/6095/3440/10538/3077/9173/57379/22890/5819/6830/5580/3456/9655/5532/7158/51279/2067/710/55061/729/2013/23075/163486/6778/100507436/4153/604/182/3554/81545/5590/4179/3426/1235/4208/10039/54795/727/90865/6097/3263/1191/730/2625
## GO:0055007 983/891/1482/8557/2539/22943/409/57817/7422/4624/9474/5629/7273/7490/1525/27101/88/2626/10038/811/4878/5058/4205/5997/6722/5915/8324/9472/1948/6256/6910/8048/2475/2627/5465/10269/27302/3192/26585/3516/25776/148/859/9150/7040/3084/4000/3688/5999/5156/186/4633/2931/1906/4089/11214/7528/183/10818/90410/650/5300/9794/2648/23135/10611/70/10529/23363/6546/91807/90/8289/6443/6416/23493/6548/5914/4628/7248/4208/50507/8470/6444/5159/80206/6926/3479/4629/652
## GO:0035794 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/10105/7159/10018/5366/2932/10971/7533/23593/5534/7029/581/2139/7529/841/79680/5599/54978/28978/1386/6687/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/55288/8626/89941/7157/7755/6548/596/64112
## GO:0048857 11240/8941/9143/2539/838/2254/4781/401/1152/5810/23513/10971/9118/7533/1340/1141/3309/1267/8851/4722/522/79109/10409/515/6271/60/998/3746/3747/8655/22933/3211/4155/7080/7531/7707/387/429/57447/10427/220/5354/9919/8929/80264/596/2746/3212/4129
## GO:0048659 4318/6352/65009/6502/6772/3654/1535/3458/2950/3162/5031/10257/3351/1991/239/3600/7128/2254/5467/1786/1312/8013/7124/3569/5743/1956/6376/3596/5724/4880/10221/5591/7052/3570/3593/3592/5345/1839/10135/5058/3398/2081/4883/231/2069/1026/2547/3606/27035/199/60560/2773/3586/3486/4193/2475/5739/5155/7015/9510/10891/6869/4854/4217/4209/207/3717/7520/9314/3156/657/55810/7189/4889/1906/2852/183/4835/3725/4331/5728/3673/9927/51135/2771/57447/56998/3488/7434/6934/55512/26119/2263/7057/3611/9759/1499/3248/7536/4602/1027/1901/5592/7168/8840/4881/4208/7048/283/2247/5468/1012/10203/5136/4313/4856/5159/347/1264/7043/3479/2006/80310/9370/652/4969
## GO:0031103 1719/706/6696/7143/5604/11202/2896/2043/2348/4099/5792/335/81565/9860/8428/3717/9314/23162/8578/3725/5728/1605/3670/4916/1495/22876/4548/5802/29956/4131/3371/596/4747/2281/83700/5764/4035/347/3913
## GO:0034656 9582/4521/7378/200315/4860/1807/51733/100/191/3251/1890/60489/27350/200316/51071/2592/57089/339/10930/55270/955/53343/978/954/2931/51816/4245/4907/57379/56953/1806/957/953/9583/22875/56985/79873/81602/956
## GO:0051972 4751/9212/4609/10576/5588/5594/10575/79977/3326/6714/65057/8550/3181/4931/3320/25849/10728/4221/26585/3184/7520/9314/5609/55135/143/7013/5073/11284/23293/140609/25913/8658/5595/1499/7157/4216/79618/10039/5468
## GO:0006949 3627/4283/79805/963/575/51177/10938/7305/3756/1432/4654/4842/8837/8740/4627/928/975/50937/8754/7471/9518/859/6988/8536/577/22904/2323/81501/3566/824/4868/9750/8912/4656/8521/9644/2067/10211/9149/8038/54209/10411/26509/30846
## GO:0070936 11065/6502/3429/7128/9111/83737/7319/7321/57162/997/55658/6049/9025/3093/54476/7323/7328/7324/329/51619/80196/6047/267/54765/7326/7327/51283/6048/149603/10477/27246/10475/10299/7322/10210/10425/51366/81847/5071/7337/7320/81545/26249/23327
## GO:0098586 4321/2537/330/64135/7353/23586/3965/23076/79132/63906/10018/9641/1147/3592/6397/708/1432/89870/80149/6363/26057/55666/3665/2332/55601/329/103/3661/5600/26065/572/9698/8780/7105/8729/79671/23369/1687/5179/598/26007/3964/54941/29997
## GO:0098900 1824/274/6262/1525/10021/2257/1141/6331/3745/1269/781/2332/784/488/6869/1739/148/859/2316/2859/7341/5318/4544/3759/1829/4923/5774/3728/288/2258/287/1832/9722/1268/2702/6548/29119/29098/948/10142/54795/857/775/6863
## GO:0002714 7037/4436/79915/7468/5788/30009/2207/6375/940/7124/4049/2208/958/3558/695/55183/10666/7292/22976/3565/3133/23529/7040/8741/718/54537/4292/5819/7158/6778/3263
## GO:0002891 7037/4436/79915/7468/5788/30009/2207/6375/940/7124/4049/2208/958/3558/695/55183/10666/7292/22976/3565/3133/23529/7040/8741/718/54537/4292/5819/7158/6778/3263
## GO:0003009 7136/8557/4626/6329/9456/4151/1134/1144/1147/23336/9446/7140/1756/79784/488/7125/4625/859/3759/89/487/7134/4621/1938/2548/51761/1760/7138/844/1140/2946
## GO:0043029 9133/3559/27240/11151/3965/5027/8772/8456/3071/54542/10018/5366/4004/3558/836/581/8740/3718/6194/9093/207/7040/50943/778/10312/149041/5896/6777/5532/596/1831
## GO:0045214 1482/8557/4624/5629/7273/88/84033/58529/6722/27302/859/3688/79933/71/3856/1906/11214/4621/51778/27063/11155/5573/91807/3880/825/845/7168/844/4208/10324/80206
## GO:0048278 65009/5341/10652/1080/10814/10640/6809/8541/3745/23256/4218/6804/6616/26276/10490/815/65082/10244/51134/11311/858/1488/9751/5899/6814/6813/23233/9341/54843/6812/6857
## GO:1904358 4751/9212/22948/908/10576/5588/7203/10574/5594/10575/65057/8550/3181/26272/10694/7520/5609/51750/545/5073/80351/11284/3178/140609/472/25913/8658/5595/1499/4216/79618
## GO:1905898 578/4690/8440/2213/55741/5771/10018/5366/10134/8975/1649/2081/581/5770/7917/22926/4287/23645/4780/55161/9709/29978/51136/10955/6449/9695/23411/5295/7494/857/10551
## GO:0000724 10635/1111/8438/5888/2237/55010/641/55159/25939/2072/10213/79000/8914/4683/142/23028/3014/5531/7454/7517/6119/10721/79677/672/675/7334/5889/151987/10097/4796/23137/51444/55183/6117/4361/79035/3980/6118/9400/23514/51548/2521/9985/64110/23347/5892/64710/5893/51750/9907/54386/6421/79728/10933/55135/64210/7528/55317/57599/56154/54537/7515/642636/254394/56893/64859/55218/27343/7516/472/5890/5932/29072/7158/10111/22909/22891/23503/55693/55086/51149
## GO:0032411 6347/3458/9143/1520/5336/51083/5031/483/3359/2048/6262/1080/5724/88/8811/6769/6446/1785/729230/5444/4878/375346/9446/10368/2745/6786/10063/3799/9472/6271/9001/54413/1756/3746/781/10110/784/3747/2631/11261/57158/7341/11315/7114/10369/4923/7225/81/30819/8787/3064/10345/288/1815/287/5649/9722/9992/65018/5580/4297/9104/783/30845/154/6548/3736/27347/54997/482/54209/10142/844/5311/2259/481/5243/3306/2946/27092/5174
## GO:0045047 23480/6731/29927/6227/6132/6142/3309/6202/6223/7311/11231/6734/9349/23471/6181/6156/6217/11224/6206/6194/6728/6235/6230/6175/6158/6201/6233/6747/6187/6729/6170/6143/6134/6176/6188/6192/6193/6129/6147/6222/6208/6210/6232/6204/6726/6229/6228/29082/6167/6155/6128/6152/6171/6161/6133/6160/6141/4736/9697/6191/6234/6169/6146/6165/6203/6122/6136/6209/6727/25873/6164/6231/6205/6135/6168/7095/6157/6138/9045/6159/81854
## GO:0050000 55143/1062/10403/9787/81930/81620/3833/891/9928/11004/10615/1063/84722/54908/23212/23636/10096/55166/5119/81929/10097/3835/8379/3837/27183/10300/23626/79998/79003/9183/51510/8766/25978/3192/9525/7013/91782/57132/29082/1778/152185/23353/642636/4292/79643/8697/472/27243/51112/7320/8452/2669/8678/54820/10464/4926
## GO:0051303 55143/1062/10403/9787/81930/81620/3833/891/9928/11004/10615/1063/84722/54908/23212/23636/10096/55166/5119/81929/10097/3835/8379/3837/27183/10300/23626/79998/79003/9183/51510/8766/25978/3192/9525/7013/91782/57132/29082/1778/152185/23353/642636/4292/79643/8697/472/27243/51112/7320/8452/2669/8678/54820/10464/4926
## GO:0000423 57103/8878/10133/57154/55626/10193/27429/10013/9927/23274/54832/7249/65018/5071/11140/7157/55187/8678/22863
## GO:0002089 6664/6496/5629/6656/5309/5818/28996/23424/1969/1419/6497/204851/357/10152/1499/4211/25945/8412/652
## GO:0003177 7133/6091/64220/4091/4851/4772/3516/7132/26508/4853/659/4846/2702/23493/182/23462/7042/9353/652
## GO:0015721 366/1244/28234/6555/8647/9971/1109/6579/10599/6256/1645/634/6554/80765/10998/8714/10499/8648/5205
## GO:0030728 5743/9757/2069/5997/9510/3566/4327/4846/2309/23411/7130/3624/3248/8204/2620/3952/3625/174/5241
## GO:0032674 27242/64109/3556/3578/3568/7356/8288/51176/5144/50943/114548/23765/3440/55540/9173/5914/5590/90865/2625
## GO:0034204 24/3783/23250/4363/23200/19/55754/10079/57194/10347/23120/10396/51761/374868/57205/5243/5244/5205/161291
## GO:0035024 3925/148/27/4233/3688/253980/9750/7126/286205/54922/2909/10395/23189/8452/604/3675/57493/201163/4653
## GO:0036344 51266/836/6722/80739/4352/4627/5781/9948/5777/29071/23218/2033/65082/6886/2623/87/10519/842/4208
## GO:0036499 3576/440/6347/467/4690/468/8440/5771/1649/3309/1965/5770/3484/9451/23645/4780/55161/9709/10551
## GO:0039531 330/7353/79132/63906/6397/708/89870/26057/55666/55601/329/9698/8780/7105/79671/23369/26007/54941/29997
## GO:0042454 9582/7378/200315/4860/100/191/3251/60489/27350/200316/339/10930/978/51816/57379/9583/22875/79873/81602
## GO:0045332 24/3783/23250/4363/23200/19/55754/10079/57194/10347/23120/10396/51761/374868/57205/5243/5244/5205/161291
## GO:0050802 10874/6770/6715/3737/100/2692/1814/1141/134/1813/5730/4544/1437/135/1392/4887/8863/2691/1471
## GO:0051589 10859/3351/2824/5997/4842/55607/41/2332/23208/5908/5999/5906/6622/5071/4763/10550/7779/18/4129
## GO:0055093 1789/3066/1019/664/5428/3741/1026/2056/27035/355/10533/847/5423/1543/2308/1277/5468/5159/857
## GO:0060260 1482/7480/6927/55832/6722/7067/2959/3146/22976/6928/6872/55729/1385/56998/6879/7157/23493/26036/2099
## GO:0071711 55612/1520/8985/1282/10653/3918/3688/23187/23332/1605/4320/60626/1215/4811/23122/22795/2620/3249/10266
## GO:0072111 6772/4609/8710/7490/655/3570/8837/5727/5155/79727/650/2719/1958/201163/6469/5159/80310/652/2625
## GO:1902667 55079/7473/7422/10371/1954/55558/1826/10716/347733/5458/6259/659/5800/23077/7474/9353/8829/9037/6387
## GO:1903055 6624/79709/3569/8837/4241/1361/7040/23187/10630/23332/183/1605/6662/5925/4921/4088/28984/23122/11117
## GO:2000144 8061/1482/7480/6927/55832/6722/2959/22976/6928/6872/9774/3725/23064/1385/7291/4286/1499/7157/2099
## GO:0065004 1062/55355/79019/55839/81620/8208/4171/55723/79682/2491/5888/11339/3070/1058/1063/55506/51053/8970/8357/3024/3148/10036/3006/8607/3008/7290/3009/8345/10541/4678/54069/9328/3018/142/7480/3014/9978/55166/85453/8290/3007/6119/79711/55320/79172/1642/9557/6597/2958/25842/201254/4869/5931/5928/64425/3010/6117/2968/55832/7311/8467/8348/7067/6418/79003/2959/3146/9014/6118/1069/8451/9555/8342/29855/6233/7316/9733/9330/7258/8349/50809/1616/4676/55011/6928/6046/8340/6598/7314/80152/2071/5893/6047/11176/8971/8520/23569/7343/83743/23421/7013/23523/6872/4673/3020/55729/8341/6666/64754/9013/51773/4331/8450/54700/7994/2965/1385/2073/1060/5887/6908/1022/8554/404672/6662/112869/79903/902/546/2967/5925/2068/1643/3005/7157/51112/23493/23522/57082/26054/7508/7259/23270/7507/23126/6925/2099/4674/64061/4675
## GO:0003338 6772/7490/10736/55083/3975/6608/7477/10409/793/2668/2302/26585/186/80144/7849/55366/3976/6662/5076/3280/5310/1499/4435/6299/5311/5159/54361/652
## GO:0006084 5163/8942/1737/5160/5165/51268/25874/5161/8050/55066/1738/2194/4598/1743/47/54704/283927/51660/31/10654/38/23417/5162/5164/2954/5166/32/10157
## GO:0006308 3669/3148/3569/9131/3297/1773/836/3837/400410/581/80198/51025/3836/23626/3146/1676/1677/2021/57109/668/11277/317/1776/472/9104/3005/6419/1149
## GO:0007616 114/348/5923/6446/3949/1813/6722/5621/2902/50944/793/2475/6869/57030/23237/1497/814/4204/2648/10636/5649/2890/107/4776/5590/22849/9867/6863
## GO:0009225 5973/2762/2673/56886/54187/80146/10020/7264/5373/7360/55577/2592/6675/1798/5238/4351/2987/2931/23169/4245/5372/23443/2135/55757/55790/9945/7358/2530
## GO:0043928 54512/57819/25804/5393/23404/28960/56915/11157/51690/80153/23644/29883/27258/27257/1656/10767/23658/11340/23016/51013/57472/9337/6499/80349/55802/9652/167227/22894
## GO:0048011 54541/6654/4914/836/8936/6714/2885/10479/5781/9001/5526/55816/23191/5894/186/6272/183/10818/4916/627/10253/4804/26999/4692/4803/10252/4908/4915
## GO:0055094 3689/2207/6850/348/3157/26291/10333/6721/4615/84830/3949/7099/928/975/968/19/207/846/3688/148022/4864/55512/9655/375056/948/5468/1012/4023
## GO:0098751 10859/5469/79705/7305/10006/6722/51208/80739/5305/5781/55294/5777/2033/537/10019/2313/302/6886/7066/10163/5048/4853/3815/8600/4057/4211/2200/284266
## GO:1901797 79915/23028/4282/5716/80237/8444/972/4193/6615/3622/51499/1859/754/960/80196/54700/624/64844/7291/6880/55702/23411/5071/51616/596/29997/6591/4582
## GO:2000352 3383/7128/3596/5054/26291/2243/2266/51129/3565/7015/10298/284/2244/4780/5598/889/79155/2624/25/5170/7857/7010/3791/79625/9037/2621/10266/2625
## GO:0030641 56833/50617/55858/533/506/9296/551/525/1080/356/5594/9114/6556/760/2896/7274/54982/528/27035/23545/9777/4097/51606/25932/552/529/523/526/65010/7879/527/55647/11261/65082/155066/51382/9550/10312/1182/8992/1201/5538/535/534/766/23682/5595/1203/6548/596/1811
## GO:0045428 445/3458/3689/3383/706/5806/7124/5743/140885/1785/10333/54/3326/3320/80149/199/2185/3586/7099/3553/2475/5879/207/3717/9314/8570/5740/186/961/1906/148022/493/183/9475/9722/23576/9104/4317/23564/4088/10365/2717/3643/3043/947/948/5025/5311/857/1191/1524
## GO:0010043 6279/8836/445/7412/4496/4502/4501/15/706/57817/4494/142/5027/4493/3777/4495/2742/760/5009/339/383/2741/23400/64924/5728/23498/1385/538/7054/1373/5025/4499/210/3861/1396/5350
## GO:0097720 9454/7124/2932/375346/5534/8445/58529/5725/5621/10523/9472/1827/2475/4772/11261/3084/89/493/63928/5598/10519/51778/5533/2274/2065/10725/9455/5532/2516/5530/6548/29995/2494/576/23261/3479
## GO:0032200 4751/9212/9156/5888/898/9134/2237/22948/5984/4609/5111/9401/641/1763/8357/5427/23649/5982/908/5557/10576/5558/5424/2072/5983/5588/4683/142/5425/54107/54433/7517/8290/6119/7203/79677/10574/55505/675/5591/5594/10575/5371/5889/64858/5985/328/3326/55651/6714/65057/55226/8550/5514/3181/26272/23137/10714/55183/23381/2547/6117/4361/3320/5426/79035/10728/7014/6118/10694/54552/3183/7015/51548/5976/3192/3184/5422/7520/5892/5609/51750/54386/545/55135/7874/7013/6672/3020/7011/5073/7515/80351/11284/7486/3178/24144/23293/50485/79991/84444/26277/140609/5981/472/25913/8658/546/5394/10111/2067/5595/1499/22891/4216/57804/80169/79618/167227/3104/10039
## GO:0030520 6502/11240/9420/865/142/5469/672/23019/10432/8928/9125/5058/6714/11331/8085/10498/9113/10413/4848/10474/2100/81606/9325/8312/65992/23054/23543/1655/23376/79039/23558/79876/5458/3670/79447/55325/29966/6879/8626/8289/51569/25959/10521/2099/367/3169
## GO:0046626 2888/51237/1019/5588/4690/5771/8651/9971/5058/6714/5579/5970/896/51094/5770/3553/5781/2660/6198/2887/3630/51043/197/64710/2931/2844/4976/183/55022/2771/23235/51763/7249/8473/5580/23411/5562/23189/5791/5295/5590/114882/10580/3952/5167/3667
## GO:0046847 57348/1236/5898/4651/6624/7226/23616/2245/9148/382/50649/6722/54942/55607/8976/10178/998/2332/6366/3655/7046/26051/23433/9294/23380/55785/5868/221472/7430/54874/375790/2039/23613/9750/116985/2596/5580/26052/54828/22871/2823/1809/8829/64284/5064/7043
## GO:0010575 10855/136/468/3569/5743/3091/672/728/2626/719/3552/27035/3553/4838/1545/9451/7040/23213/405/718/2324/3670/6095/727/3572
## GO:0021696 9928/6712/64211/23287/1020/5604/5629/3975/2895/6608/5781/8861/7476/869/5270/23017/2736/4983/8925/6095/538/25861/79934/22891/2735
## GO:0033014 706/2395/3145/211/10058/402055/3658/7390/212/1352/200205/25974/1371/2235/93974/4891/1355/54977/6708/7389/8803/4779/55316/5498/210
## GO:0043457 983/891/6472/63976/664/55847/3091/7415/10131/3416/59341/4843/10891/29103/5290/11277/11315/89/79085/863/23479/65018/6622/29997/201163
## GO:0070528 5341/9289/7422/551/958/4142/566/8048/5155/148/4157/1609/8398/2324/54986/56848/10211/23544/7474/5590/84059/7481/23171/9590/3357
## GO:0070536 6472/78990/10213/51029/7128/7415/8975/29086/55432/389856/9825/54726/4287/79184/29761/1540/23172/10600/9577/51720/56957/23032/9101/10868/29997
## GO:0071549 1978/445/6770/6715/54541/1789/3383/1244/11335/1956/1977/8837/7023/2660/7040/383/186/64754/842/1392/9101/2908/2308/5176/358
## GO:2000036 1994/51123/63978/655/23019/8091/8202/6608/4849/4838/5978/10413/6928/4848/81606/6886/55818/7849/2103/60485/5076/23091/8626/4017/5764
## GO:2000778 51311/64135/23586/3965/5047/7124/3556/84818/199/1660/3553/3146/59341/3605/353514/4155/8692/7291/11027/29108/2150/57506/2149/4023/7494
## GO:0060271 4751/983/5347/10733/54801/79734/84223/7277/27285/29887/10257/29105/54768/203068/79140/7283/1951/10383/5992/117178/9474/10801/10096/10938/55835/22919/9793/3175/10640/55722/55212/1785/9114/10807/79959/9148/6792/3797/10097/79989/55559/4957/54919/50807/55172/9702/202018/4867/3320/79583/9657/8852/49856/6674/7419/27185/23354/23300/55125/55704/80776/9001/5566/23322/4851/4218/64422/2302/79598/79867/1874/1069/9342/8766/9480/83658/10121/51098/85452/50487/8636/5518/1540/11020/57576/9786/9662/8655/64446/11258/23386/11190/11116/4952/2316/80210/79969/57787/10382/56683/2622/23224/25814/26146/51382/22994/22897/22920/79363/51134/123872/3911/23332/7531/5116/1453/26005/51668/55764/54874/55329/261734/27019/80173/10677/5048/79441/1778/90410/5990/55081/80217/80321/22858/10013/6738/3064/10540/22995/55036/79582/28981/55130/54777/25937/23059/989/27077/51715/55755/11127/3983/63917/4134/8195/10309/4735/80199/11064/22981/3842/25809/6103/26123/1454/23329/8814/9696/2909/9321/7846/54903/5991/8481/79600/403/79874/1639/8558/4750/30845/55717/146057/54806/79738/56171/80254/9371/95681/9738/56912/55142/22873/7320/80184/84747/27241/54558/7840/1781/10142/55779/23639/9814/92482/54820/10464/64792/8100/2934/64284/51626/51364/5108/9742/55742/347240/51314/22832/582/57728/80127/5577/585/23116/90355/79659/55112/65250/8382/79864/4117/22885
## GO:0001963 1812/409/1020/5743/1814/1141/1813/1816/2668/5865/11315/1861/135/1815/65018/1392/7054/6622/5071/6532/10211/1393
## GO:0006517 56886/55741/51009/11315/267/11253/6048/11236/10299/10905/10956/175/55757/55768/9695/6400/10724/10206/7844/57134/80267/4121
## GO:0014829 952/1908/5910/151/80005/1131/80852/1906/183/5023/387/8195/59/3356/1910/6546/5286/9732/490/1907/1909/1311
## GO:0035640 7143/57282/9775/348/1137/4287/27/5581/1742/186/1803/57338/2695/1620/5179/1392/60314/2571/3350/3675/10752/18
## GO:0048169 9145/2048/9148/6855/1813/2902/4218/3265/8766/3845/3766/1742/2898/816/351/183/27020/3815/6622/4763/2915/11346
## GO:0060669 133/2709/6768/9021/655/10049/79977/2885/7855/677/10155/7477/3586/10653/653/6692/3491/8521/29072/2263/8648/1028
## GO:0070076 23028/8284/3720/8242/5927/22992/80853/5253/7404/10765/23133/79697/9682/55818/3299/7403/23135/23081/7320/79831/55693/23030
## GO:0097066 2730/1520/1514/5469/1512/1508/231/5962/6569/10634/6495/10891/9804/302/2623/2693/3815/2729/687/2155/4005/3249
## GO:2000482 914/2867/7096/2219/3965/929/26191/7097/10333/51744/1401/27202/7114/301/965/8692/307/29108/2150/7474/2149/23005
## GO:0032206 4751/9212/22948/908/10576/5588/4683/7203/10574/5594/10575/5371/65057/8550/5514/3181/26272/4361/79035/10694/51548/3184/7520/5609/51750/545/5073/80351/11284/3178/140609/472/25913/8658/546/10111/2067/5595/1499/4216/79618
## GO:0045620 3902/3149/1493/864/30009/3659/3549/865/23240/4192/5771/54542/8651/3558/3623/6422/3398/25793/80149/7292/972/3718/3146/2302/7001/3142/51043/50943/301/2064/3566/4092/149041/3440/3456/9655/3624/604/6469/2737/652
## GO:0046323 28999/1812/7124/3099/8218/6927/26291/1432/4205/208/5584/5781/7015/51548/2887/3630/207/4780/23433/5906/79602/2931/6272/10776/5319/6506/55022/5458/8682/5741/6814/6517/79058/2719/51422/26060/8660/11132/5295/3643/7248/6041/114882/1389/9847/10580/55198/3952/6253/5167/3667/3479/9370
## GO:0002449 3002/3902/9156/28823/28424/7037/1075/713/5551/51311/712/57823/3537/91543/10859/1054/3575/28778/959/3824/11151/4436/80328/79915/3329/3514/10225/7468/2956/5788/259197/3383/9466/4068/30009/2207/6375/203068/7374/8807/940/5052/409/939/3965/4683/3251/10383/930/6318/7124/5027/3569/4049/10875/56253/1378/2208/8772/7454/3119/5817/9245/733/7186/2213/10125/3135/164/1380/7133/958/9437/3134/54440/3593/7264/3558/735/729230/3592/51571/3805/1512/708/731/6556/3500/5272/3004/725/3635/695/6845/55183/7855/3606/326/10666/10747/10892/732/7292/3586/11126/972/7409/3665/9025/5873/3553/1604/3146/3598/6885/22976/3565/8809/3133/2302/10384/5777/975/5452/177/602/10945/722/567/3916/1739/2794/8915/23529/7040/634/11277/50943/59067/383/11118/114548/7189/1178/8741/8417/716/10312/3981/3566/23180/56940/718/4092/3594/54537/1398/80329/51561/717/23705/3811/4292/9984/715/3440/10538/3077/57379/22890/5819/6830/1130/6777/5580/3456/5532/7158/51279/2067/710/55061/729/2013/23075/163486/6778/100507436/4153/604/182/3554/81545/5590/4179/3426/1235/10039/54795/727/3952/3263/1191/730/2625
## GO:1905952 8792/9388/336/341/51083/2058/29923/706/6696/4282/6850/7124/5027/3569/345/348/10938/1950/1588/5771/4792/9641/1394/5360/5444/64240/6721/208/522/949/80149/10062/4481/114885/1071/2661/337/5727/3553/5781/55294/6754/654/5608/26154/5020/335/5465/2170/51499/51099/10765/19/207/1401/186/302/114897/4923/1906/4790/9227/183/718/20/2587/3690/8398/5972/22925/8600/7376/10347/9619/1579/7110/6342/338/4824/56729/10396/1392/5580/23411/26119/7057/51761/57104/5071/2874/1407/9611/8660/4602/3685/948/5025/114882/5468/6469/4023/3952/1149/79068/5244/4035/32/185/6863/9370
## GO:0033146 6502/9420/865/142/5469/672/23019/8928/9125/5058/6714/11331/8085/10498/9113/10413/4848/81606/8312/65992/23376/23558/79876/3670/79447/55325/29966/8626/51569/25959/2099/367/3169
## GO:0043403 2146/3475/5315/5467/7480/688/2027/79647/8291/5081/2876/58529/4654/6665/8837/8324/6442/7476/928/2660/975/6895/9215/4618/1605/4656/55909/5530/607/825/7048/2697/3479
## GO:0048286 6943/100/55151/23657/54542/6441/64220/9394/26154/2627/9678/7080/5154/10905/171023/659/2294/1385/2324/3976/3488/538/55512/2263/64759/23152/4124/3202/1907/7043/652/3169/5241
## GO:0051453 56833/50617/55858/533/506/9296/551/525/1080/356/9114/6556/760/2896/7274/54982/528/27035/23545/9777/51606/25932/552/529/523/526/65010/7879/527/55647/11261/65082/155066/51382/9550/10312/1182/8992/1201/5538/535/534/766/23682/1203/6548/596/1811
## GO:0007018 9493/1062/9787/81930/3832/24137/11004/29127/56992/7345/29105/54768/80128/117178/10096/3091/10125/22820/3797/10097/79989/3835/8936/54919/3837/3796/6845/5870/4133/10300/3799/10128/25777/7275/1780/6647/55201/10126/5861/6683/9001/7014/998/547/1740/26256/83658/8943/51098/8636/81565/667/8409/11020/57576/8655/10749/64446/3192/3798/3916/55811/7314/2319/56683/2622/23224/6687/1176/26146/23162/22994/23299/22920/6421/123872/320/351/51668/23095/23011/55764/4976/2647/27019/80173/5048/90410/8120/55081/80217/22858/10013/3064/55207/5195/55036/55860/23353/28981/55130/54777/64837/636/23059/11127/4134/8195/3831/1201/9531/3842/25809/6103/55288/53340/8546/3895/9321/5991/8481/403/89941/4130/3315/10947/9638/56171/9371/4131/56912/3476/63971/5813/5590/66008/1781/23639/55686/64792/8100/51626/4747/4744/5108/9742/5874/80208/57728/585/79659/79443/55112/3800/55638/23303/8382/4137/25893
## GO:0030510 6664/8200/63893/2297/22943/25928/2626/6422/5046/9350/53918/4091/4851/28996/57154/331/7471/26585/3516/23213/2658/4089/4087/9573/6497/23770/5494/6425/3491/4092/659/25/51592/23592/4756/2022/79176/2719/3280/3611/8321/10140/94/7474/57045/64388/8646/10272/3675/164656/4681/4926/4488/91851/4487/5654/2200/6424/23090/652/4036/7021
## GO:0046889 133/6770/3458/5447/215/7124/5743/348/551/9971/2358/3949/949/10062/116986/337/552/51085/3553/8439/654/58526/3358/2475/6610/2170/10891/3630/207/7132/23399/1081/2822/3491/824/9926/8398/1385/7376/9619/57406/3356/55512/5580/23682/9104/5562/56848/23409/2181/225/2488/2246/1389/221395/1581/10580/60481/6720/54361/3357/26137
## GO:0015748 336/341/24/292/3783/10650/23250/9600/215/81034/2542/5027/345/348/4363/54020/23760/5360/10786/9197/3949/949/10577/26207/1071/337/51228/10478/51054/58488/9885/26154/293/335/2538/23200/5306/51499/19/284439/55754/80772/10079/2705/950/291/4547/79085/57194/10347/9619/23120/29957/10396/5580/55186/114884/83447/51761/374868/57205/92579/10087/114882/9854/5243/5244/5205/161291/2697/80736
## GO:0001821 4067/100/4878/695/6845/8723/8673/1437/1906/116/8773
## GO:0001867 8547/2219/3848/10747/2220/10584/5648/78989/2/710/4153
## GO:0002483 6890/6891/3135/3134/3416/6892/3133/567/51752/64167/3077
## GO:0002604 1236/10875/2213/6556/64127/6363/972/6366/968/10392/7057
## GO:0002923 5788/7124/4049/1378/2208/2213/725/2302/5777/722/3263
## GO:0003093 1535/134/5155/5800/2150/2702/2013/2149/2621/10391/2697
## GO:0003157 6789/5629/6788/4851/3516/3084/4089/54345/64321/90/58495
## GO:0006681 7368/8708/79152/7915/57733/5660/8703/9514/1201/8707/2581
## GO:0006702 6715/5469/3284/79644/949/3293/1586/3283/8630/6716/54361
## GO:0007100 4751/3832/1111/6790/23636/64793/3834/55968/137886/9371/79884
## GO:0007216 9456/2914/2911/4308/2917/2918/2912/2916/2899/2913/2915
## GO:0009071 875/10993/2653/189/1610/6470/2731/55258/275/1036/51380
## GO:0009437 8424/5447/1374/6470/55217/34/223/33/6583/1384/54677
## GO:0009950 5080/7473/4188/25806/6422/4091/59343/657/4087/80319/1499
## GO:0010623 356/5591/835/3552/4914/581/3553/3815/1270/596/4254
## GO:0016446 9156/4436/2956/25939/7374/10721/8888/5423/57379/27343/27434
## GO:0019042 3159/11168/8815/3054/2547/5478/3665/7520/64710/3981/7518
## GO:0019371 80142/6916/873/5743/10728/5730/9536/5740/5742/8644/27306
## GO:0021534 8624/1950/728/2637/9283/22809/51286/473/6095/6532/6469
## GO:0031581 3852/3691/3655/3918/5339/3914/3915/977/3861/3909/1308
## GO:0031915 991/114/2048/5743/10814/4761/1627/54434/23025/4131/29882
## GO:0032276 3814/3623/64111/6865/668/4089/4986/1392/3624/3952/3625
## GO:0032351 1594/2672/5978/653/476/27120/4790/650/8644/27122/54361
## GO:0032494 55765/8767/3569/64170/728/3663/64127/5970/114548/54209/11213
## GO:0032908 55353/8710/6376/7305/5045/2627/50943/10159/23607/7057/4060
## GO:0033089 3575/8876/100/3549/10125/101/9840/50943/2736/1960/6469
## GO:0033860 56833/1535/3596/2773/1816/3630/55312/11315/183/2771/185
## GO:0034776 26/2554/1814/1729/2562/1813/2561/2566/3269/2560/1815
## GO:0035404 9212/6790/891/1812/7443/8091/8986/6795/5562/5563/9252
## GO:0035457 6770/3437/3433/7175/149628/6738/201626/3454/558/2621/2625
## GO:0039532 7353/79132/63906/6397/708/55666/8780/7105/79671/26007/54941
## GO:0042501 11009/3458/1020/8851/11137/2074/5979/51701/3976/79893/3456
## GO:0043247 2072/64858/328/65057/55183/7014/51750/54386/7515/24144/2067
## GO:0045059 915/1794/5788/8456/5771/6722/972/7535/3707/6794/6469
## GO:0045628 942/3606/7292/3142/114548/301/3566/9655/5914/604/5590
## GO:0046886 133/3458/5447/7124/3091/3553/654/10891/405/1958/54361
## GO:0050667 875/1312/4357/4552/4524/1491/4594/635/1800/1373/50507
## GO:0051024 2821/3569/7293/3558/7292/3133/6810/3567/5950/90865/7494
## GO:0051573 1789/23028/1786/672/5079/55011/6598/55818/23081/23411/55693
## GO:0060433 3596/9719/6722/7477/7289/6662/3202/7048/25803/652/10551
## GO:0061307 655/5594/2348/5308/9464/7291/3280/5595/182/10512/652
## GO:0061308 655/5594/2348/5308/9464/7291/3280/5595/182/10512/652
## GO:0070278 55151/7133/84830/1361/4851/7132/183/2022/28984/90993/1490
## GO:0070471 6870/151/152/5020/6865/6869/2852/183/84193/5021/18
## GO:0070757 3595/6772/9466/10148/3592/6775/3717/821/6774/3716/3572
## GO:0071679 7422/4781/2048/5727/2668/6259/1605/7976/4684/8829/64221
## GO:0072310 4643/2302/8826/4868/5420/7827/182/3913/9863/9370/652
## GO:0072611 27242/3965/5047/384/353514/23765/3440/55540/56848/5590/2625
## GO:0090042 10474/2033/22933/2339/10013/4752/5562/5563/56271/10129/4137
## GO:0090085 83737/7415/10010/80149/51035/54726/9733/11315/6737/10318/29997
## GO:0099566 8326/491/4644/2911/793/6546/2890/2915/7474/11346/3708
## GO:1904263 58528/6396/81929/84861/55011/10670/9894/23274/51520/10325/23387
## GO:1905383 3799/7014/7476/1740/3798/23162/1855/4130/3315/5874/3800
## GO:2000551 91543/30009/6375/3569/975/383/114548/3440/3456/5590/2625
## GO:2000615 1111/672/55124/55011/6598/4089/4297/56848/26036/4674/2625
## GO:2001241 5499/5518/5519/51741/27429/1613/5979/1495/3624/4763/8406
## GO:2001269 9705/80758/3965/581/7023/841/355/3717/27429/4088/2934
## GO:0090174 6890/11151/8877/6891/29091/84079/80183/10228/811/55669/8291/8447/6845/208/9554/27183/3799/54809/2773/8615/6892/4218/594855/8411/25978/7879/6804/55647/6811/662/301/302/79363/2901/9392/9882/27072/858/55823/4033/8674/114088/5864/6810/6622/9341/23339/51479/6843/23176/9847/6812/80208/6857/10451
## GO:0006636 9415/6319/80142/2171/6916/239/873/215/79071/4282/246/5743/551/8560/64834/242/241/10728/972/552/3995/3553/5730/9536/5740/1906/59344/240/26063/23411/5742/3248/79966/225/8644/27306/10464/6785/1907/60481/247/4056/54898
## GO:0002832 3559/7353/7128/79132/10875/83737/63906/10221/4277/6397/708/384/64771/55666/4795/7001/60343/22933/634/5495/6895/26146/58509/10475/22900/79594/8780/7105/79671/11027/5094/59307/26007/4057/54941/11005/23005/5654
## GO:0006301 51514/9636/9768/5984/5111/4436/5982/5424/7336/7353/5983/9100/9246/5425/7415/6119/672/7319/7334/5985/10714/6117/7311/55666/7706/6118/6233/7316/7314/25898/51455/5980/5429/22890/5981/7320/57804/11201
## GO:0042059 867/23636/7039/1956/5795/1950/5771/1839/2885/2069/55658/8027/685/29924/58513/10254/998/6456/7879/58533/1845/9146/27246/7251/84619/5774/5663/8874/374/23624/79643/27131/2060/3672/9655/10253/10252/9052
## GO:0045646 9636/6772/54892/4067/3148/3276/3091/5469/3071/51621/60682/1432/6688/3398/3635/2113/677/3313/8861/7564/567/23543/6886/2623/405/91/6774/1021/92/7538/2624/9935/2309/6777/3624/3202/54681/25893
## GO:1903115 1824/274/6262/5142/10021/2626/134/6331/488/1739/476/859/2316/7341/5318/5144/3759/1829/10630/7134/4607/3728/6781/2258/287/1832/9722/7139/2702/29119/29098/10142/6717/54795/477/857/775/5350
## GO:2000059 55872/51377/10755/57805/5371/3326/6599/1459/9097/9683/9349/51322/7917/51035/28996/6386/4534/6201/7471/11011/65992/11315/7874/6872/5663/6449/6135/6880/3077/23274/9529/8473/4130/23429/819/2272/29997/6469
## GO:0001780 3569/5142/23657/729230/3579/5291/5293/4352/3707/3146/10461/10019/301/558/83700
## GO:0001916 5788/6375/5027/8772/5817/3134/3593/3592/51571/3133/567/8417/3594/51561/5819
## GO:0001977 1535/3291/134/1585/5155/1579/5800/2150/2702/2013/2149/2621/10391/2697/66002
## GO:0002076 4221/43/3727/8994/2736/23601/3199/9759/23314/4088/860/5745/6469/4488/63923
## GO:0006086 5163/1737/5160/5165/25874/5161/8050/55066/1738/54704/51660/5162/5164/2954/5166
## GO:0006555 6611/4507/4522/58478/4143/51074/4552/4524/55256/635/441024/4548/4482/27232/23743
## GO:0010934 10859/3135/51704/972/7099/7040/79004/8482/23411/7474/948/7042/2621/11213/7043
## GO:0015919 5194/215/5830/55670/5828/5192/51762/9409/5189/5195/5190/8504/5824/5191/5193
## GO:0030033 51765/6624/688/5911/5962/5337/53827/9368/4640/7430/5420/23043/5909/9693/5205
## GO:0030252 8997/5127/2692/3814/55636/1813/5781/5861/51714/27230/116/2693/6453/8425/2691
## GO:0031643 6663/8530/6285/745/7133/56288/3687/4099/10810/1605/9921/23405/3082/26011/8604
## GO:0032354 440/6770/6715/2730/5447/3157/2492/4851/10891/5069/1946/2693/2729/3624/7049
## GO:0032695 51311/10859/409/4210/6504/1240/54/708/3586/3718/353514/4790/7057/10464/11213
## GO:0033033 6352/1234/2207/4282/64127/3579/2056/3665/3707/10296/2693/23601/350/596/4254
## GO:0035459 3638/6396/10959/56681/10802/5861/10972/8301/9871/22872/9632/10427/10484/63971/375056
## GO:0035970 5496/5499/22843/5536/11221/8493/5516/54704/5495/5494/1847/5515/9647/1843/1846
## GO:0045623 30009/54542/3558/80149/7292/3718/3142/51043/50943/301/3566/4092/149041/9655/604
## GO:0048385 2146/23532/10626/23019/811/7181/9745/22938/9249/1382/171023/1488/56603/8644/1592
## GO:0050774 7533/7224/3196/54413/7225/5728/26052/9693/22871/7337/5530/4776/64689/1942/3397
## GO:0055075 3757/483/7380/525/3741/1585/478/476/3766/3759/482/481/3778/477/7021
## GO:0055119 5142/5997/1113/488/476/5144/3759/6546/8654/5025/3270/481/2946/477/5350
## GO:0061548 10381/8828/10371/7289/6495/5999/3642/5458/7976/429/6405/8929/1499/8633/8829
## GO:0070293 1364/6927/6446/360/9368/3037/8692/3784/3043/8644/26249/2934/2621/10916/9370
## GO:0072224 6943/7490/3975/5155/5156/186/5979/55366/7827/5076/1958/947/5159/3913/9370
## GO:0090493 1812/1814/6531/6530/1813/6581/60/2668/5865/11315/6580/1861/1815/6622/5071
## GO:0099010 5216/1496/6780/8936/5217/7074/25978/23191/10810/79012/10458/387/6453/4628/11346
## GO:0099170 999/9775/1977/54583/4900/1813/25897/23191/2693/1630/23236/9101/5530/2915/11346
## GO:2000251 3055/26228/1020/3059/10456/998/3265/1440/25/4916/2242/54828/7010/8829/4908
## GO:0048660 4318/6352/65009/6502/6772/3654/1535/3458/2950/3162/5031/10257/3351/1991/239/3600/7128/2254/5467/1786/1312/8013/7124/3569/5743/1956/6376/3596/5724/4880/10221/5591/7052/3570/3593/3592/5345/1839/10135/5058/3398/2081/4883/231/2069/1026/2547/3606/27035/199/2773/3586/3486/4193/2475/5739/5155/7015/9510/10891/6869/4854/4217/4209/207/3717/7520/9314/3156/657/55810/7189/4889/1906/2852/183/4835/3725/4331/5728/3673/9927/51135/2771/57447/56998/3488/7434/6934/55512/26119/2263/7057/3611/9759/1499/3248/7536/4602/1027/1901/5592/7168/8840/4881/4208/7048/283/2247/5468/1012/10203/5136/4313/5159/347/1264/7043/3479/2006/80310/9370/652/4969
## GO:0034219 11182/28999/6515/2171/1812/6513/5467/8013/7124/3099/8218/7525/6518/6927/26291/1432/57761/5473/5579/2688/6524/4205/208/6527/5584/3553/5781/66035/673/7015/55974/6523/51548/56606/2887/3630/207/4780/23433/5906/79602/2931/6272/1906/9962/10776/26503/6514/5319/718/6506/55022/5458/8682/2695/29988/5741/51763/6814/6526/6517/79058/2719/51422/26060/8660/81031/11132/5295/3643/7248/6041/114882/1389/9847/10580/25999/55198/3952/55314/6253/1909/5167/3667/3479/9370
## GO:0003156 2253/22943/2138/7490/655/6091/5292/3227/7472/6910/2668/6495/23213/10818/3207/650/9464/3670/2260/54903/3280/1499/7474/7482/2246/10252/10370/6469/367/652
## GO:0010573 10855/136/9289/468/3569/5743/3091/672/728/2626/729230/719/3552/27035/3553/4838/1545/9451/7040/6301/9508/23213/405/718/2324/3670/57447/6095/727/3572
## GO:0048255 1869/4904/1994/10492/26986/11044/1432/6556/4615/9967/8531/9261/1660/339/2668/2475/23367/54855/3183/10605/3192/3184/23435/25819/8241/7538/7432/10949/90806/1153
## GO:1905521 6352/56833/26228/3735/1652/4282/1240/4192/728/1588/719/1432/79647/2185/928/59341/2660/975/1435/4323/7057/4345/5595/54209/5025/5919/727/11117/79148/1524
## GO:0006278 4751/9212/22948/908/10576/5588/54433/7203/10574/55505/5594/10575/3326/55651/6714/65057/55226/8550/26272/23381/4361/3320/5478/10728/7014/10694/54552/3183/7015/3192/7520/5609/54386/545/55135/7013/7011/5073/80351/11284/3178/23293/79991/26277/140609/5981/472/25913/8658/5394/10111/5595/1499/4216/80169/79618/167227
## GO:0042246 2146/891/8326/5653/3475/8751/5315/5467/7480/688/4192/2626/2027/79647/8291/1026/5081/2876/58529/4654/6665/8837/8324/11221/3484/6442/7476/928/6657/2660/975/10413/6895/83481/9215/5782/7104/4618/1605/10404/4656/4815/55909/5530/607/4814/825/1027/7048/2934/4856/5764/10631/347/2697/3479/2066
## GO:0098773 10855/9355/1001/55612/51083/3066/2304/8549/22943/50814/3229/7480/7124/4644/1956/8456/25928/6654/1775/60529/8323/5970/6608/3065/26133/10913/8861/7053/6615/11166/10269/3516/1896/3911/4089/8717/91/5154/54345/3890/55366/27121/7976/80199/4038/60485/3488/538/6662/2263/9620/8626/3624/2068/4763/1499/2252/7474/596/11005/7042/6469/4926/4488/10468/9079
## GO:0090305 3669/79605/9156/2237/5984/54913/5111/10535/1763/23246/3148/54512/10799/79650/5982/79915/79703/25939/5424/2072/5983/10247/10248/11051/142/9978/3569/5425/6039/81691/10775/6119/10557/6036/28960/56915/9131/3297/1773/23019/1642/9557/5810/10940/64858/5985/4686/80153/328/55775/10556/6035/836/51110/192669/5428/2081/3837/27301/25996/26523/64421/10714/4913/6117/60528/51163/80149/65080/2968/400410/64782/581/80198/5511/5426/7311/53918/10171/54932/29883/9797/27340/51025/1479/3836/11052/23626/27044/22916/9271/11219/3146/6118/5883/10146/79042/81875/9937/8635/7247/1676/55124/5438/1677/8451/8602/9941/1653/6233/7316/29102/2021/23052/51728/4848/57109/79869/7314/54840/668/2071/11277/51013/25819/4968/11102/79621/51367/9692/51567/5169/317/64789/55520/8909/57472/5073/1776/8450/80055/7538/9337/2965/1797/7257/11284/2073/7486/23293/55218/5896/5980/10595/201626/404672/64852/80746/5981/5168/112479/5932/114034/2967/5394/10111/2067/22909/2068/23405/1643/3005/57804/51585/6419/6041/167227/9924/6037/7507/55629/283/28990/22894/1149/5167/563/6038
## GO:0006614 6731/29927/6227/6132/6142/6202/6223/7311/11231/6734/9349/23471/6181/6156/6217/11224/6206/6194/6728/6235/6230/6175/6158/6201/6233/6747/6187/6729/6170/6143/6134/6176/6188/6192/6193/6129/6147/6222/6208/6210/6232/6204/6726/6229/6228/6167/6155/6128/6152/6171/6161/6133/6160/6141/4736/9697/6191/6234/6169/6146/6165/6203/6122/6136/6209/6727/25873/6164/6231/6205/6135/6168/6157/6138/9045/6159/81854
## GO:0038093 28823/28424/3537/5688/3055/917/5709/5698/919/4651/28778/4067/5693/5713/5336/3702/5721/5691/3514/5685/23547/5788/5690/5684/3937/5686/2207/5695/2210/10213/23198/5588/5699/5714/4690/6850/10095/5702/8013/10096/5708/7454/5692/5704/2213/5795/3071/5683/7525/9402/5594/6654/5694/8454/1147/5718/3984/5682/5716/4775/5707/10552/3326/7006/10097/3500/5747/5058/6714/10006/5534/10092/5696/2885/2212/695/27040/5719/10109/5700/3320/5970/10094/5717/10892/5291/7410/10197/5335/5602/7409/10093/5284/5706/8517/63916/9844/8976/2534/5710/5062/7456/60/6885/998/4772/5689/5720/5599/2889/5701/9491/10454/5879/5711/5715/10787/23191/8915/5296/5290/9861/5705/5581/5609/5906/7189/961/71/4790/26253/10458/10163/3725/7462/1398/23118/147179/3815/8398/25/5170/5338/5601/51517/23291/6464/5580/2268/4641/5532/26060/9846/5530/5595/6416/8945/2209/6500/5295/26999/1793/2206/2353/2241/55198/4214/3551/2205/10451
## GO:0010466 27074/332/9232/4102/4318/7980/2537/1475/6590/6317/5266/5973/2810/8530/2597/5271/274/3697/5447/409/1469/9806/1476/939/51377/7422/27344/6318/5329/1378/1410/5743/551/25816/27290/4504/5054/10049/3428/1032/259/23204/10816/3933/6714/26998/6690/5272/6197/5275/684/2876/7077/65264/8837/8740/5858/55795/7448/6195/9097/64780/5062/1447/2168/4193/51035/51176/10653/5045/3698/10542/7429/50859/9491/90199/1474/79886/58189/51499/55011/331/8996/10047/8301/207/960/5894/80196/9314/11315/1285/54475/9709/6692/7531/351/1654/22900/135/51050/334/718/10935/5037/7076/27018/1893/56925/55031/5896/7035/1800/3700/5607/5076/2719/7057/8434/6622/2/1992/26952/1718/5269/408/3476/4057/3699/3082/1470/831/10406/1472/6478/4804/4018/11005/4803/6694/7078/5627/727/1293/80760/6695/358/10879/51232/4671/6653/1294/2621/1471/3730/58503/1473/7021
## GO:0045824 4321/56833/10859/10225/25939/409/7128/3965/9111/6318/79132/1378/3135/5771/11326/3134/3428/3805/23513/5272/2896/6223/10062/1813/29883/11221/7301/10906/3133/3630/60343/103/634/11277/383/58509/79594/1398/79671/7376/2/710/100507436/5468/11213
## GO:0010883 29923/7124/3569/10938/5771/4792/9641/6721/949/80149/10062/4481/114885/55294/5465/51099/19/1401/4790/718/3690/7376/9619/338/23411/57104/3685/948/114882/5468/4023/3952/1149/79068/32
## GO:0034198 467/58528/468/9681/5610/5594/1611/81929/1026/1965/7351/51100/10985/2475/79726/5599/355/64121/9451/4217/5587/10670/54407/11133/8131/23334/54468/51520/5595/55846/10325/55364/8678/10641/27244
## GO:0043616 1001/55612/57152/2810/5467/5469/11202/4192/5068/2069/8573/677/5727/1948/7421/51384/3849/64919/5796/10413/3037/5587/83481/7051/4853/7538/374/6431/8626/687/3664/2252/6591/1012/58495
## GO:1902743 5365/23603/6624/5880/7454/1785/79647/6714/57175/10109/998/2475/11344/7429/2660/3273/5879/10787/7471/55604/1969/960/6239/10630/10163/8874/2039/538/5168/26053/23189/55909/9759/9353/2241
## GO:1904407 445/3458/3689/3383/5806/7124/5743/1785/10333/3326/3320/199/2185/7099/3553/2475/207/3717/9314/186/1906/148022/183/9722/23576/4317/23564/4088/10365/3643/3043/948/5025/5311/1191
## GO:2001239 2537/3574/5499/7124/6376/3552/2534/3553/2668/4170/7015/5518/7001/207/5519/51741/1437/5196/2623/27429/1613/5598/5979/2260/8737/5607/1495/598/3624/4763/596/1280/219699/6591/8406
## GO:0007190 3973/136/114/1812/2692/1394/153/113/155/49/109/10487/2740/1816/5894/140/116/112/2696/7434/554/115/154/107/108/10486/1909
## GO:0030261 7153/23397/51203/983/64151/891/9918/54892/23310/10051/10592/7273/9131/5119/8091/79648/11044/29781/1677/2852/26993/5619/3020/10270/5620/22985/10595
## GO:0032633 1051/959/3702/942/916/2207/940/5588/3965/9308/6850/3556/54440/3662/7356/7292/8288/51176/3133/3516/50943/114548/5914/5590/79679/90865/2625
## GO:0032733 55765/959/3329/2207/6375/940/3965/9308/7097/54440/3593/64127/3662/7292/7099/3146/602/353514/51561/11334/29108/3082/5590/947/4179/54209/10464
## GO:0040018 5449/5479/2692/3297/55636/2688/6531/1813/6608/7429/1435/2844/7430/5454/2693/1385/8195/6777/51761/25836/5357/596/57731/1735/2691/585/2690
## GO:0043368 915/1794/5788/30009/4063/3569/8456/5771/3593/6693/3662/6722/972/7535/3707/2475/64919/1540/50943/6774/3594/51561/10538/6794/6778/596/6469
## GO:0046949 6319/6576/9200/79071/2180/2182/64834/51144/23305/201562/23205/2194/47/81616/2639/9524/51703/5538/31/38/79966/2181/6785/7923/60481/84869/54898
## GO:0050931 6663/4948/4644/164/84079/1908/8975/5873/8943/56999/81285/10981/967/2767/89781/3815/9839/1910/4286/23682/4435/596/80070/4208/4254/5167/2737
## GO:0061462 3920/57707/27183/9179/64089/10542/7879/975/23163/9146/51172/57142/11133/79158/9475/950/23334/8031/8546/51520/9648/4734/79589/9765/6653/23677/1191
## GO:0071709 2048/1000/5660/54413/859/2319/302/6281/2054/11252/23180/5728/11141/288/858/4038/6711/9378/5789/9379/22871/10211/2013/7357/857/9863/57502
## GO:1903955 9141/5880/10055/57602/7332/6721/7855/1459/51100/59286/55294/10075/7323/9776/2931/79778/27429/8314/89781/9520/10425/55823/65018/54741/5562/3305/22885
## GO:0030901 2019/11240/2020/9143/2539/7473/22943/838/2254/401/1152/6654/5810/6422/10971/9118/7533/1340/3309/1267/8323/4722/5309/522/3579/79109/10409/515/80853/6271/60/7472/998/8655/27023/7471/4040/22933/4155/27089/7531/1453/6872/7707/387/6259/7976/57447/2648/2260/1454/5354/3280/1215/2263/9919/8321/4086/1499/80264/7474/9231/2746/4929/6469/4487/79971/4129
## GO:0045851 56833/50617/533/9296/551/525/356/887/9114/6556/760/2896/7274/54982/528/23545/51606/25932/552/529/523/526/7879/527/55647/155066/537/51382/9550/10312/1182/8992/1201/5538/535/534/766/23682/1203/596
## GO:0099072 3208/55737/23513/1814/5584/64854/5602/1948/4218/3265/1740/80852/6616/1739/2319/1741/5906/22883/7531/23096/23237/2693/4983/163/3690/1605/102/1815/9912/8650/9211/2059/64840/2060/50632/27065/55914/5590/23426/2239
## GO:0006721 1381/7804/6770/6715/336/6017/24/57016/2224/1557/8608/50700/5467/345/348/5947/1956/5406/131/6121/1109/231/5949/1544/64220/59342/337/54576/8694/1545/128/335/1645/10170/64577/1559/51109/53630/1565/1208/9249/27429/6010/1382/9227/611/6382/375790/9672/55937/8854/338/220/1576/56603/1571/7276/6383/1392/2719/2262/55825/6385/9453/224/54884/1543/8644/5919/2817/5950/216/4023/1592/3339/4035/8228/2239/4036
## GO:0045995 983/29127/7262/60436/22943/6789/9334/23432/655/6996/5567/6422/3975/3170/6788/3172/154796/8324/3586/1044/7289/7917/7472/4838/5566/27042/2668/335/6615/6495/6928/7471/3955/284217/65125/9314/4780/1045/4155/657/51552/26146/56983/9320/23213/25819/23187/3911/23332/2623/5598/5048/3557/5754/27330/2624/1605/7976/989/6909/1877/80199/79813/10427/2260/5607/64321/8521/23236/54903/3280/9620/25836/8321/1499/9904/2535/3910/3643/7474/26011/7482/23122/6469/1290/1289/3908/3909/54361/367/3479/9370/652/2625
## GO:0045598 1869/1051/63976/6783/3638/6789/5467/7480/7124/3569/5743/688/1240/51320/6422/1649/1432/2784/57761/3398/6788/1050/55885/80149/677/11007/11221/10498/3358/2475/59341/3630/3192/7471/79969/207/7040/51043/22933/27120/28951/22852/4041/201501/6272/25819/2852/9573/55252/7204/10013/7538/650/2624/171023/25937/1385/6095/4320/60485/3356/406/23411/3280/2874/65989/4088/182/7474/8840/11197/678/1389/5919/3400/2308/54795/862/6591/5468/4023/81029/3952/79068/4488/7494/6097/7704/7041/23414/5167/2487/7166/9370/2625/10974
## GO:0000725 10635/1111/8438/5888/2237/55010/641/55159/25939/2072/10213/79000/8914/4683/142/23028/3014/5531/7454/7517/6119/10721/79677/672/675/7334/5889/151987/10097/4796/23137/51444/55183/6117/4361/79035/3980/6118/9400/23514/51548/2521/9985/64110/23347/5892/64710/5893/51750/9907/54386/6421/79728/10933/55135/64210/7528/55317/57599/56154/54537/7515/642636/254394/56893/64859/55218/27343/7516/472/5890/5932/29072/7158/10111/22909/22891/23503/55693/55086/51149
## GO:0002052 259266/5080/6663/7422/23028/3091/6376/1813/6608/27185/63925/6604/7976/7424/1499/6469/2737/1524
## GO:0002320 11051/6659/5591/6654/6688/4851/11277/3981/3815/10538/22890/3280/2322/596/201163/6469/652/2625
## GO:0002374 10859/336/3735/9474/7124/7097/7133/1432/64127/3586/335/284/3098/114548/2150/56848/5595/7474
## GO:0009081 586/3028/56922/1738/1629/593/26275/3712/10295/38/587/27034/549/3155/4329/594/64087/36
## GO:0009083 586/3028/56922/1738/1629/593/26275/3712/10295/38/587/27034/549/3155/4329/594/64087/36
## GO:0015874 151/152/6530/3745/60/5020/6804/5028/186/6580/135/183/2693/1392/6622/5021/11188/150
## GO:0030220 51266/836/6722/80739/4352/4627/5781/9948/5777/23218/2033/65082/6886/2623/87/10519/842/4208
## GO:0031498 3159/11240/92815/4778/6597/6599/11198/6418/6603/55201/6602/6598/6605/83743/7141/6604/8289/6601
## GO:0032727 4321/6772/51311/8767/64135/3329/23586/1147/3663/1660/3665/7099/3661/29110/51284/7098/29072/57506
## GO:0032816 3600/10125/164/7305/3134/3593/9760/3592/3606/3133/3916/148022/2323/51561/22890/6777/558/2621
## GO:0032986 3159/4609/92815/4778/6597/6599/11198/6418/6603/9349/6602/6598/6605/83743/7141/6604/8289/6601
## GO:0033630 10563/6352/55612/916/6850/3071/9780/2303/5777/6366/8754/5881/5979/80173/10519/5420/8631/7042
## GO:0035357 2171/246/5165/5469/55885/6256/5740/81/59344/55252/171023/7291/23411/2874/10370/5468/3952/247
## GO:0035929 51083/1394/2661/5781/654/186/114897/183/2587/5972/4824/56729/1392/3624/1407/8322/185/6863
## GO:0039529 330/7353/23586/79132/63906/6397/708/89870/26057/55666/55601/329/26065/9698/79671/23369/54941/29997
## GO:0043371 864/30009/865/54542/3558/80149/7292/3718/3146/3142/51043/50943/301/3566/4092/149041/9655/604
## GO:0043984 9474/672/3054/10943/54934/10445/10269/55011/55683/151050/55167/8473/51230/4297/23411/26053/339287/84148
## GO:0051797 10855/1001/55612/51083/7480/7124/8456/6608/4089/8717/27121/1499/7474/11005/7042/4926/4488/10468
## GO:0061162 6624/23616/4478/23513/5584/998/2302/9368/284217/4649/5754/387/4983/2294/8729/6939/4131/7474
## GO:0070584 80207/10059/4726/6832/581/11232/4534/79784/26073/80025/4976/55022/80224/598/56947/51024/9638/10087
## GO:0086014 23630/9631/6262/3741/6331/3762/2316/10052/287/3781/3760/783/3784/2702/54795/775/55800/2697
## GO:0086026 23630/9631/6262/3741/6331/3762/2316/10052/287/3781/3760/783/3784/2702/54795/775/55800/2697
## GO:0086066 23630/9631/6262/3741/6331/3762/2316/10052/287/3781/3760/783/3784/2702/54795/775/55800/2697
## GO:0097062 9456/348/2213/91752/8898/55737/5621/2534/2904/2017/3706/9463/3630/23613/51104/3643/3675/3480
## GO:0098780 3099/8878/10133/9776/57154/55626/27429/93974/79594/10013/9927/54832/65018/5071/2874/11140/8678/22863
## GO:1903204 468/8013/3091/23657/4841/57707/25793/3586/5978/7471/10533/11315/55074/65018/5071/8321/1499/7248
## GO:1903599 664/3091/3099/25793/10133/57154/11315/93974/10645/79594/10013/3064/9927/54832/65018/5071/11140/55187
## GO:0006637 5163/55711/6319/6576/8942/11332/55856/1737/215/9200/79071/5160/5165/2180/26027/570/51268/25874/2182/23597/5161/8050/64834/51144/23305/201562/10005/1622/55066/23205/1738/2194/4598/8694/1743/4967/54995/47/81616/54704/2639/283927/51660/9524/51703/10249/5538/8801/31/10654/38/23417/8803/6622/5162/5164/79966/2181/3155/2954/6785/7923/60481/5166/3295/84869/80221/32/54898/10157
## GO:0035383 5163/55711/6319/6576/8942/11332/55856/1737/215/9200/79071/5160/5165/2180/26027/570/51268/25874/2182/23597/5161/8050/64834/51144/23305/201562/10005/1622/55066/23205/1738/2194/4598/8694/1743/4967/54995/47/81616/54704/2639/283927/51660/9524/51703/10249/5538/8801/31/10654/38/23417/8803/6622/5162/5164/79966/2181/3155/2954/6785/7923/60481/5166/3295/84869/80221/32/54898/10157
## GO:0051983 991/1062/10403/9787/10460/4751/4085/81620/7272/9212/9319/891/11004/990/5347/29127/701/10615/1894/9700/4288/2237/699/1063/26271/5885/54908/8260/1663/7517/79677/25906/8379/23137/1459/84861/7756/4342/55795/56984/998/10664/7175/996/9555/3192/22933/6421/51451/51143/55719/1778/23063/9698/55755/23369/55781/8697/472/56155/8658/546/3550/5925/1499/8452/1843/324/8678/4926
## GO:0000305 2643/1719/51022/7124/655/4504/1728/7351/2176/337/6647/4353/7001/2074/7352/4780/11315/10587/23334/4846/538/9104/948/10516
## GO:0000737 3148/3569/9131/3297/1773/836/3837/400410/581/80198/51025/3836/23626/3146/1676/1677/2021/57109/668/317/1776/3005/6419/1149
## GO:0001773 914/1794/6504/4055/5971/3662/6688/55509/3586/3146/3565/3516/7040/7189/1437/2323/5663/81501/814/10077/10538/29108/7048/10202
## GO:0003180 2626/6091/4091/4851/4772/6615/7040/26508/6093/9475/7291/4846/6662/5925/23493/182/1942/6586/9353/6591/11117/2006/652/2625
## GO:0030511 55612/2805/1030/10755/3326/6868/4221/28996/6386/3622/22938/2033/4089/8516/7057/1601/6794/1387/1028/4435/201163/10370/7041/7049
## GO:0032607 4321/6772/51311/8767/64135/3329/23547/23586/9111/1147/3663/1660/3586/3665/7099/3661/11277/29110/51284/7098/64343/5802/29072/57506
## GO:0032814 639/3600/26191/10125/164/7305/3134/3593/9760/3592/25807/3606/3133/3916/148022/2323/51561/22890/6777/100507436/558/10464/3952/2621
## GO:0036296 1789/3066/1019/664/9114/5428/3741/1026/2056/27035/23545/523/355/10533/537/9550/847/5423/1543/2308/1277/5468/5159/857
## GO:0042311 2643/136/1812/9474/8985/348/134/5997/2876/4842/6647/846/186/135/183/624/4846/8195/3827/2982/1910/3672/1373/5592
## GO:0050974 8989/7852/4914/79955/40/23349/6323/2534/784/57053/5270/55584/3815/3673/8195/25861/3356/23621/1301/3736/84059/6387/63895/3249
## GO:0070198 22948/908/10576/7203/10574/675/10575/65057/79035/7014/10694/9555/54552/7015/7520/54386/545/55135/7013/80351/26277/25913/8658/546
## GO:1902745 23603/6624/5880/1785/79647/6714/57175/10109/998/2475/11344/7429/2660/5879/10787/7471/55604/6239/10163/8874/538/5168/26053/9759
## GO:1903846 55612/2805/1030/10755/3326/6868/4221/28996/6386/3622/22938/2033/4089/8516/7057/1601/6794/1387/1028/4435/201163/10370/7041/7049
## GO:1990776 990/1535/83990/5743/1536/3297/88/760/6714/55532/5970/4142/815/4780/8826/186/4790/6093/183/9475/10768/5580/857/185
## GO:2000406 6278/3627/10563/6364/6352/6375/8772/729230/6693/101/6868/199/8740/3676/9943/6366/65125/351/387/102/29108/27347/7474/6387
## GO:0008645 11182/28999/6515/2171/1812/6513/5467/8013/7124/3099/8218/7525/6518/6927/26291/1432/57761/5473/5579/2688/6524/4205/208/6527/5584/3553/5781/66035/673/7015/55974/6523/51548/56606/2887/3630/207/4780/23433/5906/79602/2931/6272/1906/10776/6514/5319/718/6506/55022/5458/8682/2695/29988/5741/51763/6814/6526/6517/79058/2719/51422/26060/8660/81031/11132/5295/3643/7248/6041/114882/1389/9847/10580/25999/55198/3952/6253/1909/5167/3667/3479/9370
## GO:0072599 23480/6262/6731/29927/6227/6132/6142/3309/6202/6223/7311/11231/6734/9349/23471/6181/6156/6217/11224/6206/6194/6728/6235/6230/6175/6158/6201/6233/6747/6187/6729/6170/6143/6134/6176/6188/6192/6193/6129/6147/6222/6208/6210/6232/6204/6726/6229/6228/29082/6167/6155/6128/6152/6171/6161/6133/6160/6141/4736/9697/6191/6234/6169/6146/6165/6203/6122/6136/6209/6727/25873/6164/6231/6205/6135/22930/6168/7095/6157/6138/9045/6159/81854
## GO:0009880 6491/3549/7490/6862/655/10959/3975/8828/10371/5046/7855/10409/5727/4838/4091/6493/7476/23242/1947/7471/4089/4087/9573/26005/10818/80055/80319/7403/4090/57669/6911/4762/6405/2263/4086/1499/23314/4088/4435/7474/4222/8829/6469/7704/4223/6926/2066
## GO:1902686 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/10105/7159/10018/5366/2932/10971/7533/5534/7029/581/2139/7529/841/79680/5599/54978/28978/1386/6687/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/55288/8626/89941/7157/7755/596/64112
## GO:0003272 2253/655/6091/4851/6615/653/3516/7046/657/4089/26508/2022/90/23493/7042/7048/8642/6591/55273/4488/4487
## GO:0006688 7368/6489/8708/79152/9334/8128/51046/53947/81849/8703/29906/7903/9514/2583/9215/8869/8705/9331/5562/8707/7357
## GO:0008210 3294/6770/6783/50700/1312/1588/51144/3292/51171/1545/8879/79154/5156/25976/3283/59338/51478/51170/7923/6817/3295
## GO:0021680 9928/6712/64211/16/23287/3975/3309/4669/372/8704/8861/27089/23017/473/8925/6095/538/25861/79934/23544/4628
## GO:0021952 4781/2047/2049/1141/7101/2043/25987/51199/6324/104/5048/2736/23334/9839/1630/23077/4929/9353/57731/1009/9201
## GO:0022410 10874/6770/6715/3737/3062/100/2692/1814/1141/134/1813/5730/4544/1437/135/1392/22871/4887/8863/2691/1471
## GO:0032800 59272/3066/7124/3091/26291/10330/10802/10062/3065/3586/43/5045/5465/1906/10013/3690/22937/3685/3202/5468/9370
## GO:0032925 1761/2254/2280/1460/3547/9350/23144/4221/93/4838/4087/91/6497/92/4092/23592/90/10272/6469/10468/9863
## GO:0036003 1051/467/7422/468/3091/3297/4504/1649/3309/10985/22926/4851/1388/3516/4780/5598/51360/7157/10365/90993/4582
## GO:0045724 79734/10801/55835/10807/202018/49856/23300/55704/9001/9662/57787/55329/3064/989/80199/9696/2909/9738/22873/51364/585
## GO:0046697 1515/1594/6696/5467/5743/5594/1508/682/4221/7421/3726/5740/55870/2693/6781/3976/5595/2057/5764/2697/8614
## GO:0050996 336/215/1374/26291/134/208/27329/337/3553/2168/5465/6343/51099/5581/13/7291/5580/57104/8660/225/3667
## GO:0062009 6664/1302/2304/55636/51176/7476/6899/1739/64386/4089/4087/3714/8321/2535/7474/7042/7048/7481/2615/7043/7049
## GO:0070199 22948/55506/908/10576/3009/7203/10574/675/10575/10856/65057/79035/10694/9555/23514/7015/55011/55135/7013/112869/25913
## GO:1901889 23603/7124/6714/11170/1636/4323/6093/56940/395/5728/9475/2039/9270/10395/7057/54828/94/23122/4035/3551/347
## GO:0006672 7368/8708/2529/8877/2525/3696/79152/4759/7124/5027/9334/7915/57733/55750/29095/64834/242/8128/2528/2760/64781/51046/5660/54982/10825/8703/2055/8439/6610/23659/5518/7903/10558/8879/171546/7132/259230/9514/2527/2583/9517/27429/8869/8705/59344/9331/5023/3074/3491/5515/8398/1201/55512/5580/6609/5562/8707/56848/2581/2717/427/10087/7357
## GO:0031062 1789/3009/1786/2641/672/3720/5081/55183/59335/22823/22976/26097/23476/94104/8726/22938/4000/4089/23168/54904/80349/4204/9646/8473/4297/23411/54623/26053/57343/1499/4602/5252
## GO:0042269 3902/10859/259197/4068/8807/409/3965/6318/56253/5817/10125/3135/164/9437/3134/3593/3592/3805/5272/10666/11126/7409/3133/3916/634/59067/1398/23705/5819/6777/100507436/3952
## GO:0045616 1515/55506/2296/1594/1514/865/10626/5469/1041/79977/8202/360/5068/5275/8689/677/7421/9555/81537/6093/9475/7538/3890/5583/6431/8626/3204/4926/58495/1513/4488/247
## GO:0046834 3613/10380/8525/8877/1608/55750/54928/64781/8394/5305/8395/79837/22979/23167/1606/1607/55361/5290/3612/1609/5297/8396/3628/8526/200576/56848/9807/5295/23396/51447/9162/8527
## GO:0048713 4821/27242/3066/7097/7852/4192/7133/1814/3398/10215/6009/3065/11221/10419/4851/9948/2475/7161/1605/5803/23500/3280/4763/1499/22891/26011/3400/5468/6469/5764/443/1746
## GO:0090279 6347/6406/9456/2641/1950/51393/6690/8291/8573/5621/5987/2534/5155/9914/859/846/2916/799/6781/5664/3958/1392/6588/56848/1499/10268/7779/5311/6387/5159/5350/7349
## GO:1902229 79915/637/23028/4282/57805/1032/80237/54929/972/5883/6615/22954/3622/51499/960/6188/51588/64844/7178/6498/6880/55031/138151/598/23411/51616/596/6591/57007/6387/1191/4582
## GO:2000826 2296/22943/2138/655/6091/5292/6608/2303/6910/4851/6495/27302/3516/7046/4089/650/659/9464/7291/3670/6909/6662/2022/54903/3280/90/1499/182/7042/7048/10512/652
## GO:0006486 79623/4597/94025/727897/10331/200424/6489/2529/10195/56913/2525/3600/6185/2591/55858/6184/746/6484/27087/8813/9334/8985/10164/9245/7415/2650/4248/3703/4504/2651/4585/27090/5373/1650/79369/25834/29929/79644/26290/8128/2528/10678/84061/51046/10690/4586/53947/81849/6482/2131/1798/11320/5238/2132/8703/11282/432/2134/51006/8704/4584/8818/79695/2683/2526/1603/90411/79796/2523/3998/4583/8702/29071/4242/29906/28/51465/3955/22845/6388/11261/57171/2801/433/7903/79947/54344/9514/79147/51146/10565/56983/51172/2590/2527/7327/11253/23509/9215/4249/5986/79087/8705/6480/9331/55624/4864/7991/79053/5663/2524/23275/10267/4245/10905/56667/2589/2135/6483/29880/79070/4247/2137/9526/29954/63917/51301/26229/285203/8473/10329/2218/9321/11041/11285/10724/7423/9528/10585/4122/57876/957/64689/11070/4124/66008/11226/57134/79868/91949/80267/4589/4588/64788/51809/2530/10610/22906/4121/4582/55568
## GO:0043413 79623/4597/94025/727897/10331/200424/6489/2529/10195/56913/2525/3600/6185/2591/55858/6184/746/6484/27087/8813/9334/8985/10164/9245/7415/2650/4248/3703/4504/2651/4585/27090/5373/1650/79369/25834/29929/79644/26290/8128/2528/10678/84061/51046/10690/4586/53947/81849/6482/2131/1798/11320/5238/2132/8703/11282/432/2134/51006/8704/4584/8818/79695/2683/2526/1603/90411/79796/2523/3998/4583/8702/29071/4242/29906/28/51465/3955/22845/6388/11261/57171/2801/433/7903/79947/54344/9514/79147/51146/10565/56983/51172/2590/2527/7327/11253/23509/9215/4249/5986/79087/8705/6480/9331/55624/4864/7991/79053/5663/2524/23275/10267/4245/10905/56667/2589/2135/6483/29880/79070/4247/2137/9526/29954/63917/51301/26229/285203/8473/10329/2218/9321/11041/11285/10724/7423/9528/10585/4122/57876/957/64689/11070/4124/66008/11226/57134/79868/91949/80267/4589/4588/64788/51809/2530/10610/22906/4121/4582/55568
## GO:0008593 79094/27255/4100/1956/655/1950/4792/9148/64127/6091/51441/55343/5584/81544/2079/51006/84934/55294/4851/11235/1999/4242/81619/7471/4854/3955/3516/22938/207/2033/56983/55662/11060/23509/10098/5986/4323/55534/6774/51341/2624/3815/22848/429/9270/63917/9794/8850/8788/9139/3714/4855/57178/3280/8626/65989/56339/408/23493/1387/51162/604/182/4179/23462/7042/22905/2620/4856/56892/10631/388677/1746/3572
## GO:0030837 6712/29767/7111/119/5216/5217/822/6710/5962/11344/7429/55604/29766/10565/7114/10677/9026/2039/6708/11078/8195/2059/6711/5580/5756/51332/23189/118/6709/9353/2934/57731/585/85477/50853/80206/25802
## GO:0070231 3620/6352/3559/3575/578/100/939/5588/3965/5133/8772/3091/356/10018/384/29124/101/581/3718/6194/1676/9093/10945/8915/207/1178/56891/3958/5896/8737/7157/7474/1942/1831/2737/652/5304
## GO:1990928 1978/467/58528/468/9681/5610/5594/1611/81929/1026/1965/7351/51100/10985/2475/23367/79726/5599/355/64121/9451/4217/5587/10670/54407/11133/8131/23334/54468/51520/5595/55846/10325/55364/8678/10641/27244
## GO:0043500 2146/28999/1535/3162/8557/58/2539/3600/57817/4624/142/8013/10539/7133/5578/10038/4878/7135/5747/5058/3720/4205/5997/58529/199/4654/8837/9472/3553/9569/4851/2475/2627/5465/5152/2660/488/7222/10891/27302/4625/8996/148/859/9150/7132/9314/818/4000/5999/89/2931/1906/816/4089/7134/7528/493/6093/183/9475/51778/9464/4846/5300/4656/3488/2309/22876/1025/5756/5530/9759/23125/7138/8654/23493/4088/6548/5025/29995/8678/2628/4208/2308/2934/4653/3572/3479
## GO:0034103 952/8792/7037/54849/3600/7128/1445/6850/4160/5027/3569/613/1956/4192/5578/3593/3558/6422/760/6714/796/3635/101/3606/581/51208/7421/10457/3273/177/26585/64114/9842/51430/7040/634/59067/537/1436/6093/183/81501/9475/51561/3690/2324/8600/9464/3375/5530/4763/7157/29/1901/2488/3953/5166/3952/1471/53832/2697/4982/9607/7060/284266
## GO:1903321 4085/9636/23560/26271/575/706/409/80758/7128/1020/6659/9474/3301/9373/5582/10625/9532/3984/55611/8291/10196/5970/9683/9349/2534/11338/51035/2475/59343/54552/6201/51160/11146/10362/11261/207/6188/5581/23251/11315/54765/9320/6737/23376/6872/5663/4092/10363/64844/25/51366/6135/9529/8473/7375/2729/2874/1407/10401/1499/408/825/819/8864/857
## GO:0002228 3002/3902/57823/10859/1054/3824/11151/80328/10225/259197/4068/203068/8807/5052/409/3965/10383/6318/56253/5817/10125/3135/164/9437/3134/3593/3592/3805/5272/6845/3606/10666/11126/7409/5873/3133/5777/3916/634/59067/1398/80329/23705/3811/5819/1130/6777/100507436/3952
## GO:0006487 4597/10195/6185/55858/6184/746/8813/7415/4248/3703/1650/29929/79644/84061/6482/1798/11320/5238/11282/432/8818/2683/1603/90411/79796/3998/51465/22845/57171/433/79947/54344/9514/7327/4249/79087/6480/7991/79053/4245/29880/4247/9526/11285/957/64689/57134/79868/2530
## GO:0021872 259266/5080/2253/1749/1812/64211/55079/166614/57282/5629/5456/7101/2637/6091/6656/22809/8828/10371/1813/27185/55558/64919/7314/10716/5881/7080/1436/27089/387/2624/6900/26468/429/8650/2260/538/3280/2263/9693/3624/56339/23314/6299/7474/9353/8829/2737/1746/2066
## GO:0009953 5080/9355/4821/2019/6496/2253/7473/4188/23432/25928/5567/25806/6422/1649/3975/3237/6656/5081/9350/6608/7479/5727/7289/4091/5566/7476/59343/51098/2128/4825/26585/5626/657/8022/26146/4010/7080/1906/64853/4087/23770/55764/5663/3207/2736/429/80319/4038/79176/54903/79600/90/3199/1499/2735/64388/8646/3212/6469/4681/57728/58495/79659/658/2737/652/3169
## GO:0031397 4085/9636/23560/26271/575/706/409/80758/7128/1020/6659/9474/3301/9373/5582/10625/9532/3984/55611/8291/10196/9683/9349/2534/11338/51035/2475/59343/54552/6201/51160/11146/11261/207/6188/5581/23251/11315/54765/9320/23376/6872/5663/4092/64844/25/51366/6135/9529/8473/7375/2729/2874/1407/408/819/8864/857
## GO:0019076 79720/1642/5371/9126/89870/5481/5478/27183/10155/7726/7706/5987/11074/22954/25978/7879/9798/85363/5091/9525/6737/7251/9218/858/11043/55223/27243/10206/81603
## GO:0030224 8544/4609/7422/5469/4495/3428/8563/920/3635/677/325/2194/972/3665/4627/5153/1435/1436/1021/81501/3725/56998/22985/6670/2242/3204/4208/5468/652
## GO:0035890 79720/1642/5371/9126/89870/5481/5478/27183/10155/7726/7706/5987/11074/22954/25978/7879/9798/85363/5091/9525/6737/7251/9218/858/11043/55223/27243/10206/81603
## GO:0035891 79720/1642/5371/9126/89870/5481/5478/27183/10155/7726/7706/5987/11074/22954/25978/7879/9798/85363/5091/9525/6737/7251/9218/858/11043/55223/27243/10206/81603
## GO:0045622 8767/942/30009/54542/3593/3558/3662/941/80149/3606/6363/10892/7292/3718/3142/51043/50943/114548/301/3566/4092/3594/149041/51561/9655/5914/4602/604/5590
## GO:0048333 22943/2138/10736/8091/89870/2139/2303/4838/3691/9314/657/3688/6886/3207/3690/2294/3673/2116/7403/2260/23135/64321/5076/8516/2263/3624/4086/3675/652
## GO:0052126 79720/1642/5371/9126/89870/5481/5478/27183/10155/7726/7706/5987/11074/22954/25978/7879/9798/85363/5091/9525/6737/7251/9218/858/11043/55223/27243/10206/81603
## GO:0052192 79720/1642/5371/9126/89870/5481/5478/27183/10155/7726/7706/5987/11074/22954/25978/7879/9798/85363/5091/9525/6737/7251/9218/858/11043/55223/27243/10206/81603
## GO:0098534 10733/6491/284403/23636/672/55835/55722/79959/10432/4869/1017/1874/1069/4591/9662/9525/26005/152185/22995/55755/8850/2648/56890/27243/80254/9738/9851/85459/10769
## GO:1903131 8544/4609/7422/5469/4495/3428/8563/920/3635/677/325/2194/972/3665/4627/5153/1435/1436/1021/81501/3725/56998/22985/6670/2242/3204/4208/5468/652
## GO:0050684 891/4116/6732/6626/11051/23210/580/3297/9588/10656/4686/79577/904/708/6428/9967/6434/11189/3181/4654/64783/5725/677/11052/1660/55234/10898/29890/22916/11338/10921/10772/6429/5978/27339/2332/5936/10657/10914/6432/1859/3192/79171/79869/6829/9589/22938/4928/23543/6733/1655/79810/64506/8241/51341/3191/6433/58517/3178/6651/91746/9646/10768/6830/6431/202559/1025/79066/54623/9939/7072/10284/10521/8106/9810/140890/22849/6625/10181/83989
## GO:0000271 10331/5499/9334/1950/7360/2932/79369/5236/10678/2992/8445/208/2997/5500/2131/2132/2475/2645/5155/9348/1213/23178/3630/3037/207/7040/5260/2931/5509/4790/2103/3036/5741/55454/8908/2998/51763/55790/55512/2632/178/5261/8660/3643/3340/10580/8864/5167/3667/3479/5507
## GO:0046620 983/891/1482/3574/2296/2253/2539/5447/57817/2254/6789/4624/2395/5629/3776/7490/5594/10018/54440/10038/1432/5747/5058/3720/6788/5292/5997/8531/6608/10409/9472/6647/2303/7472/6910/10498/5897/4851/2475/2627/5465/3142/27302/10413/3516/859/26281/7046/9150/207/657/5600/5999/2931/1906/7528/27230/5728/7161/5300/6909/60485/2260/8737/2263/6532/23493/23286/2735/55841/4211/4208/7048/5950/2247/32/23414/2697/7049/3479/9254/2066
## GO:0003254 2537/8326/2730/239/706/215/142/2805/5027/10021/2257/885/10962/6714/55012/6327/6331/6336/859/4923/6324/5774/8913/4092/8620/288/2729/2702/3791/29098/596/54795/2273/4653/23327/23171/55800/2697/1634
## GO:0008333 274/7415/4074/55681/6845/10042/64089/51510/4534/25978/7879/22898/65082/1045/51361/6272/9525/7251/64400/9392/63894/27072/81609/55823/64601/23295/1130/80700/154/56112/23339/63971/9482/29911/66008/22863/22906/388/9737
## GO:0060563 6664/54845/1051/5459/2253/1834/4647/6659/474/1000/5054/23513/79955/56647/79583/6647/4838/9368/55283/3516/10083/2016/5048/3642/9750/650/4610/25/11078/27077/429/10427/2260/3714/3280/23493/182/7481/54361
## GO:1902369 5317/1869/4904/1994/10492/26986/9704/11044/1432/6556/4615/9967/8531/9261/10128/1660/339/11187/2668/2475/23367/54855/2332/3183/10605/3192/3184/23435/25819/51594/8241/5073/7538/7432/10949/90806/10140/79048/1153
## GO:0036503 80020/79139/23753/7353/10952/7415/55741/10134/8975/7184/3309/54431/55432/55666/51009/7706/9097/7917/51035/26232/4287/23197/29761/23190/51465/550/4189/10613/23392/4780/267/7327/11253/6048/9709/11236/1861/10299/29978/54788/7993/51136/57333/10869/10956/57003/6449/10273/79089/80700/9695/6400/5071/11160/10206/7844/7466/9024/80267/857
## GO:0051181 3934/81693/81034/6573/2694/9356/5027/51293/4363/23657/10058/2352/6948/9197/8402/2348/10478/9368/284439/9962/22/2350/89874/788/5538/8029/55652/51310/55788/10560/3263/6947/80736/4036
## GO:0051646 7345/10059/3091/2011/4139/55669/80179/8936/4205/10128/55201/23277/6683/4534/8409/7314/487/23095/4976/79594/10013/9927/2648/55288/5819/89941/57835/9638/4131/66008/4747/213/55638/4137
## GO:0086004 1824/274/6262/5142/10021/2626/134/6331/488/1739/476/859/2316/7341/5318/5144/3759/1829/3728/6781/2258/287/1832/9722/2702/29119/29098/10142/6717/54795/477/857/775/5350
## GO:0090311 3458/7422/57805/5927/25855/5599/3622/1859/10474/5587/7040/51043/2033/50943/26993/6497/2339/10270/25865/1487/65018/4752/5562/25836/200734/56848/7157/5563/604/56271/6720/10129/7349/4137
## GO:0015749 11182/28999/6515/2171/1812/6513/5467/8013/7124/3099/8218/7525/6518/6927/26291/1432/57761/5473/5579/2688/6524/4205/208/6527/5584/3553/5781/66035/673/7015/55974/6523/51548/56606/2887/3630/207/4780/23433/5906/79602/2931/6272/1906/9962/10776/6514/5319/718/6506/55022/5458/8682/2695/29988/5741/51763/6814/6526/6517/79058/2719/51422/26060/8660/81031/11132/5295/3643/7248/6041/114882/1389/9847/10580/25999/55198/3952/6253/1909/5167/3667/3479/9370
## GO:0072527 9582/1503/7083/7378/200315/7298/4830/1841/1807/51733/1633/7374/1890/7372/60489/6240/6996/27350/5594/56895/200316/790/9519/56474/54963/55326/4913/51727/79178/1723/79077/339/10930/2079/23583/5631/2475/8930/4833/10554/1854/978/6470/8277/10201/4968/27010/56894/8226/5169/1040/10555/4907/8760/55/57379/1635/10423/56953/29922/1806/1373/9583/7084/4329/81602/10560/80704/4832/8382/26289
## GO:0001946 2296/5629/93/2303/5784/1969/10630/54345/659/2324/5532/7424/22846/94
## GO:0002693 1991/3383/8772/4192/5724/729230/101/3676/177/9750/7070/3554/83483/80310
## GO:0006474 80155/15/6659/8260/80218/60560/79829/2033/84779/8850/79903/79612/1387/24142
## GO:0006895 79585/9980/9179/51552/6272/8729/55062/27252/55435/54832/2060/55614/23230/23041
## GO:0009415 4914/231/359/9033/5602/552/928/1386/3856/493/6494/7054/80781/5311
## GO:0010759 6352/3735/1240/4192/728/719/1432/79647/59341/2660/1435/7057/5595/5919
## GO:0010819 6278/3627/10563/6352/6375/729230/6868/8740/9943/6366/65125/102/27347/7474
## GO:0014856 5467/2047/79647/8837/6495/2660/147912/284/94104/3717/6774/4656/2247/6469
## GO:0015732 8792/10257/1244/4282/5027/522/3553/5608/5020/4843/1906/8600/5025/3952
## GO:0032105 885/80763/5465/29937/2693/8620/8195/25959/4925/6591/3952/585/7349/9607
## GO:0032108 885/80763/5465/29937/2693/8620/8195/25959/4925/6591/3952/585/7349/9607
## GO:0032274 2297/3814/3623/64111/6865/668/4089/4986/7110/1392/3624/3952/3625/6926
## GO:0032352 133/3458/5447/7124/3091/3553/654/10891/7849/405/1958/3249/54361/2625
## GO:0032486 9928/867/5912/5911/7077/57826/5962/27352/2889/5908/5906/9693/10411/10769
## GO:0032736 3965/5047/3556/3662/7292/3565/3133/114548/23765/55540/5914/5590/90865/2625
## GO:0034349 6347/27242/1020/7186/5578/836/5584/5583/842/5580/5925/7157/2621/9590
## GO:0034616 445/6721/2113/4091/8754/19/7040/9314/4780/5598/4092/5607/10365/7043
## GO:0035864 3297/6647/6569/3746/1585/1740/10891/2796/11093/1742/1584/8912/79800/1393
## GO:0043931 10507/6261/26585/387/650/5741/64131/7059/4057/8642/3952/79633/5364/3479
## GO:0044144 820/1991/3394/3929/7124/4049/3593/8878/3586/4353/5007/4153/948/1511
## GO:0046629 10859/2841/5788/6850/3071/1525/4277/64127/10803/9580/3714/6777/1960/100507436
## GO:0048012 3925/5771/5058/5770/11082/5879/4486/22933/4233/81792/3082/8829/3249/4485
## GO:0048268 8218/1175/23149/1211/9685/1213/8301/9892/9026/163/2060/5286/50632/3092
## GO:0051709 5551/3458/3853/2597/5027/2208/10018/6372/57115/8993/4843/383/572/2150
## GO:0060134 2173/1812/1496/1814/6531/2895/1813/2902/57680/135/5728/1855/9378/23621
## GO:0060766 6943/6597/6422/8928/3065/4838/5245/9063/26508/9612/51341/23411/9611/1601
## GO:0070262 5499/4690/5536/78986/5518/5516/23645/26051/7531/5515/9647/5530/23075/1843
## GO:0071218 79139/23753/7353/7415/55658/7917/4287/55284/6048/1861/54788/10013/10273/8452
## GO:0071380 5031/6422/5732/7292/2782/5030/207/5581/10270/112/31/5562/5563/5468
## GO:0072109 8710/7490/655/3570/8837/2303/5155/59/2828/1958/947/5159/80310/652
## GO:0072160 8842/6772/100133941/3975/9788/10413/7849/25937/3976/5076/1499/4208/79633/2625
## GO:0090197 7124/199/4155/1436/3566/27159/9173/29108/727/4023/90865/4035/10631/247
## GO:0098840 3799/7014/547/1740/3192/3798/23162/6421/9531/4130/3315/5813/5874/3800
## GO:0098856 29881/336/8435/5406/1056/64240/3949/335/1645/2169/948/7357/3952/51474
## GO:0099118 3799/7014/547/1740/3192/3798/23162/6421/9531/4130/3315/5813/5874/3800
## GO:0099590 3208/23513/1814/64854/1948/6616/23237/4983/163/3690/1815/8650/2060/50632
## GO:1900119 7159/3569/3297/80149/400410/581/2021/22933/6188/5740/10395/7157/2191/5988
## GO:1900451 6347/3458/2048/729230/10368/54413/54550/10369/8787/5649/65018/23025/154/27092
## GO:1901741 4283/963/575/10938/1432/4654/8740/9518/2323/3566/824/9750/10211/30846
## GO:1905153 11314/26228/246/3071/23208/718/2624/3673/10347/2150/948/5468/55198/11031
## GO:2000484 914/2867/7096/2219/3965/929/7097/51744/965/8692/29108/2150/7474/2149
## GO:2001028 5641/7422/5587/4233/7114/8823/25865/2260/3315/3791/5025/2247/9037/8817
## GO:0008643 366/11182/28999/6515/2171/1812/6513/2542/5467/8013/7124/10237/3099/8218/54020/7525/6518/126321/6927/26291/360/7355/1432/57761/5473/5579/2688/359/6524/4205/208/6527/55343/5584/3553/5781/66035/673/65010/7429/7015/55974/6523/51548/56606/2887/3630/207/4780/23433/5906/79602/2931/6272/1906/9962/10776/26503/23169/7430/6514/5319/718/6506/55022/23443/5458/8682/2695/29988/55032/5741/51763/6814/6526/11046/6517/55512/79058/2719/51422/26060/51151/8660/81031/11132/5295/5357/3643/7248/6041/114882/1389/9847/10559/10580/25999/358/55198/3952/55314/6253/1909/5167/3667/3479/9370
## GO:1902600 11182/6564/9377/50617/30968/10105/51296/1184/6549/57282/533/27032/518/9551/506/9296/525/1349/3596/1183/509/1351/9114/496/4697/1814/516/1340/79400/9197/11331/6565/522/10063/1337/10476/7351/528/514/23545/9605/10479/1327/9167/51606/1347/5250/515/529/523/526/10632/488/498/1352/9914/527/56606/1339/9368/1345/7352/11261/155066/537/23530/84679/56901/11315/7114/51382/57030/487/521/539/81/9550/10312/513/26503/6834/64924/55002/6550/4891/1355/27109/8992/489/29988/7291/1815/9016/1350/538/23315/517/535/534/56848/6553/81031/6548/54997/1528/7350/1346
## GO:0000281 9493/55165/51203/10112/24137/5347/29127/1894/9700/1058/3925/9585/23636/3619/675/5119/10617/26586/27183/1072/79998/6683/23157/51510/55521/25978/11021/10899/9820/9525/91782/57132/10015/29082/387/288/79643/6651/6711/54902/9101/403/5921/55909/27243/23503/9094/4628/324/585/79884/388/114327
## GO:0051298 10733/6491/284403/899/23636/7517/26973/672/55835/675/5119/55722/79959/10432/4869/7514/1017/55125/51510/1069/4591/25978/9662/22994/9525/57132/26005/10015/9475/152185/22995/4682/55755/8850/2648/23032/56890/27243/80254/9738/9851/85459/54820/9639/5311/10769
## GO:0003382 3549/6768/8985/1365/79977/2195/23094/3274/25932/10653/64919/79983/4233/6093/6781/57111/57669/4855/5175/26084/80781/23022/3397/57493/2317/367
## GO:0006904 5341/10652/1080/10814/6809/8541/3745/23256/4218/6804/6616/26276/10490/815/65082/10244/11311/1488/9751/5899/6814/6813/23233/9341/54843/6812
## GO:0016601 117178/50861/5923/1785/382/8936/391/199/9844/7074/6993/3845/10787/23191/199731/51495/10163/1398/10152/2059/8473/26053/4763/9855/1012/11188
## GO:0030262 7153/3148/3569/9131/3297/836/3837/400410/581/51025/3836/3146/1676/1677/2021/668/2852/317/81858/1776/22985/10595/10904/3005/80279/1149
## GO:0033198 5026/5024/5027/5743/10518/24145/7184/5313/6647/3553/1791/7222/5028/5030/54434/22953/6263/1609/6872/9127/5023/5728/6546/5025/5029/54795
## GO:0035767 10563/5641/7422/3164/57175/4851/3273/5587/4233/7114/8823/2249/25865/5872/2260/7057/3315/1960/3791/5025/2246/8829/2247/9037/4856/8817
## GO:0035774 114/3091/1080/25874/9971/5019/3799/65220/7447/3651/2850/5879/572/2822/8398/6810/1392/5532/408/6717/9854/54795/8938/4035/55638/55107
## GO:0043330 8767/64135/9188/23586/3434/64170/5594/4792/6520/1660/10084/1653/3661/148022/23180/79594/5899/7098/3764/3456/5595/10211/57506/11213/857/81035
## GO:0044068 6355/3838/2597/10018/23513/5272/3841/3837/920/3839/80149/3836/10898/841/293/3840/10533/572/8812/9218/10318/4916/598/5071/8106/3685
## GO:0045987 10874/6870/8877/100/5743/5724/151/6722/80763/5020/6865/1131/2017/6869/1906/2852/387/2693/3815/3673/6915/2149/4887/5021/1907/18
## GO:1900077 2888/5588/4690/5771/8651/5579/5970/5770/3553/2660/6198/2887/197/2931/2844/55022/51763/5580/5562/23189/5791/5590/55198/4023/5167/3667
## GO:0046470 57110/26279/5320/336/341/79888/2171/23175/79887/1119/1460/9468/5444/5321/56910/1622/3949/949/30814/1459/5130/1071/43/337/9663/58488/335/23659/50487/2170/54979/81579/10908/254531/10162/10390/10400/2822/5319/63874/1040/824/8398/4204/3990/1103/5168/5322/23682/11145/1120/56994/79153/129642/5920/2181/3931/171586/8605/64600/23446/80736
## GO:0043266 23630/81831/3755/51083/3757/1812/3753/483/274/8514/468/1908/88/8811/1785/4878/30820/3741/134/3792/1813/4842/3799/5621/2185/9472/3787/9943/3746/2645/3747/54800/1739/859/2316/7341/4544/3759/5999/3060/11060/967/7531/3779/1804/30819/116/5728/288/4986/4846/287/3781/9722/3356/9992/3784/7881/51719/845/3736/27347/482/54209/10142/6844/4734/481/2273/23327/857/150/776
## GO:0000338 10987/8533/2873/10980/50813/64708/51138/1861/9318/10920
## GO:0001553 2661/5798/8879/5156/59338/56729/6777/2516/3624/8322
## GO:0001886 8985/25932/4233/6781/4855/5175/26084/80781/3397/57493
## GO:0002664 3620/3559/10288/916/83737/3135/23239/50943/1178/7048
## GO:0002713 1378/2213/725/2302/5777/722/50943/9984/604/10039
## GO:0002887 3162/11314/3965/613/2213/729230/8832/3598/2294/29
## GO:0002890 1378/2213/725/2302/5777/722/50943/9984/604/10039
## GO:0006188 5471/10606/3251/158/2618/272/471/271/5198/270
## GO:0006563 29968/26227/875/6472/5723/10993/6470/10955/256987/63826
## GO:0006596 4953/6611/6723/54498/6303/79814/4946/196743/4947/51686
## GO:0006971 362/706/9990/57468/9943/59341/3673/4638/51719/27347
## GO:0007016 50944/7430/7094/3728/1605/288/23136/83660/57731/2317
## GO:0009162 7083/7298/10591/1633/1716/2987/1854/6470/56953/7084
## GO:0009263 6241/7298/1841/6240/9519/132/2987/1854/6470/26289
## GO:0010739 4282/4157/799/3375/154/10268/84059/56892/9590/9370
## GO:0010749 7422/1956/6690/3630/493/9722/2982/2977/7057/8654
## GO:0019062 59272/3383/3326/5818/10332/975/30835/5819/2621/131578
## GO:0021548 8941/401/23513/8851/2902/3211/27089/429/10427/596
## GO:0021924 8624/1950/2637/9283/22809/51286/473/6095/6532/6469
## GO:0021930 8624/1950/2637/9283/22809/51286/473/6095/6532/6469
## GO:0021936 64211/1950/3975/9283/6608/51286/2736/6532/2735/6469
## GO:0030647 57016/1109/231/10327/6569/1645/1646/8574/8644/84869
## GO:0032070 3001/5111/1663/4869/3146/1676/207/6188/5580/23411
## GO:0032275 2297/3814/6865/668/4089/4986/7110/1392/3952/6926
## GO:0032341 654/5978/1585/1181/653/1584/650/8912/27122/54361
## GO:0032342 654/5978/1585/1181/653/1584/650/8912/27122/54361
## GO:0032353 1594/2672/5978/653/476/27120/4790/650/27122/54361
## GO:0032488 345/7454/348/335/6014/19/25/9423/57698/8829
## GO:0035865 3297/6647/1585/1740/10891/1742/1584/8912/79800/1393
## GO:0036376 483/478/476/486/6546/6548/482/481/477/5348
## GO:0036500 811/1649/7184/3309/22926/1388/8720/51360/7466/7494
## GO:0045060 1236/1794/5788/916/940/9474/972/7535/6469/2737
## GO:0045080 3162/7124/566/3553/177/351/148022/7098/1958/7474
## GO:0045647 54892/51621/677/3313/8861/6886/7538/9935/6777/3202
## GO:0046040 5471/10606/3251/158/2618/272/471/271/5198/270
## GO:0046501 3145/211/3658/7390/212/27102/2235/7389/5498/210
## GO:0048304 4436/79915/5788/30009/940/958/3558/22976/3565/4292
## GO:0051583 1812/1814/1813/2668/5865/11315/1861/1815/6622/5071
## GO:0051593 7298/2348/4524/4968/4255/2350/1938/429/590/2934
## GO:0051934 1812/1814/1813/2668/5865/11315/1861/1815/6622/5071
## GO:0060033 6688/269/51176/657/2736/4090/4814/268/2735/57124
## GO:0060068 578/3975/581/7301/10461/7474/558/5950/2099/4036
## GO:0060368 4067/5788/5359/5795/10666/2889/5906/961/26060/55198
## GO:0060525 10481/79084/6422/3239/6256/10818/2263/8626/2099/3169
## GO:0060767 55840/79084/6662/4824/1499/6794/1027/5176/6469/367
## GO:0070099 6352/11240/3091/6091/7737/10019/1906/54209/6586/9353
## GO:0070472 6870/151/152/5020/6865/6869/2852/84193/5021/18
## GO:0070942 1991/1773/6372/566/2147/383/1776/11334/2150/1511
## GO:0071104 6772/3561/3578/3581/3718/6774/3716/6777/4435/6776
## GO:0071803 6624/3936/7124/4478/6714/7984/1437/387/5601/3567
## GO:0072015 4643/8826/4868/5420/7827/182/3913/9863/9370/652
## GO:0075522 8662/28985/6741/8664/5725/8562/8661/8665/1939/5094
## GO:0086070 6262/10021/3741/6331/8913/10052/287/2702/55800/776
## GO:0090030 5447/654/5978/1181/653/476/1609/650/27122/54361
## GO:0090037 7422/958/148/4157/8398/2324/56848/7474/84059/7481
## GO:0090557 3383/9076/9414/50848/57826/2194/4301/5802/7082/9693
## GO:0097050 3569/6262/1965/3651/4760/6431/6934/11132/831/7466
## GO:0106049 5743/8531/2056/3954/9181/572/624/79085/10367/80303
## GO:1901838 4141/1663/6597/25926/4691/11137/64768/2475/55011/6598
## GO:1903800 5604/4613/1956/5605/7040/1655/79727/8737/7157/652
## GO:1904526 2011/22919/3297/4133/5516/22924/2622/5515/25/146057
## GO:1904779 23636/55722/2932/55968/50855/11190/57787/636/137886/324
## GO:1990535 215/5621/3630/478/351/5663/1639/4130/3643/225
## GO:2000665 27242/3965/5047/384/353514/23765/3440/55540/5590/2625
## GO:2001054 8200/3091/655/5456/6928/6899/7849/6662/5076/6469
## GO:2001214 133/51666/634/5906/55662/9693/3791/947/55273/10266
## GO:1903426 445/8838/1535/3458/3689/3383/575/706/5806/215/7124/5743/10131/140885/1785/10333/54/3326/384/55532/3320/80149/199/8837/2185/3586/5873/7099/2534/3553/2902/2475/5879/3630/207/3717/9314/8570/5740/11315/186/961/1906/148022/493/6774/183/1497/9475/387/9722/2309/23576/9104/4317/6622/56848/9759/23564/4088/10365/7755/2717/3643/3043/947/225/948/5025/5311/7350/857/6571/1191/1524
## GO:0070085 79623/4597/94025/727897/10331/200424/6489/8708/2529/10195/56913/2525/3600/6185/2591/55858/6184/746/6484/27087/8813/9334/8985/10164/9245/7415/2650/4248/3703/4504/2651/4585/27090/5373/1650/644974/79369/25834/29929/79644/26290/8128/2528/10678/84061/51046/10690/4586/53947/81849/6482/2131/1798/11320/5238/2132/55343/8703/11282/432/2134/51006/8704/4584/8818/79695/2683/2526/1603/90411/79796/2523/3998/4583/8702/29071/4242/29906/28/51465/3955/22845/6388/11261/57171/2801/433/7903/79947/54344/9514/79147/51146/10565/56983/51172/2590/2527/2583/7327/11253/23509/9215/4249/5986/79087/8705/6480/9331/55624/4864/7991/79053/5663/2524/23275/10267/4245/10905/56667/2589/2135/6483/29880/79070/4247/2137/9526/29954/63917/51301/26229/285203/8473/10329/2218/9321/11041/11285/10724/80235/7423/9528/10585/4122/57876/957/64689/11070/4124/1203/9488/55650/66008/11226/57134/79868/91949/80267/4589/4588/64788/51809/2530/10610/22906/4121/4582/55568
## GO:0006073 2642/5499/7262/5834/80183/5255/7360/2932/5236/2992/8445/208/2997/5500/5501/5443/2475/2645/2538/23178/3630/207/5260/5504/2931/5509/2103/5257/5506/5741/8908/2998/51763/2548/5256/51422/2632/178/5261/8660/3643/5836/27232/5837/3953/10580/51294/8864/5502/5167/3667/3572/3479/8972/5507
## GO:0044042 2642/5499/7262/5834/80183/5255/7360/2932/5236/2992/8445/208/2997/5500/5501/5443/2475/2645/2538/23178/3630/207/5260/5504/2931/5509/2103/5257/5506/5741/8908/2998/51763/2548/5256/51422/2632/178/5261/8660/3643/5836/27232/5837/3953/10580/51294/8864/5502/5167/3667/3572/3479/8972/5507
## GO:0007566 4318/6696/5467/5743/63978/811/708/64750/2288/796/7356/55585/2056/682/10155/6647/6256/3553/4838/5740/91/3020/6781/85360/7076/3976/397/8434/6159/8289/2013/84172/3490/7048/7216/2192/5618/4313/1471/5125/8614
## GO:0051568 200424/1789/3006/3008/23028/1786/2641/3007/672/9757/2672/8085/22976/9555/56979/63925/5929/55011/22938/55870/4089/9070/80335/23168/6018/9739/30827/80349/9646/7403/54880/84193/8473/4297/23067/26053/1499/5926/4602/6419/2625
## GO:0000303 2643/1719/51022/7124/655/4504/1728/7351/2176/337/6647/4353/7001/2074/7352/4780/11315/23334/4846/538/9104/948/10516
## GO:0002183 1978/8662/4690/28985/1981/3646/51441/8664/8562/2475/8668/10480/27335/5936/8669/8667/8661/8665/51386/1939/1983/8666/56339
## GO:0032673 1051/959/942/916/2207/940/5588/3965/9308/6850/54440/3662/7356/7292/8288/51176/3133/50943/114548/5914/5590/90865/2625
## GO:0035456 6772/9447/5359/3659/54739/997/9641/3428/3455/4332/684/3093/51079/149628/11277/7327/27429/824/7098/8519/3456/10410/10581
## GO:0042745 10874/6770/6715/3737/3062/100/191/2692/1814/1141/134/1813/5730/4544/1437/135/1392/7054/22871/4887/8863/2691/1471
## GO:0048520 29105/3066/2692/8013/55737/885/64220/2475/4544/135/2693/4986/4862/5179/1392/22871/9759/181/4887/4208/2691/2697/7349
## GO:0072207 6772/7490/5455/3579/7477/793/10413/7369/7849/55366/25937/3976/7827/6662/38/5076/3280/5310/5311/79633/54361/3913/9370
## GO:1902751 983/51514/891/26271/8317/79915/1019/7480/5889/8444/4869/8766/23476/80174/9525/351/6604/4204/5890/8929/5087/595/3306
## GO:1905144 116372/1132/1133/6001/2769/1137/1141/58530/8851/1399/156/4988/1131/2782/2767/493/1136/375790/9475/2771/23236/2776/1129
## GO:1905145 116372/1132/1133/6001/2769/1137/1141/58530/8851/1399/156/4988/1131/2782/2767/493/1136/375790/9475/2771/23236/2776/1129
## GO:0045739 2305/5111/1054/57103/7336/2140/2138/8914/142/3014/7454/1663/1956/672/5591/5582/7334/54929/29086/10097/55183/10155/1660/9025/3146/79184/23514/2521/2074/23347/6188/55135/64210/9577/55719/54537/4255/51720/7515/4862/23411/23201/322/55693/6419/10039/57332/51149
## GO:0001825 705/100/27341/86/54663/63978/9421/2551/57820/4071/6722/4849/84525/4838/9113/4242/6928/4848/3726/1045/54475/57142/6498/9927/9646/6670/6830/64321/23081/26469/8452
## GO:0086005 23630/1824/3757/3753/274/6262/6331/3762/1739/859/5318/1829/6640/3728/3764/287/1832/9722/9992/3760/3784/2702/29119/3752/54795/23327/857/775/23171/55800/23704
## GO:1902042 3148/3162/3383/7128/8772/7186/672/356/5054/8795/2243/2876/2266/8837/841/355/653/9181/64114/5894/2244/80196/11315/8717/8682/23017/4846/8737/598/3082/8743
## GO:2000279 3776/4880/27000/6714/65057/55226/4221/7014/54552/3183/3192/2658/7013/659/3178/27063/79991/26277/25913/9104/5394/7157/94/1843/80169/167227/10039/5468/2697/9370/1602
## GO:0070316 6241/2146/1111/5888/1869/8317/7027/11335/5469/3135/672/5931/7029/5928/6665/23468/1876/10138/5526/80012/23512/8409/8726/10919/4149/317/23269/6045/79813/1911/6015/7703/5932/23429/4303/1490
## GO:0002710 10859/3575/5788/30009/6375/2213/3135/3134/634/50943/383/56940/4092/3440/3077/3456/5532
## GO:0002827 8767/9466/6375/3593/729230/6556/941/3606/6363/3553/8809/3142/301/3594/51561/9655/3554
## GO:0003215 1482/6659/9421/55636/2626/8928/657/6604/9464/3670/10848/23493/182/7042/10512/23414/2625
## GO:0006833 366/362/7380/551/1080/360/359/361/343/79849/3037/4284/363/8692/51763/6563/358
## GO:0007095 983/29980/641/4683/63967/8091/60561/51347/472/1112/9344/4303/80279/29997/25949/57551/51149
## GO:0010544 239/348/2266/5155/928/2147/634/5156/5270/10019/114897/5154/4846/5580/5592/7056/18
## GO:0023019 5080/2253/4072/142/6862/3172/9350/2250/5028/4760/5156/4087/64321/6911/4088/4488/4487
## GO:0031061 1789/23028/1786/672/3720/5079/22823/9555/55011/6598/55818/54880/6830/23081/23411/55693/5252
## GO:0032026 929/654/4193/6569/955/3747/6263/8074/288/1261/55512/7057/6622/3736/595/2203/4982
## GO:0032069 3001/5111/4940/3148/6059/1663/4869/3146/7014/6917/1676/207/6188/7013/7009/5580/23411
## GO:0032095 4504/5582/885/80763/4988/2475/5465/29937/4852/2693/8620/8195/4925/3952/585/7349/9607
## GO:0032303 8792/4282/6850/5027/522/3553/6754/5608/5020/186/4923/1906/8398/22925/8600/1579/5025
## GO:0032331 8200/11173/5915/26585/7046/81792/2736/5741/5916/6662/579/1499/8840/6591/2202/5744/652
## GO:0035728 2730/5641/5469/5970/3586/7429/846/22933/81792/1398/1385/2549/2729/26060/3082/8829/55198
## GO:0045063 8767/5971/6693/941/6363/7292/3718/3146/51176/8809/2475/3142/301/64218/3566/9655/6778
## GO:0045076 3902/942/5788/916/940/5588/64170/6441/3552/3662/920/941/3553/11146/50943/7538/6777
## GO:0046597 8547/5806/2219/7726/325/7706/11074/8724/85363/10107/3440/8519/11043/10410/2934/81603/10581
## GO:0048486 401/1959/8828/10371/2668/55558/6495/6899/3211/104/6405/3280/7020/89797/8929/3212/8829
## GO:0061081 10859/9188/2207/23586/4282/8013/3135/51704/972/7099/1653/8915/148022/8482/57506/7474/948
## GO:0072576 1051/7128/5629/5469/4192/8837/6195/1361/55294/634/2267/55679/2735/8452/7494/5764/3249
## GO:0090280 6347/2641/51393/8573/5155/9914/846/2916/799/6781/3958/1392/56848/10268/6387/5159/7349
## GO:0140131 6278/10563/6352/6351/6354/6375/729230/6868/8740/2185/9943/6366/65125/102/27347/7474/9547
## GO:1900409 7124/10333/27035/6647/7099/55294/5978/4170/2021/11315/6421/5074/10013/8737/2309/9104/4314
## GO:1903392 23603/6714/11170/5962/4323/56940/395/5728/2039/9270/10395/7057/54828/94/23122/4035/347
## GO:1903798 5604/4613/1956/5605/80149/10269/7040/6895/1655/79727/9612/8737/9611/5530/7157/2099/652
## GO:1905939 8372/1761/7490/6714/10371/6736/2661/2796/26471/6662/56729/2516/268/3643/10370/23414/54361
## GO:2000678 9355/6664/51042/9421/1649/55294/171392/7114/2623/6872/5663/23493/23462/6717/8864/4488/4487
## GO:2000696 4318/8842/6772/5613/100133941/3975/2668/10413/7849/25937/3976/5076/1499/4435/79633/9370/2625
## GO:1903201 51765/8876/7295/5831/142/468/8013/3091/23657/5034/10131/2626/10333/4841/9283/57707/25793/2876/5660/27035/2861/3586/6647/7099/2534/55294/5978/4170/5151/3630/2021/7471/8996/10533/207/4233/4780/11315/6421/27429/5074/5598/10013/55074/8737/9529/2309/65018/23411/5071/10314/3315/8321/1499/3082/4314/7248
## GO:0001919 50852/23513/8934/10133/43/51510/4905/302/5663/116985/55435/2060/22876/125058/6622/1889/55614/9341/27065/10268
## GO:0003416 5447/4880/9350/5915/10498/10269/6781/5916/1893/2263/4921/7059/5914/2261/4322/54796/7048/4488/2121/1311
## GO:0007617 3066/1812/4543/551/55585/7067/552/2902/1816/5020/7068/4808/23542/5270/351/3074/5728/7054/9759/8648
## GO:0009648 10874/5499/15/5371/3398/9099/2063/5500/5501/5936/23373/9575/83759/9112/5187/1407/7157/181/8553/1408
## GO:0021801 9289/8941/1020/7101/30837/8851/25777/27185/1600/79143/23224/23380/57142/5048/23353/5649/1499/3912/89927/2737
## GO:0021895 54149/1812/55079/3251/7101/1813/26038/81544/63925/5881/2016/7080/5663/5048/6900/4983/26468/429/3400/1746
## GO:0022030 9289/8941/1020/7101/30837/8851/25777/27185/1600/79143/23224/23380/57142/5048/23353/5649/1499/3912/89927/2737
## GO:0030517 3475/7473/80128/1020/7143/4504/8851/393/4133/6049/4099/55558/57142/6259/9423/5802/7474/8829/9037/56920
## GO:0030539 3973/6715/2253/7490/3239/654/653/3293/5156/51665/55366/10388/6716/1499/1718/80000/4920/6469/367/6926
## GO:0031579 914/1794/5788/79152/4118/1739/859/2319/302/6281/4864/11252/23180/858/10347/5538/10211/2013/2934/857
## GO:0032098 885/6344/6581/80763/4988/5443/3358/5465/6343/29937/4852/2693/8620/8195/3360/4925/3952/585/7349/9607
## GO:0032753 1051/959/942/916/2207/940/5588/3965/6850/54440/3662/7292/8288/3133/50943/114548/5914/5590/90865/2625
## GO:0051882 2537/8326/2730/239/706/215/142/2805/5027/885/10962/6714/55012/93974/25/2729/3791/596/4653/1634
## GO:0051953 151/152/134/5997/1113/1813/2917/5028/5999/186/4889/2693/1392/1268/6622/10550/27347/3952/150/18
## GO:0051968 6347/8564/1812/7143/5743/1956/729230/4914/2185/54413/135/116/22930/9378/5649/22871/2752/4920/5021/6812
## GO:0071305 1594/3600/5469/8805/6422/5292/5251/1591/7421/22938/846/8074/5179/2242/54332/25959/490/3371/6591/5764
## GO:0072243 6772/5455/7477/793/10413/7369/7849/55366/25937/3976/7827/6662/38/5076/3280/5310/5311/79633/3913/9370
## GO:0072666 7128/3920/6845/27183/9179/64089/7879/57154/9146/51172/79158/950/8031/8546/51520/9648/4734/9765/6653/1191
## GO:0086012 10021/610/6327/6331/781/859/3759/6324/8913/288/287/6546/783/2702/29098/54795/477/775/55800/776
## GO:0090140 664/10059/55737/54471/80179/1723/54708/10891/64423/79594/6773/65018/56947/51024/5071/23259/3791/65084/1634/4137
## GO:0090189 7422/9500/10736/3975/6608/2668/6495/6928/26585/7040/186/7849/183/3217/55366/6662/5076/4070/7482/652
## GO:1902003 274/348/836/2043/5621/9001/23163/10972/8301/2931/351/6093/9475/10347/54103/1942/6653/1191/10418/3479
## GO:0010717 2146/6317/2296/8092/3066/3569/4192/655/11171/2651/80237/6422/3170/25805/51094/3553/7074/6910/4851/51176/2475/6386/6615/653/26585/7046/7040/7080/23187/10630/23332/4089/4087/23275/5728/4092/10439/650/5515/1605/25937/7291/3670/80199/55223/2022/6934/64081/90/1499/1601/4088/4017/28984/182/1942/7042/23122/7048/753/2042/1277/58495/7041/3249/7043/652/3169
## GO:0030148 7368/6489/8708/8877/79152/7124/5027/9334/221/9217/8560/55750/29095/64834/242/8128/51046/201562/53947/81849/8703/2055/8439/1455/2531/6610/29906/23683/8612/5587/7903/10558/8879/171546/7132/259230/9514/2583/9517/9215/81537/8869/8705/59344/9331/5023/10400/3491/25865/9218/8398/55512/5580/8613/6609/222/5562/8707/56848/253782/29956/224/427/55304/10087/7357/8611/79603
## GO:0098754 6280/10549/2643/1719/7296/2950/64757/57016/7295/1244/7124/50506/5743/348/655/4504/9588/3045/26034/1728/9446/3049/10327/2876/2176/3046/241/8288/337/6647/2168/2877/2882/3050/2936/4353/7001/29914/51109/1193/4780/23530/11315/51714/373156/10587/2938/2879/10935/847/23334/5446/6415/4846/55937/4258/53905/538/9104/5742/4025/2880/51780/2878/7173/2098/3043/3240/7779/948/54996/7837/2954/22977/10516/2946/2944/27244/213/9429/2952/2947/4056
## GO:0032387 55612/3162/11314/3753/7295/3638/3965/1020/5905/1410/580/9972/8832/55432/51009/3598/9530/8724/7175/3998/2332/9478/51465/1409/284/11261/5908/2664/5906/11315/7327/6672/2039/10956/29969/2294/51715/9270/9531/11142/51763/392/5569/23409/4763/4131/948/5350/347/9370
## GO:0072577 6347/959/3383/7128/7124/3135/3596/356/958/5054/26291/2243/2266/5584/5335/3586/11126/3676/51129/3565/7015/10298/4217/284/2244/4780/1285/2852/5598/204851/889/79155/2624/659/25/5170/7857/2309/7057/7010/28984/57124/3791/8644/80781/79625/9037/2621/10266/2625
## GO:0035306 5341/3458/11314/10288/5788/945/78986/3326/134/5725/2475/23141/5528/51231/23645/3717/7040/54866/26051/186/5524/26012/5525/63928/2822/650/5510/3673/5300/4659/8189/10395/65018/5580/3672/6609/9104/4088/4208/66036/5159/9863/23261
## GO:1902882 2643/51765/1719/8876/7295/5831/215/142/468/8013/7124/3091/23657/655/5034/10131/2626/10333/4841/9283/57707/25793/2876/5660/27035/79109/2861/3586/6647/7099/2534/55294/5978/4170/5151/9555/3630/2021/7471/8996/10533/207/4233/4780/11315/6421/27429/5074/5598/10013/23334/55074/8737/9529/2309/65018/23411/9104/5071/10314/3315/8321/1499/3082/948/4314/7248/79772/10516/2530/27244/8309
## GO:0000291 54512/57819/25804/5393/23404/28960/56915/11157/51690/80153/23644/29883/27258/27257/1656/10767/23658/11340/23016/51013/57472/9337/6499/80349/55802/9652/167227/22894
## GO:0010574 10855/136/468/3569/5743/3091/672/728/2626/729230/719/3552/27035/3553/4838/1545/9451/7040/6301/23213/405/718/2324/3670/57447/6095/727/3572
## GO:0035909 2253/2138/6659/5629/55636/8928/6722/1948/6495/6899/3516/56999/657/8131/6909/10427/2022/4638/3280/23493/94/182/23462/7042/1281/5159/4035/7021
## GO:0045730 56833/3055/1535/1043/4688/5223/3929/4689/5880/613/1536/100133941/57118/6556/2896/6223/27035/5294/11221/5293/1604/5879/4353/7001/3630/79415/3512/3643
## GO:0048536 1482/6943/56033/1030/8772/5591/54542/10018/3175/3720/6868/55012/64783/55795/4791/1015/602/2038/5585/149041/5308/25/5423/579/5087/596/80169/10370
## GO:0051180 79581/81693/6513/81034/6573/2694/51293/4363/2352/9390/6948/55065/7274/949/2348/335/9962/173/6514/2350/8029/55788/56918/2638/10560/80704/6947/4036
## GO:0060795 2001/22943/2138/10736/79577/89870/2139/8324/2303/4838/2627/6657/6928/9314/657/3207/23168/2116/9646/2260/64321/5076/54623/2114/4086/1499/79923/652
## GO:0006749 79094/2730/2950/51022/2539/79017/7915/23657/92086/3417/26873/2876/2937/6647/2739/55748/25974/4780/3029/11315/23474/2938/1497/2940/2879/2687/2941/4258/1800/2729/4779/2949/2954/2948/2946/2944/2952/2947
## GO:0030042 6712/5341/29767/7111/119/57553/23616/88/822/6710/1072/5962/64780/9948/11344/7429/55604/29766/10677/2039/6708/11078/9645/2059/6711/11034/51332/2150/118/23075/6709/2934/57731/9037/85477/51474/50853/25802
## GO:0051452 56833/50617/533/9296/551/525/356/9114/6556/760/2896/7274/54982/528/23545/51606/25932/552/529/523/526/7879/527/55647/155066/51382/9550/10312/1182/8992/1201/5538/535/534/766/23682/1203/596
## GO:0090329 79733/81620/79075/54962/5984/29980/26271/51053/641/8317/5982/30968/11200/5983/4683/675/5985/9126/1017/4361/58525/55294/3980/7014/59343/8243/10269/10533/80174/7013/10735/57379/2260/546/22891/56897/604/1602
## GO:0032414 6347/3458/1520/5336/51083/5031/483/3359/2048/6262/1080/5724/88/8811/6769/1785/729230/4878/375346/9446/10368/2745/6786/10063/3799/9472/6271/9001/54413/1756/3746/781/784/3747/2631/11261/57158/7341/7114/10369/4923/7225/81/30819/8787/3064/10345/288/1815/287/5649/9722/9992/65018/9104/783/30845/154/6548/3736/27347/54997/482/54209/10142/844/5311/2259/481/5243/3306/2946/27092/5174
## GO:0032881 2642/5499/7262/80183/1950/2932/8445/208/5500/5443/2475/2645/5155/1213/23178/3630/3037/207/7040/2931/5509/4790/2103/5741/51763/55512/5261/8660/3643/10580/5167/3667/3479
## GO:0050798 80380/3559/3965/8772/100133941/3593/3558/836/23308/3606/2056/5621/10385/2534/3146/11119/177/6188/50943/383/1178/11148/3594/149041/51561/25/6304/5573/6777/29108/3485/2615/3479
## GO:0051445 991/259266/7272/1761/2827/4880/5567/5810/811/5017/51441/1618/4342/55124/56979/5518/51343/3955/22933/3976/5573/64848/23236/5139/56339/4882/7320/3643/7474/1843/4488/4487/54361
## GO:0070317 6241/2146/1111/5888/1869/8317/7027/11335/3135/672/5931/7029/5928/23468/1876/10138/5526/80012/23512/8409/8726/10919/4149/317/23269/6045/79813/1911/6015/7703/5932/23429/4303
## GO:0090317 55612/3753/7295/3638/1020/5905/580/55432/51009/9530/3998/9478/51465/284/11261/2664/11315/7327/6672/2039/10956/29969/51715/9270/9531/11142/51763/5569/23409/4763/948/347/9370
## GO:0098927 11151/5604/84079/4478/5605/5594/8898/22853/6714/5962/64089/11267/8724/8411/7879/51361/29062/23011/5868/64400/5289/7430/23317/55823/4642/55614/5595/1601/2013/9482/29911/8678/6653
## GO:0015807 8140/6541/6510/9056/10165/23657/79751/10991/6520/23204/6556/55238/6507/5997/9057/94081/57084/6519/54896/56301/6512/6511/3766/5999/383/54716/57030/4923/183/5663/11136/1497/6506/11230/9152/81539/6509/8501/10550/8604/8864/477/6542/23428/6505
## GO:1902110 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/7159/10018/5366/2932/10971/7533/5534/7029/581/2139/7529/841/79680/5599/54978/28978/1386/2931/7531/572/93974/9026/79594/7161/23368/5533/4836/55288/8626/89941/7157/7755/596/64112
## GO:0005977 2642/5499/7262/5834/80183/5255/7360/2932/5236/2992/8445/208/2997/5500/5501/5443/2475/2645/2538/23178/3630/207/5260/5504/2931/5509/2103/5257/5506/5741/8908/2998/51763/2548/5256/51422/2632/178/5261/8660/3643/5836/27232/5837/3953/10580/51294/8864/5502/5167/3667/3572/3479/5507
## GO:0006898 8685/3576/28823/28424/7037/133/3537/10859/9332/81693/3024/28778/341/85377/5336/3351/3514/867/3208/3689/2207/2210/10525/3250/22943/409/4360/10808/7422/929/9829/6850/345/1174/348/8218/2213/1950/5054/1175/50489/8898/7036/1785/6441/4074/23513/811/23149/259/1814/7184/382/55681/8936/57720/2885/7018/2358/8542/4289/1173/3949/156/949/3320/3579/6363/1813/5291/4481/6457/2348/10487/7448/64854/43/9873/3676/432/1948/8976/157/4037/54413/3565/7436/335/3577/9784/6386/2332/6366/928/3482/6456/6401/5879/1213/975/23208/2017/6616/3684/9463/567/54550/26585/859/284/8301/821/634/10244/3688/1742/302/8578/3512/967/161/9892/5648/23011/5868/5298/7430/29978/2580/54874/23237/10267/718/9026/23607/950/6900/4983/2350/163/3690/1759/9260/23166/636/858/22848/22925/78989/1815/23285/1201/8650/3077/338/5538/2060/10188/22876/85021/8029/6311/55716/26119/53353/4043/9779/2890/6622/50632/154/3092/6642/54806/10211/1601/2209/408/55576/23396/10268/3643/3043/3240/9094/948/4734/26045/7048/57007/11031/2868/10203/6653/4908/3263/857/3339/6678/4035/1191/213/81035/3357/9863/6424/10266/4036
## GO:1902305 81831/483/2257/1785/1814/7533/2745/4842/3799/6327/6331/1756/9368/54800/1739/859/11261/5581/51297/81/6324/493/6640/5774/288/1815/2040/6548/27347/54997/7402/29098/482/4734/481/477/23327/23171/55800/5348
## GO:1903707 3902/29909/3149/1493/4609/10859/4830/54892/4067/864/55365/28959/30009/3659/3549/865/3276/2213/23240/3135/4192/51621/10221/5771/54542/4792/2551/8651/3558/79577/3623/11006/6422/3398/3635/25793/80149/64783/677/7292/51208/325/2185/972/3707/7099/3313/3718/55294/3146/4851/3565/5977/2302/8861/8451/7001/3142/171392/6988/51043/634/50943/4780/301/6886/5196/2064/1021/3566/10766/4092/7538/149041/2624/10519/80349/7098/3440/9646/9935/6777/3456/3218/54623/3280/9655/3624/3204/10401/4763/1499/4057/5295/5914/604/4211/10272/3202/4212/6469/7704/2737/10443/2200/9607/9370/652/10234
## GO:0006270 81620/4174/4171/990/898/9134/4175/4173/5427/23649/4176/5557/5558/4172/4683/54107/997/1017/5426/4999/29935/5422/5000/56897/5813
## GO:0021799 9289/8941/1020/5455/7101/30837/8851/25777/27185/81565/1600/79143/23224/23380/57142/5454/5048/26468/23353/5649/1499/3912/85458/89927/2737
## GO:0046633 8767/1794/5788/916/6375/3600/3659/940/3965/10148/83737/2000/3593/729230/384/3606/7292/7535/1604/3133/975/51043/51561/57045/7048
## GO:0051491 1236/5898/6624/9148/6722/8976/10178/998/2332/6366/7046/23433/54874/375790/23613/9750/116985/26052/54828/22871/2823/1809/8829/5064/7043
## GO:0065005 336/341/8435/274/6646/345/348/5034/5567/5568/5326/337/5566/8694/335/6456/19/649/4547/10347/55937/338/56112/2181/3931
## GO:0071108 78990/80124/51029/7128/55611/8078/55432/389856/51035/54726/4287/29761/1540/80013/8239/23252/11315/7874/8314/10869/56957/23032/9101/9736/10868
## GO:0090075 136/5142/134/5997/1113/6647/488/5028/476/5144/3759/487/4762/2982/6546/6588/8654/5592/5025/3270/6717/481/2946/477/5350
## GO:1905476 2633/8326/116372/3753/1445/8500/1173/10434/1213/8301/64114/7040/2664/23433/5525/55022/2039/9270/8650/51763/598/9528/1601/54585/131578
## GO:0008088 24137/7345/80128/3091/8936/4133/3799/6647/6683/9001/7014/547/1740/8943/81565/667/10749/3192/3798/2319/6687/1176/23162/6421/320/351/23095/23011/4976/2647/5048/8120/55207/8546/4130/3315/10947/9638/9371/5813/66008/4747/5874/80208/3800/55638/4137
## GO:1904356 4751/9212/22948/908/10576/2072/5588/142/7203/10574/5594/10575/6714/65057/55226/8550/3181/26272/23381/7014/10694/54552/3183/3192/7520/5609/51750/545/7013/5073/80351/11284/3178/23293/79991/26277/140609/472/25913/8658/5394/5595/1499/4216/80169/79618/167227
## GO:0046902 3002/8326/1869/2810/578/292/10449/637/664/7027/7534/10105/7159/3099/10018/5366/2932/10971/7533/23593/5534/7029/1267/581/2139/6993/7529/841/79680/5599/54978/28978/8996/815/1386/6687/2931/7531/6774/572/93974/9026/79594/7161/23368/5533/4836/55288/598/8626/89941/7157/7755/6548/596/64112
## GO:0070373 2633/8000/4067/2950/1411/5788/467/1445/5801/2048/5771/140885/78986/10048/55885/11221/10385/5770/7099/5245/2889/51231/57053/9368/1739/1845/8661/9314/2852/4089/55584/7430/5728/27330/10318/25/81848/3976/9270/5300/57447/10636/57556/408/10253/1843/55450/10252/201163/23410/7078/1848/2192/11117/1846/9370
## GO:0001754 5080/8842/639/5146/4647/3549/2792/23287/7422/2780/6094/23418/2779/4669/5584/4308/25794/6096/7287/57096/1826/55000/7068/10002/6774/54549/10210/6662/7054/7070/80184/1735/585/5764/4915
## GO:0030225 4318/3600/7422/142/7097/8772/1053/3059/10221/5771/5578/3623/6688/3398/920/1050/998/841/27102/1435/7040/1437/5196/1436/351/10100/2624/3976/8737/23411/3624/5925/4920/9370/652
## GO:0042461 5080/639/92211/5146/4647/2792/7422/2780/23418/6121/2779/4901/4669/5584/4308/25794/6096/7287/57096/55000/7068/10002/261734/1258/90410/10210/7054/403/7070/54806/80184/1735/9742/585/4915
## GO:0001941 8326/2048/348/1000/23657/1399/9419/4593/2119/54413/2668/9093/54434/1742/10243/2339/1855/23613/11079/4038/9378/5913/5649/9379/22871/1140/5764/8292/9863/2743
## GO:0030279 1230/79412/10507/5552/22943/7124/3091/4192/6422/3398/2185/4221/5727/4091/4851/6096/57154/26585/3516/7040/22856/197/79697/4041/8994/25819/2623/8074/6497/1021/374/5741/9464/7291/1893/4038/3488/54880/6662/3199/10140/9759/4088/3399/2662/51564/4435/57045/596/6779/8646/3397/4208/4077/54795/5167/63923/7166
## GO:2000134 79733/983/2146/6790/891/51512/6347/5111/1869/1029/55159/2810/1031/995/1019/11200/10263/7027/3276/6659/1030/8328/1820/23019/5591/835/5371/79577/1032/2765/9125/23026/29117/1017/7029/1026/25793/11170/581/29883/7465/4849/10385/4193/10498/6118/10457/1874/51499/4848/2033/55367/9314/1263/8738/1021/4850/57472/57165/5728/9337/5934/1647/989/5325/57060/138151/8737/472/10106/5925/25959/7157/79960/26058/51065/28984/3275/1027/596/10217/595/58190/4194/5311/51339/7832/10769/2273/4582
## GO:0001921 23513/8934/4905/302/5663/116985/2060/22876/6622/1889/9341/27065/10268
## GO:0003214 6262/9421/6910/4851/3516/2931/4889/4089/2294/23493/4887/7048/1363
## GO:0007214 9568/468/23349/2569/2562/2561/2570/23228/2560/2555/6558/5334/2550
## GO:0009214 5142/1267/27115/5151/5152/5143/5144/10846/5141/8654/8622/5136/5138
## GO:0010248 578/483/495/496/581/479/478/476/486/6580/482/481/477
## GO:0010820 6278/10563/6352/6375/729230/6868/8740/9943/6366/65125/102/27347/7474
## GO:0010885 10938/6721/949/10062/4481/5465/19/7376/9619/338/948/5468/4023
## GO:0010935 10859/3135/51704/972/7099/7040/79004/8482/7474/948/7042/11213/7043
## GO:0014048 8564/5027/551/885/134/552/2917/4923/4889/135/22930/6622/6812
## GO:0014841 5467/2047/79647/8837/6495/2660/147912/284/94104/3717/6774/4656/2247
## GO:0014854 5315/1813/6331/3586/6442/9110/89/847/1605/4656/9759/7402/844
## GO:0015936 11332/60490/47/80025/3156/55229/283927/79717/38/80347/79646/64087/54677
## GO:0019081 8662/28985/6741/8664/5725/1660/8562/8661/8665/51386/1939/8666/5094
## GO:0032310 8792/10257/4282/5027/522/3553/5608/5020/4843/1906/8600/5025/3952
## GO:0032688 10859/9111/5971/140885/10293/5495/26146/58509/7528/5966/79671/5802/29108
## GO:0032780 10105/51025/7137/5018/93974/63892/79609/1266/9104/7139/4057/7248/5350
## GO:0035791 5771/6714/5770/5155/5782/5154/9026/25/4015/3092/5159/4035/5157
## GO:0042976 6352/11314/3593/8651/2688/2185/3565/3717/183/51561/10464/5618/2690
## GO:0044126 1991/3394/3929/7124/4049/3593/8878/3586/4353/5007/4153/948/1511
## GO:0044146 820/1991/3394/3929/7124/4049/3593/8878/3586/4353/4153/948/1511
## GO:0045591 3458/10288/3965/3135/8651/3558/11006/11221/10385/7040/50943/604/4179
## GO:0045651 8772/3059/10221/5578/3398/841/1435/7040/5196/3976/8737/5925/4920
## GO:0046606 4751/899/672/3834/10432/4869/4591/4682/55755/8850/2648/56890/27243
## GO:0046851 952/7128/1445/5027/3569/6422/796/3635/51208/26585/3375/4982/9607
## GO:0051123 7480/2958/55832/7067/2959/3146/6872/55729/1385/6908/112869/7157/2099
## GO:0051547 4318/1839/382/2475/8754/54566/3037/83481/10982/5728/9448/2252/9922
## GO:0060099 11314/26228/246/3071/718/2624/3673/10347/2150/948/5468/55198/11031
## GO:0071801 3055/6624/3936/7124/4478/6714/9181/7984/1437/387/5601/3567/2934
## GO:0072677 6352/6354/11314/6357/6356/101/5734/8288/23604/6369/3269/3958/7857
## GO:0086069 1824/3741/6331/6336/781/5318/1829/3728/1832/2702/29119/29098/54795
## GO:0090128 991/7534/9148/4761/27185/22883/816/9378/5649/22899/22859/4776/29882
## GO:0090399 1111/1029/11200/5054/1026/51384/7015/545/22925/472/7157/80169/4311
## GO:0090494 1812/1814/6531/1813/6581/2668/5865/11315/6580/1861/1815/6622/5071
## GO:0097202 8767/5641/578/8772/3428/64065/27141/841/2903/572/29108/26999/444
## GO:0098884 3208/23513/1814/64854/1948/23237/4983/163/3690/1815/8650/2060/50632
## GO:0140239 3208/23513/1814/64854/1948/23237/4983/163/3690/1815/8650/2060/50632
## GO:1900452 114/10288/2895/134/3745/55607/869/2332/177/23237/22986/9162/4137
## GO:1901386 1394/255057/8291/1813/2332/784/2859/6236/28954/4987/1815/10681/2669
## GO:1901722 4609/8710/7490/655/3570/8837/5155/79727/1958/201163/80310/652/2625
## GO:1902043 467/6789/11124/4118/5366/6422/6788/5728/8682/6498/7057/7078/658
## GO:2000846 51083/1394/5781/654/186/114897/183/2587/5972/1392/1407/185/6863
## GO:0000380 4116/23028/9967/6434/11189/51319/4654/64783/5725/80004/1660/55234/29890/6426/10921/5978/10084/2332/5936/10657/1859/3192/9589/84991/23543/1655/6421/8241/51341/8621/3191/6433/58517/3178/6431/9939/4670/10284/10521/140890/10181/83989
## GO:0002011 4321/6664/655/6654/1839/6868/1954/6722/4851/2475/7476/11235/55327/653/284217/2316/960/634/3678/6239/10630/23332/65979/1861/64398/5728/1855/3491/387/1605/2909/1856/94134/23767/94/182/7474/977/23122/3212/4488/1289
## GO:0061178 114/56943/5127/3091/1080/25874/3170/9971/5019/7351/3799/65220/7074/7447/3651/2850/5879/2044/9324/5581/3156/1946/572/2822/9448/8398/6810/1392/5532/51092/8609/408/9024/6717/9854/54795/2281/8938/4035/55638/55107/150
## GO:0046467 7368/6489/8708/8877/79152/6484/8813/7124/5027/9334/221/9217/8560/55750/29095/64834/242/8733/8128/51046/201562/53947/81849/84720/5277/8703/2055/8439/8818/1455/2531/6610/29906/23683/8612/5587/79690/7903/10558/8879/171546/7132/259230/54344/9514/2583/9517/9215/81537/8869/27315/8705/59344/9331/5023/10400/9487/51227/51604/3491/10026/25865/80055/9218/6483/8398/5281/55512/5580/8613/80235/9091/6609/222/5562/8707/56848/253782/54872/29956/224/9488/427/55650/55304/10087/65258/23556/5283/7357/8611/79603
## GO:0002360 3574/30009/4063/3569/8456/5591/3593/6693/3662/5897/2475/1540/50943/6774/3594/387/51561/10538/7157/6778/596/6469
## GO:0002825 8767/9466/6375/3593/729230/6556/941/3606/6363/7292/3553/3718/8809/3142/301/3566/3594/51561/9173/9655/3554/90865
## GO:0022400 23173/23746/1259/9397/5145/2986/2779/79823/6011/5148/2979/10988/6010/2339/1258/2978/6295/4836/5475/3000/5158/2868
## GO:0030206 50515/1464/1463/10675/63827/55501/9469/79586/54480/22856/23169/29940/55454/56548/55790/64131/64132/7358/1462/51363/633/1634
## GO:0031645 1075/27242/9775/551/11202/8898/3586/552/54413/869/784/9451/2859/4544/9294/3060/2741/5728/9896/4887/4856/57502
## GO:0032647 4321/6772/51311/8767/64135/3329/23547/23586/9111/1147/3663/1660/3586/3665/7099/3661/29110/51284/7098/5802/29072/57506
## GO:0034377 336/341/8435/6646/345/348/5034/5567/5568/5326/337/5566/8694/335/19/649/4547/10347/55937/338/2181/3931
## GO:0043501 58/3600/7135/58529/4654/8837/9569/2475/2660/488/10891/4625/818/89/816/7134/51778/4656/3488/5530/7138/4653
## GO:0045992 22943/23432/655/5567/8324/7289/5566/6615/3955/26146/23213/27330/7976/6909/80199/64321/1499/7474/1290/1289/652/2625
## GO:0060074 991/7534/63827/5216/9148/4761/27185/50944/22883/816/5728/9378/5649/22899/22859/23544/4776/29882/4747/5064/55638/1524
## GO:0061037 8200/11173/5915/26585/7046/81792/2736/5741/5916/6662/579/1499/5914/8840/6591/3952/1513/2202/7481/5744/2487/652
## GO:0072273 6772/7490/10736/55083/3975/6608/2668/26585/7849/55366/3976/6662/5076/3280/5310/1499/4435/6299/5311/5159/54361/652
## GO:2000679 5080/3458/2296/5457/142/8091/2959/4760/7040/2033/9314/65992/11315/7189/5458/9464/7291/5925/1499/3005/3479/2625
## GO:0021510 5080/6664/26227/4821/6715/8543/64211/7545/10220/86/6659/8882/5629/401/4357/50674/29777/3975/55906/6656/5081/51412/10215/2636/6608/81544/5727/7289/2668/2475/7436/2128/4825/3236/27023/7471/8726/1600/207/10660/58155/8022/6886/9968/5090/3226/55764/6666/104/2624/2736/8620/429/3670/9531/1630/5649/23500/3218/5802/79600/5310/1639/4779/2068/4763/26058/8646/5311/4747/6469/57125/5764/79659/2737
## GO:0044782 4751/983/5347/10733/54801/79734/84223/7277/27285/29887/10257/29105/54768/203068/79140/7283/1951/10383/5992/117178/9474/10801/10096/10938/55835/22919/9793/3175/10640/55722/55212/1785/9114/10807/79959/9148/6792/3797/10097/79989/55559/4957/54919/50807/55172/9702/202018/4867/3320/79583/9657/8852/49856/6674/7419/7275/27185/23354/23300/55125/55704/80776/9001/5566/23322/4851/4218/64422/2302/79598/79867/1874/1069/55761/9342/8766/9480/83658/10121/51098/85452/50487/8636/5518/1540/11020/57576/9786/9662/8655/64446/11258/23386/11190/11116/4952/2316/80210/79969/57787/10382/56683/2622/23224/25814/26146/51382/22994/22897/22920/79363/51134/123872/3911/23332/7531/5116/1453/26005/51668/55764/54874/55329/261734/27019/80173/10677/5048/79441/1778/90410/5990/55081/80217/80321/22858/10013/6738/3064/10540/22995/55036/79582/28981/55130/54777/25937/23059/989/27077/51715/55755/11127/3983/63917/4134/8195/10309/4735/80199/11064/22981/3842/25809/6103/26123/1454/23329/8814/5819/9696/2909/9321/7846/54903/5991/8481/79600/403/79874/1639/8558/4750/30845/55717/146057/54806/79738/56171/80254/9371/95681/9738/56912/55142/22873/7320/80184/84747/27241/54558/7840/1781/10142/55779/23639/9814/92482/54820/10464/5311/64792/8100/2934/64284/51626/51364/5108/9742/55742/347240/51314/22832/582/57728/80127/5577/585/23116/90355/79659/55112/65250/8382/79864/4117/22885
## GO:0006576 3620/6999/262/8564/8942/4953/15/6611/1644/6723/27284/54498/1119/6303/79814/438/10394/4946/27163/196743/501/2639/4947/1757/635/23498/4204/1725/538/883/51573/3067/51686/3176/23446/4128/7166
## GO:0008206 6770/51302/9420/5629/570/2264/8647/9971/1593/1109/10005/6822/6718/9885/1645/80025/23600/26031/114881/4864/5007/3815/6342/23411/10858/10998/30/114883/9023/11001/114876/1581/2494/3952/3295/5205/8309
## GO:0042743 1535/5052/5880/50506/1956/1536/4504/1544/2876/27035/8288/337/6647/2534/5879/4353/7001/23530/11315/6774/1497/10013/10935/847/53905/65018/4025/6622/7755/2878/1543/7173/3043/3240/4314/7837/4129
## GO:0045023 6241/2146/1111/5888/1869/8317/7027/11335/5469/3135/672/5931/7029/5928/6665/23468/1876/10138/5526/80012/23512/8409/8726/10919/4149/317/23269/6045/79813/1911/6015/7703/5932/23429/4303/1490/4194
## GO:0090630 10563/1894/1236/23603/92154/8477/5905/10125/5923/23513/10297/391/1399/208/8394/2185/7074/2041/2302/6366/2889/81565/1969/1983/1398/85360/27237/57148/4916/54828/4739/7474/26037/7248/9639/253959/4908
## GO:0006309 3148/3569/9131/3297/836/3837/400410/581/51025/3836/3146/1676/1677/2021/668/317/1776/3005/1149
## GO:0006623 3920/6845/27183/9179/64089/7879/57154/9146/51172/79158/950/8031/8546/51520/9648/4734/9765/6653/1191
## GO:0007398 2001/3854/4771/25806/3975/8324/57154/3684/3655/60401/51043/657/2054/7709/6293/57669/2114/1499/6469
## GO:0019430 2643/1719/7124/655/4504/1728/2176/337/6647/4353/7001/4780/11315/23334/4846/538/9104/948/10516
## GO:0032682 2950/1991/3965/4210/3569/140885/384/9971/3586/1969/9314/79594/5607/59307/9655/2150/55914/347/114899
## GO:0032786 79577/80237/8178/8563/11198/3150/23476/2074/6827/6829/23168/80349/9984/9646/6830/54623/2962/55837/643376
## GO:0032799 348/1175/26291/1211/10330/10802/1173/7436/5045/1213/302/161/163/3690/22937/29116/3685/5468/9370
## GO:0033622 10563/9928/5341/51237/6376/9780/6714/5734/1015/7094/2335/9270/54922/8631/10979/6403/9855/6387/1307
## GO:0034067 10139/152559/5870/64083/10133/26225/23299/55690/1453/2580/90410/79567/400/8729/83452/23363/9648/91949/6653
## GO:0034243 2146/79577/8178/9025/9400/23476/3192/6827/25920/23168/80349/9646/10771/6830/54623/2962/55837/6469/643376
## GO:0036119 890/867/92154/4141/7525/6714/57175/5962/2534/3037/8826/3036/1385/538/3373/2241/5764/5159/80310
## GO:0042744 5052/50506/4504/2876/8288/337/4353/7001/23530/10935/847/53905/4025/6622/2878/7173/3043/3240/7837
## GO:0043496 578/9618/7186/382/3309/581/3676/54552/3084/11315/64853/148022/5092/3958/3670/596/51185/3397/4208
## GO:0045109 5317/3857/10049/3267/1674/4534/3849/54800/5318/83481/54474/7431/2670/1832/4747/4744/6469/3861/4741
## GO:0045606 55506/2296/1594/2810/10626/474/5469/8202/5727/7421/9555/8643/6820/5583/4926/58495/247/6424/652
## GO:0046835 3101/2584/5208/5210/3099/10020/55577/3795/5209/9942/64768/2645/5207/2585/3098/79158/55277/26007/80201
## GO:0046856 1133/8898/3635/3636/8776/4534/9108/9110/8897/3633/8867/9107/5728/56623/51763/22876/3632/22908/66036
## GO:0051000 2643/1719/7124/2208/348/3091/4883/949/2185/6271/7014/3845/7015/3630/207/186/10392/9722/3357
## GO:0060065 1588/3975/6714/64220/7476/10765/668/55870/4089/3207/3206/25836/80000/1028/7474/7042/5950/2099/2625
## GO:0061213 7422/7490/9500/3975/6608/10409/2668/6495/26585/7040/186/7849/183/3217/55366/6662/5076/7482/2625
## GO:0071359 64135/23586/3434/5027/4869/1660/10084/3661/4790/79594/8780/5899/7098/201626/3456/10211/57506/857/81035
## GO:1900078 2101/9971/5058/6714/51094/5781/3630/51043/64710/4976/183/2771/23411/4641/5590/114882/10580/3952/3667
## GO:2000810 865/9076/7124/4867/7855/5566/6615/1969/6093/261734/9475/5583/4641/7082/100506658/6591/3551/2697/7122
## GO:0006399 7453/54913/54901/2617/10799/8565/6897/2058/16/3028/3735/3376/79074/9328/8270/60487/10248/80324/4141/54920/833/10775/10557/55278/54517/5464/11157/55157/283459/2193/10940/10556/79691/64118/2926/7965/7407/54802/4234/1787/55226/1615/9521/6741/51067/60528/79731/23536/51002/1478/2976/9255/9329/10898/9097/10978/26610/81605/115708/8518/79042/51654/27304/4677/51493/51637/11062/27068/63899/1653/83480/9330/55006/24140/55699/57604/55621/51728/57570/79979/23395/6301/10667/5188/55644/11102/51367/9692/5917/80222/55520/10352/2975/3035/55140/8846/10785/51531/54974/2972/80746/5859/64172/23438/79828/23587/57038/51520/55798/54859/81890/9836/55152/221078
## GO:0001911 10859/3575/5788/409/3965/6318/2213/3135/3134/3805/5272/3133/634/1398/5532/100507436
## GO:0006337 3159/92815/4778/6597/6599/11198/6418/6603/6602/6598/6605/83743/7141/6604/8289/6601
## GO:0006346 3070/1788/1786/22880/3065/10155/339/9869/8932/55729/55196/57379/23411/57343/54737/23272
## GO:0007252 10549/7097/7186/6376/9641/1147/140885/7099/6885/23085/207/65992/51284/7098/3551/1524
## GO:0007549 55506/9425/63978/55791/64783/29890/9555/5976/3192/23347/10209/91746/10336/5394/56339/7503
## GO:0009190 4880/113/4878/109/271/55811/112/2983/4879/2982/2977/115/107/108/4882/4881
## GO:0031293 6868/5970/55851/51107/56928/7040/7189/8720/4790/23385/5663/51360/102/5664/83464/4804
## GO:0032460 1410/8290/55737/5830/6714/1366/3630/2033/8780/5195/4985/3375/51185/6653/1191/213
## GO:0034471 54913/10799/3028/10248/10775/10557/10940/10556/6741/27340/9097/8602/11102/51367/9692/54974
## GO:0035089 6624/23616/4478/23513/5584/998/2302/9368/284217/4649/5754/387/4983/2294/6939/7474
## GO:0038083 7422/1956/7006/4914/2185/1636/6098/1859/26585/8826/25/5595/3791/3643/3480/857
## GO:0039535 330/7353/79132/63906/6397/708/89870/26057/55666/55601/329/9698/79671/23369/54941/29997
## GO:0042276 5984/5111/5982/5983/6119/5985/6117/7311/6118/6233/7316/7314/51455/5980/5981/11201
## GO:0043011 4055/5971/3662/6688/55509/3565/3516/7040/7189/1437/5663/81501/814/10538/7048/10202
## GO:0048557 6664/6943/3549/10736/3398/3142/6928/6932/5156/2294/6474/2263/25836/6469/58495/2737
## GO:0051084 30001/10576/10808/56886/10728/3337/972/9403/27348/1861/7266/2580/54788/79982/957/573
## GO:0051895 23603/6714/11170/4323/56940/395/5728/2039/9270/10395/7057/54828/94/23122/4035/347
## GO:0052652 4880/113/4878/109/271/55811/112/2983/4879/2982/2977/115/107/108/4882/4881
## GO:0055083 1244/525/356/1152/2264/10568/57468/6569/9368/8074/5741/9247/5167/6424/771/7021
## GO:0072574 1051/7128/5629/5469/4192/8837/6195/1361/55294/634/2267/55679/2735/7494/5764/3249
## GO:0072575 1051/7128/5629/5469/4192/8837/6195/1361/55294/634/2267/55679/2735/7494/5764/3249
## GO:0090026 6278/3627/7941/6352/1230/5641/5054/729230/57402/2358/199/6346/3146/10488/158747/6387
## GO:0090330 4067/239/5588/6850/5578/2266/928/634/5270/10019/114897/10630/2039/5580/5592/18
## GO:0000045 9474/60673/83460/9554/5305/79065/51100/56270/5861/55014/23256/79837/26100/64422/4534/7879/9776/57154/81876/8897/55626/6048/23130/5868/29082/5289/29978/5663/8396/90410/23673/11152/9637/9927/51715/5899/55062/9531/22930/26471/55054/23241/8408/9140/83452/65018/200576/9638/440026/8678/22863/8100/57535
## GO:0006921 7153/3148/3569/9131/3297/836/3837/400410/581/51025/3836/3146/1676/1677/2021/668/2852/317/81858/1776/22985/10595/10904/3005/11132/80279/1149
## GO:0010092 2253/22943/8928/6091/3227/7472/2668/6495/3516/10716/7849/6604/10818/3207/3670/2260/5076/2263/1499/7482/2246/10252/4208/2737/367/652/4036
## GO:0016242 57103/3162/57602/11178/9554/23256/9711/2475/4534/26073/10193/5290/207/27429/4864/29082/9637/56893/26471/23274/7249/65018/5768/9638/7157/8678/7248
## GO:0031128 6496/2253/7473/22943/6091/7855/3227/7472/28996/2668/6495/7471/7080/10818/204851/3207/650/2260/6662/1499/6299/7482/2246/10252/54361/367/652
## GO:0032801 5641/1020/83737/348/1175/8898/1211/1173/5770/51100/7436/5045/57154/1213/7040/823/302/161/163/30849/7405/55614/54894/29116/8678/4734/9737
## GO:0035115 2019/7473/257/60529/6910/23322/7476/3235/1382/55764/3207/7291/8854/6474/7020/8626/25836/8434/1499/860/140467/6469/4488/775/116039/4487/6926
## GO:0036314 7804/1234/3638/3157/57476/23209/65985/6608/5727/4040/19/7046/7040/114881/4087/2822/20/1605/6095/10654/4779/3624/2155/7048/1581/6097/54762
## GO:0042755 10874/7345/80010/1374/885/4988/51052/2475/5020/5028/6869/9518/3060/4889/6774/135/2693/4987/4986/6939/7054/51761/4985/3375/181/5021/3952
## GO:0045191 7037/4436/79915/7468/5788/9466/30009/940/958/3558/55183/7292/3586/22976/3565/23529/7040/50943/8741/54537/4292/9984/6830/7158/6778/604/10039
## GO:0048821 2539/9991/23210/5469/3071/2056/6521/6722/6194/3050/6005/29766/2038/10019/6886/669/2623/10296/4891/51341/2039/2068/5926/10365/604/221395/25893
## GO:0019369 80142/6916/1557/239/873/246/5743/1573/5321/242/1544/747/10728/5730/9536/1545/1559/5740/59344/1579/11343/1558/5742/5595/1543/8644/27306/8605/2166/247/66002/2053
## GO:0019985 51514/9636/9768/5984/5111/5982/5424/7353/5983/9100/9246/5425/7415/6119/5985/10714/6117/7311/55666/7706/6118/6233/7316/7314/25898/51455/5980/5429/22890/5981/57804/11201
## GO:0032924 60436/1761/2254/2280/1460/8928/3547/9350/23144/4221/93/4838/27302/7046/2658/4087/91/6497/92/4092/659/23592/90/3624/4088/94/10272/10370/6469/3625/10468/9863
## GO:1905037 9474/60673/83460/9554/5305/79065/51100/56270/5861/55014/23256/79837/26100/64422/4534/7879/9776/57154/81876/8897/55626/6048/23130/5868/29082/5289/23400/29978/5663/8396/90410/23673/11152/9637/9927/51715/5899/55062/9531/22930/26471/55054/23241/8408/9140/83452/65018/5287/200576/9638/440026/8678/22863/8100/57535
## GO:0031348 55872/7850/4321/56833/3559/10859/2950/9258/1991/10225/25939/8530/5788/2840/100/27293/7353/409/7128/3965/9111/215/4210/6318/79132/10875/83737/1378/613/5692/348/63906/2213/3135/6376/9021/4192/7133/1588/4277/5771/11326/3134/3593/140885/3558/5682/55737/3428/6397/885/3805/113/23513/54/708/384/5272/2896/6223/2358/134/64771/2876/3949/80149/3848/10062/1813/29883/5734/55666/2113/325/11221/3586/6647/4598/1269/7301/3565/10906/3133/335/5465/8993/58189/177/3630/60343/103/2147/22933/79004/634/7132/11277/50943/9314/5495/5740/383/114548/6895/26146/58509/4889/55870/2852/4790/5169/10475/81858/135/5598/116/79594/1398/8780/2693/4907/7105/2294/64838/79671/7376/3670/6095/5094/5580/29108/9655/4345/7130/2/2874/710/9975/5925/26007/4088/7010/3082/29/100507436/56547/5624/225/54941/11005/5176/1003/5468/55198/10203/23005/4856/11213/90355/5654/347/3479/114899/9370/2625
## GO:0032732 55765/5004/51311/8767/9447/3495/3066/3965/10626/5027/834/7305/3428/24145/55655/64127/7855/6363/566/7099/3146/177/79792/353514/3717/3098/114548/351/22900/3670/11027/10392/29108/3315/22861/4088/1958/7474/4023
## GO:0045661 3627/4283/6361/5467/7124/55796/25928/1649/1432/79647/3606/677/8740/3486/4851/2660/50937/26287/4217/7040/2319/9325/694/55662/9573/2323/9750/4656/27231/6662/23236/3611/825/3399/4208/10324/6926/652/9547
## GO:0050732 11314/10507/5788/64092/4771/79705/9021/5771/8651/6422/6690/5777/5518/199731/58533/11116/10019/7251/84619/5663/56940/2039/5515/8692/23624/79643/25998/22876/5580/79893/9655/7070/5590/10464/5753/9961/9052/4908/857
## GO:0071715 26279/8792/5320/10257/1244/4282/6850/5027/5321/1814/522/30814/1813/3553/6754/5608/5020/1636/4843/50487/81579/186/4923/1906/5319/624/8398/22925/8600/1815/1579/5025/64600/3952
## GO:1901571 26279/8792/5320/10257/1244/4282/6850/5027/5321/1814/522/30814/1813/3553/6754/5608/5020/1636/4843/50487/81579/186/4923/1906/5319/624/8398/22925/8600/1815/1579/5025/64600/3952
## GO:0008608 1062/10403/4751/81620/9212/891/11004/29127/10615/1894/81929/7756/79003/998/6795/3192/9184/22933/23172/56155/5925/57082/324/8678
## GO:0009262 6241/4521/7298/1841/25939/100/7374/6240/6996/9519/1716/4913/79077/132/23583/55270/8930/2987/1854/6470/4968/56953/79873/26289
## GO:0010644 6262/5566/1627/478/476/5318/5144/57165/10345/10052/288/6546/2702/845/3736/482/3270/6717/481/2281/477/857/775/2697
## GO:0045940 133/6770/336/3458/341/5447/7124/348/337/3553/654/335/10891/183/1081/9619/26119/5562/2488/2246/1581/6720/54361/185
## GO:0046627 2888/5588/4690/5771/8651/5579/5970/5770/3553/2660/6198/2887/197/2931/2844/55022/51763/5580/5562/23189/5791/5590/5167/3667
## GO:0050650 50515/1464/1463/10675/63827/55501/9469/79586/54480/22856/23169/29940/55454/56548/26229/55790/64131/64132/7358/54360/1462/51363/633/1634
## GO:0050718 5004/51311/8767/9447/3965/10626/5027/834/24145/55655/64127/7855/6363/7099/79792/353514/3098/114548/22900/11027/29108/22861/7474/4023
## GO:0060441 7124/1512/1522/80004/7472/3845/10413/284217/7080/1605/2294/6662/2263/9620/1499/3371/10253/9231/3202/7482/10252/6469/652/3169
## GO:0070723 7804/1234/3157/57476/23209/65985/6608/5727/4040/19/7046/7040/114881/4087/2822/20/1605/10654/4779/3624/2155/7048/1581/54762
## GO:0090162 55612/23616/4478/9267/382/56288/64083/23094/998/9368/284217/23332/64398/4649/5754/387/4983/23150/2294/55691/6939/3280/9265/7474
## GO:1900117 7159/3569/2641/9131/3297/80149/400410/581/51025/5062/1676/2021/22933/6188/80196/5740/317/7976/10395/598/7157/1149/2191/5988
## GO:1903539 55737/5602/2902/4218/3265/1740/80852/6616/1739/5906/22883/2903/23096/2693/1605/102/9912/9211/2905/5913/27065/5590/23426/2239
## GO:0051604 7850/4102/28823/79094/28424/59272/10549/713/712/3537/8767/28778/5646/1520/80155/5653/5641/30001/578/30968/3329/15/3514/8530/5230/2023/5552/3549/51647/10440/930/5992/27344/6659/142/8260/2395/745/5027/1378/8772/2653/733/80218/2160/834/10539/8492/1380/2280/728/25825/5054/10730/5567/11326/835/63929/9532/7036/735/3428/1510/719/811/5345/1512/708/26085/731/836/3500/6714/2161/1522/5126/9986/725/64065/9049/101/2243/5046/83475/5328/2266/732/5122/55851/51107/5621/60560/10939/7448/4241/871/5727/4706/4627/23203/27141/1361/55908/3553/1604/4193/5566/79829/841/2734/5245/5045/9391/1636/7252/51098/5199/81619/975/64110/722/8996/3080/9159/1370/10877/2147/2158/2033/922/1369/55367/2244/79147/27202/9508/5270/11093/3633/10098/27429/4323/23385/84779/64210/716/10988/26005/2903/11236/3972/22900/7113/2028/5289/7141/572/1081/5663/7142/10159/718/824/23761/3818/6900/6447/102/717/5664/5972/9718/715/1201/81494/8850/1725/966/10273/4325/9973/51218/50624/8473/79903/9528/1215/83464/29108/7057/9509/350/1889/23555/2/710/4826/23409/79612/55061/729/2155/1718/1387/1203/51601/831/54997/2619/7466/4179/3426/26999/2488/444/629/540/4803/56605/1511/2934/5627/727/4311/2281/6469/6653/3075/24142/79659/5125/3249/1191/2737/10418/2152/1359/5327/10699/1311/730
## GO:0032964 3066/3549/409/8710/5467/2805/3569/4880/265/5345/871/4261/51430/2147/7040/9508/383/5906/55323/9697/57333/7431/3673/2022/28984/4602/90993/2149/1490/10609/1277/5468/10536/5159/11117/1289/57332/54361/7043/7349/652
## GO:0061640 9493/55165/51203/9212/10112/24137/5347/29127/1894/9700/1058/3925/9585/23636/3619/10096/675/5119/10617/26586/10097/79400/27183/1072/79998/6683/23157/51510/55521/25978/11021/10899/9897/11258/9798/9820/9525/91782/57132/10015/29082/54784/387/288/79643/6651/6711/54902/9101/403/5921/55909/27243/23503/9094/4628/324/585/79884/388/114327
## GO:0002755 51311/3654/11314/3329/7096/3659/929/7097/10333/4615/695/7311/23643/3665/7099/6885/6233/7316/10454/7314/7189/23118/10318/51284/51135/7100/948/4214/11213
## GO:0008156 990/23560/29980/26271/51053/641/11200/6282/675/9126/4361/23244/55294/3980/7014/8243/3364/10533/3060/545/2658/7270/7013/10735/23063/5884/7157/604/64061
## GO:0035872 55765/8767/330/3654/7128/26191/83737/4792/7334/64127/5970/7311/8517/7099/6885/5608/841/6233/7316/10454/1540/329/331/7314/80196/7189/23118/10392/55914
## GO:0045776 2643/79924/5724/55328/1814/9283/134/623/1813/59342/1816/5020/5465/148/186/4923/4987/659/2981/27131/8195/1392/1268/2702/7424/585/7349/18/9370
## GO:0048009 1001/5449/2692/2688/3486/3482/9451/7471/653/207/2693/650/3488/4824/7249/55023/23236/26058/5295/2691/3485/51232/3480/2690/3487/367/3667/3479/8483
## GO:0060251 6664/6663/1869/4067/430/3418/706/7124/3569/4049/5501/5584/3553/2119/4851/2475/7015/23376/6497/116/5324/1385/5583/9921/3280/23405/29956/4602/5764
## GO:0051926 10859/10288/274/3383/6406/945/5743/1394/255057/6690/9446/8291/2056/1813/4842/29763/5987/2332/2775/784/859/2859/1193/7040/6236/28954/4923/7531/7009/10345/6781/4987/3200/63892/1815/4846/51763/6588/10681/845/2669/7779/596/5311/6717/2281/2946/477/5350/150
## GO:1990542 63933/30968/81034/518/9551/506/10165/7263/509/1374/55750/516/29074/57380/522/10476/514/79568/51025/10939/3954/26519/515/58526/51079/10632/26520/498/521/539/513/5565/1376/4976/27109/79085/5664/10367/788/31/517/51422/221154/5563/81855/80024/8604/29928/7350/32
## GO:0032368 8792/9388/336/341/51083/2058/706/6696/4282/6850/5027/345/348/1950/1588/4792/1394/5360/5444/64240/6721/208/522/10062/1071/2661/337/5727/3553/5781/6754/654/5608/26154/5020/335/5465/2170/51499/10765/19/207/186/302/114897/4923/1906/4790/9227/183/20/2587/3690/8398/5972/22925/8600/7376/10347/9619/1579/7110/6342/4824/56729/10396/1392/5580/23411/26119/7057/51761/5071/2874/1407/9611/8660/4602/3685/5025/5468/6469/3952/5244/4035/185/6863/9370
## GO:0070534 27338/63893/26191/83737/7186/9373/57162/7334/55611/64127/55658/9025/5987/27339/329/51619/85363/6047/7189/7326/11060/51283/6048/9320/10477/27246/10425/51366/10273/5071/2874/23328/54546/7320/4734/54551
## GO:0001556 9319/6790/891/994/26271/675/4880/23318/11144/51441/2069/1618/2185/5518/9985/9897/22933/79670/2309/4882/283
## GO:0009649 56938/5499/5371/3398/23239/9099/2063/5500/5501/5936/23373/8403/2767/83759/9112/5187/1407/2776/7157/8553/1408
## GO:0031664 4064/7128/4282/6376/10221/5578/23643/1604/654/4795/7001/85363/9450/58509/7189/22900/11027/59307/23328/4057/948
## GO:0034110 6352/4067/239/5588/6850/5578/2266/5962/928/3956/634/5270/10019/114897/10630/2039/288/8600/5580/5592/18
## GO:0045948 6352/8872/4690/7124/6199/54915/51441/1618/6256/5611/2475/10657/6198/23645/1654/253943/8893/22927/54505/56339/55364
## GO:0095500 116372/1132/1133/6001/2769/1137/1141/58530/8851/1399/156/4988/1131/2782/2767/1136/375790/2771/23236/2776/1129
## GO:1900101 578/4690/8440/10987/5771/10018/3309/2081/581/5770/22926/1388/23645/4189/55161/51283/11153/5295/7466/7494/10551
## GO:1900120 4318/7262/8751/10856/3586/55118/23641/5792/51176/567/23228/302/3200/3077/4824/4015/627/64388/5334/8829/9370
## GO:1901623 6278/3627/10563/6352/6347/11240/6351/6354/6375/729230/6868/8740/2185/9943/6366/65125/102/27347/7474/80024/9547
## GO:1903831 116372/1132/1133/6001/2769/1137/1141/58530/8851/1399/156/4988/1131/2782/2767/1136/375790/2771/23236/2776/1129
## GO:1904385 990/1535/83990/3297/88/760/6714/55532/5970/4142/815/4780/186/4790/6093/183/9475/10768/5580/857/185
## GO:1905809 8326/10288/22943/7097/348/5747/4761/5621/2534/54413/2904/5728/22899/26052/22871/7337/4776/7474/1942/5764/2045
## GO:0003333 8140/6536/6535/55117/6541/11254/117247/55144/6510/9056/10165/23657/79751/10991/6520/23204/55238/6507/5997/9057/6539/57084/6534/6519/54896/56301/6533/6512/6511/3766/5999/54716/57030/4923/10630/183/5663/11136/6545/6506/11230/9152/81539/6509/8501/80131/10550/27347/8604/8864/477/6542/23428/6505
## GO:0033692 10331/5499/9334/7360/2932/79369/5236/10678/2992/8445/208/2997/5500/2131/2132/2475/2645/9348/23178/3630/3037/207/5260/2931/5509/2103/3036/5741/55454/8908/2998/51763/55790/2632/178/5261/8660/3643/3340/10580/8864/5167/3667/3479/5507
## GO:2000351 6347/959/3383/7128/7124/3135/3596/356/958/5054/26291/2243/2266/5584/5335/11126/3676/51129/3565/7015/10298/284/2244/4780/2852/5598/889/79155/2624/25/5170/7857/2309/7057/7010/28984/57124/3791/8644/80781/79625/9037/2621/10266/2625
## GO:0044275 313/57103/5499/5223/4759/5834/5255/57733/11181/2820/5236/2710/5500/2538/3630/5260/2931/5509/5257/950/55347/6652/2548/5256/178/5261/2712/5836/5837/55556/8972
## GO:0045746 79094/4100/1956/655/1950/4792/9148/51441/55343/81544/84934/55294/4854/3955/207/55662/11060/4323/51341/2624/8788/9139/65989/56339/408/23493/51162/604/23462/56892/1746
## GO:0009164 9582/7378/200315/4860/1807/51733/100/191/3251/1890/60489/27350/200316/51071/339/10930/978/51816/4907/57379/56953/1806/9583/22875/79873/81602
## GO:1902475 8140/6541/6510/9056/10165/23657/79751/10991/6520/23204/55238/6507/5997/9057/57084/54896/56301/6512/6511/3766/5999/57030/4923/183/5663/11136/6506/11230/9152/81539/8501/10550/8604/8864/477/6542/23428/6505
## GO:0002679 56833/3055/3929/2896/6223/5294/11221/5293/4353/7001/3630/79415
## GO:0002829 9466/30009/729230/384/3142/383/301/3440/3456/9655/6778/604
## GO:0002921 1378/2213/11326/725/1604/2302/5777/722/966/2/710/11005
## GO:0003337 6772/10736/6608/2668/26585/7849/3976/5076/1499/4435/6299/652
## GO:0006000 5208/5210/3795/5209/231/229/226/230/5207/6652/26007/216
## GO:0006703 3294/6770/50700/1588/51144/3292/51171/79154/3283/51478/51170/7923
## GO:0006743 23590/27235/57017/51805/29914/3156/56997/57107/51004/79934/10229/51117
## GO:0009313 4759/57733/11181/4125/2760/10825/1486/4126/3074/4758/4123/23324
## GO:0010642 65009/5795/5771/5739/9678/9368/9146/5782/6622/4035/347/9370
## GO:0010763 5058/9530/5063/207/7040/5581/8874/2039/6546/7057/4921/9590
## GO:0016114 2224/5947/6121/10170/64577/53630/1382/8854/220/9453/1543/8644
## GO:0021535 5457/1496/30837/5362/54910/2316/1600/3688/23543/473/8929/146057
## GO:0021692 9928/6712/64211/23287/3975/8861/23017/8925/6095/538/25861/79934
## GO:0021819 9289/8941/1020/7101/30837/8851/79143/5048/5649/1499/89927/2737
## GO:0021984 5449/2253/2692/6531/1813/6657/5626/650/5308/3280/2691/54361
## GO:0030299 29881/336/8435/5406/1056/64240/3949/335/1645/948/3952/51474
## GO:0032096 885/80763/5465/29937/2693/8620/8195/4925/3952/585/7349/9607
## GO:0032099 885/80763/5465/29937/2693/8620/8195/4925/3952/585/7349/9607
## GO:0032239 9972/134/11052/1660/22916/7175/10657/26993/55781/8737/6830/29072
## GO:0032754 64109/3556/3578/5144/114548/23765/55540/9173/5914/5590/90865/2625
## GO:0035020 117178/50861/5923/1785/382/6993/3845/199731/1398/8473/26053/4763
## GO:0042538 6870/9076/551/231/2547/3954/5020/59341/7520/79085/10367/80303
## GO:0042635 10855/51083/7480/7124/8456/7015/8717/7474/7042/4926/4488/10468
## GO:0043116 133/5795/284/634/135/23576/2909/5139/9353/5138/9590/10266
## GO:0043252 28231/9356/28234/353189/11309/6579/10599/28232/53919/10227/6567/6578
## GO:0043568 1001/2692/2688/3486/7471/2693/3488/55023/2691/3487/367/3479
## GO:0043970 1111/672/55124/55011/6598/4089/8850/4297/56848/26036/4674/2625
## GO:0044130 1991/3394/3929/7124/4049/3593/8878/3586/4353/4153/948/1511
## GO:0045086 942/5788/916/940/5588/3552/3662/920/941/3553/11146/6777
## GO:0045342 3066/6556/6688/3586/566/7099/3565/4261/5196/4799/23411/7494
## GO:0046500 262/58478/4143/51074/4552/4524/4144/10400/27430/79066/27232/23743
## GO:0050966 8989/7852/4914/23349/6323/2534/784/3673/3356/23621/3736/6387
## GO:0051085 30001/10808/10728/3337/972/27348/1861/7266/2580/54788/79982/573
## GO:0051386 8936/10479/5526/55816/23191/186/183/4916/10253/26999/10252/4908
## GO:0051917 2160/5054/5345/2161/5340/1361/2147/3818/7057/350/7056/2191
## GO:0060123 8997/2692/3814/55636/1813/5781/51714/27230/116/2693/6453/2691
## GO:0061029 6664/3066/1956/6654/64220/6722/3065/3725/7291/7020/3624/116039
## GO:0061430 10507/7480/6422/2201/26585/22904/7059/1277/4488/4313/5364/1101
## GO:0061478 114/1080/5967/2230/2770/109/60/1946/112/107/108/196
## GO:0071285 999/113/811/3398/1050/3981/7518/4656/4776/1027/6469/2167
## GO:0071415 5031/779/55151/6262/7226/6261/5028/10891/6263/6546/845/2946
## GO:0071850 90480/79648/1026/1647/1877/4824/7157/28984/1027/1843/2191/9863
## GO:0072182 8842/6772/100133941/3975/10413/7849/25937/3976/5076/1499/79633/2625
## GO:0090239 9474/672/6688/10269/55011/6598/11143/1487/23411/26053/408/4582
## GO:1900025 2633/23603/4241/1946/81/2039/9270/55435/4070/23189/2192/10631
## GO:1900272 348/7305/134/2043/11170/5621/55607/177/351/25/5764/1524
## GO:1903025 51042/9421/1649/55294/64324/10269/2033/65992/7114/201501/6872/3976
## GO:1903651 80128/4478/8898/7260/4133/5962/23011/7430/55823/5071/1601/6653
## GO:2001044 5587/2316/683/967/65979/2039/7076/9270/1495/55679/2013/57126
## GO:0001956 8564/10059/1020/6865/6804/2852/135/22930/1268/783/22871/23025/6622/10497/6812/8938/6857/776
## GO:0006085 5163/1737/5160/5165/25874/5161/8050/55066/1738/47/54704/51660/38/23417/5162/5164/2954/5166
## GO:0006907 1794/1785/9261/10062/55604/30844/197/7867/81/7376/27131/5538/29108/26060/558/51479/55198/857
## GO:0006925 6352/1029/1234/1514/3569/23657/356/64127/3579/5291/5293/3665/3707/10269/3661/2693/23411/4208
## GO:0021854 6715/8828/30062/10371/581/2113/190/9001/27023/5626/7314/27089/5454/6658/22930/1392/8648/8829
## GO:0023058 133/6247/3351/409/1785/1814/156/1813/54550/51109/29978/1759/2696/154/408/187/2868/3357
## GO:0031290 5459/7422/2048/2047/2049/4897/1946/6152/5458/10505/3670/5800/5797/9353/8829/2045/658/214
## GO:0036120 890/867/92154/4141/7525/6714/57175/5962/2534/3037/8826/3036/1385/538/3373/5764/5159/80310
## GO:0036507 56886/55741/51009/267/11253/6048/11236/10299/10905/10956/55757/9695/6400/10206/7844/57134/80267/4121
## GO:0036508 56886/55741/51009/267/11253/6048/11236/10299/10905/10956/55757/9695/6400/10206/7844/57134/80267/4121
## GO:0042749 10874/3737/3062/100/2692/1814/1141/134/1813/5730/4544/1437/135/1392/22871/4887/8863/2691
## GO:0046058 5142/113/27115/109/5151/5143/55811/1969/5144/5741/112/10846/115/5141/107/108/8622/5744
## GO:0051043 3458/7124/348/7133/4898/101/29763/3586/3553/5045/8754/9860/6093/5774/2822/7076/7078/150
## GO:0051156 3101/5226/7086/57103/2539/5223/6888/22934/3099/51071/2645/25796/3098/23729/4779/9563/80201/64080
## GO:0051900 2537/8326/2730/239/706/215/142/2805/5027/885/10962/6714/55012/2729/3791/596/4653/1634
## GO:0060008 1515/6943/3383/1761/4914/190/2316/6382/51742/5872/9667/6662/546/5926/5914/22862/3295/1471
## GO:0060575 639/7298/57103/56913/5697/3091/688/2626/1026/2627/1045/286451/4852/9139/60485/579/3202/25803
## GO:0061339 6624/23616/4478/23513/5584/998/2302/9368/284217/4649/5754/387/4983/2294/8729/6939/4131/7474
## GO:0070920 5604/4613/1956/5605/80149/7015/10269/7040/6895/1655/79727/9612/8737/9611/5530/7157/2099/652
## GO:0071498 7980/445/5743/760/6714/6721/9788/2185/3037/9314/4780/8841/5598/5607/9655/10365/5311/4208
## GO:0072337 6535/81034/6573/23657/2352/2348/6519/9368/54407/11136/1497/2350/6509/6584/6583/10560/5174/4036
## GO:0099563 5216/1496/6780/8936/5217/2043/7074/5978/25978/23191/10810/79012/10458/387/25/6453/4628/11346
## GO:1901798 5366/9521/26038/9349/3090/6201/7314/149628/1655/545/22925/27063/6135/472/200734/80279/10614/4487
## GO:1902884 7124/10333/27035/6647/7099/55294/5978/4170/2021/11315/6421/5074/10013/8737/2309/9104/4314/8309
## GO:1903010 10859/5447/7305/202018/51208/55294/10498/26585/537/4853/5741/8600/4015/9104/4057/2737/2200/284266
## GO:1904886 5499/2932/23401/1857/7855/7479/7471/4040/8312/1855/1452/1856/8321/1499/2535/10023/324/857
## GO:0002418 5551/3329/8751/56253/5817/3593/3592/10666/11126/3146/3273/634/5819/100507436/81545
## GO:0002643 3620/3559/10288/916/83737/5133/3135/23239/3146/2302/50943/1178/64844/7048/11213
## GO:0003184 6091/64220/4091/4851/4772/26508/4853/4846/2702/23493/182/23462/7042/9353/652
## GO:0006266 7153/5888/3148/3978/2547/3980/3146/54840/3981/7518/4255/7515/24144/5423/10039
## GO:0006978 2305/11200/672/675/1026/7023/28996/10524/149628/6672/51147/27330/7157/51065/4582
## GO:0007213 1132/1133/6001/2769/8851/156/4988/1131/2782/2767/375790/2771/23236/2776/1129
## GO:0010744 5320/3606/4481/1435/1437/5196/4790/183/5583/5601/338/948/4023/247/185
## GO:0021783 401/1959/8828/10371/55558/6495/6899/3211/104/6405/3280/7020/89797/3212/8829
## GO:0030502 1230/5552/3091/2185/26585/197/2623/8074/5741/1893/54880/6662/6779/54795/5167
## GO:0032740 8877/3600/4063/5588/3569/3593/3558/64127/4615/5008/3606/6346/7040/59067/51561
## GO:0034199 114/5567/113/5575/5568/109/5566/5576/112/5573/115/107/108/5577/7349
## GO:0035729 2730/5641/5469/5970/3586/7429/846/22933/81792/1385/2729/26060/3082/8829/55198
## GO:0035855 5469/10006/6722/80739/5305/5781/5777/2033/10019/2313/6886/7066/10163/3815/4211
## GO:0035988 3549/10736/8091/51548/4323/6781/659/4325/4921/4057/1490/2261/4856/658/1311
## GO:0042268 10859/3853/3929/5027/57115/57824/8993/3080/7040/10670/1437/5196/2822/81494/5076
## GO:0042753 56938/2692/9967/4544/7080/135/6095/23291/1392/406/22871/8945/4887/2691/6097
## GO:0044110 820/1991/3394/3929/7124/4049/3593/8878/3586/8993/4353/5007/4153/948/1511
## GO:0044116 820/1991/3394/3929/7124/4049/3593/8878/3586/8993/4353/5007/4153/948/1511
## GO:0048532 9928/3737/1959/3309/8828/10371/55558/1600/3211/657/5076/6405/7020/3212/8829
## GO:0048711 712/274/3398/4099/4851/27339/177/23529/5270/351/650/3976/3280/54209/3572
## GO:0051818 820/1991/3853/2597/10018/6372/566/2147/383/5196/572/11334/2150/4153/1511
## GO:0051969 7143/1890/551/1143/2257/552/2332/2859/4544/3060/2741/183/2693/3673/9607
## GO:0060850 5080/1051/5629/26038/2128/4825/51043/10660/2116/6095/64321/7026/5468/6097/1746
## GO:0070233 3620/6352/3575/100/939/5588/8772/3091/384/3718/5896/1942/1831/652/5304
## GO:0090185 4318/6772/7490/655/6928/7849/5076/4070/1499/4435/201163/6469/9370/652/2625
## GO:1901524 57103/10133/57154/10193/27429/10013/9927/23274/54832/7249/65018/5071/11140/7157/55187
## GO:1903209 10333/27035/6647/7099/55294/5978/4170/2021/11315/6421/5074/10013/8737/2309/4314
## GO:1904355 4751/9212/5588/5594/8550/79035/3184/5609/51750/80351/11284/140609/8658/5595/4216
## GO:0006513 51514/63893/867/9978/1642/8454/79577/9148/55120/55658/84861/7706/51322/59349/4591/10075/7323/7324/329/7314/553115/55284/6737/7251/84759/57599/8450/10277/10210/6045/9646/5896/54880/23295/6015/7703/54623/10336/5071/1643/6500/23429/7320/8452/9810/4734/10016/23327/25827
## GO:2000242 7272/10549/8372/55840/100/1761/5047/7783/7490/655/79084/4880/5567/5810/811/5017/4342/4838/6615/11251/23213/7076/3976/397/5573/4824/2516/6794/268/4882/1027/7474/5016/1843/27306/5176/23414/54361/3479/652
## GO:0001953 4321/1029/23603/4771/8751/5054/6714/11170/8573/4323/56940/395/5728/55966/2039/9448/9270/10395/7057/54828/5921/3204/4763/5295/94/604/182/23122/4653/4035/10631/347/9723
## GO:0002715 3902/10859/10225/259197/4068/8807/409/3965/6318/56253/5817/10125/3135/164/9437/3134/3593/3592/3805/5272/10666/11126/7409/3133/3916/634/59067/1398/23705/5819/6777/100507436/3952
## GO:0018023 200424/3006/3008/6839/3007/9757/11137/79723/63925/23476/55011/6598/4000/23168/54904/79609/80349/51742/4204/9646/84193/10782/8473/4297/23081/23411/29072/546/57343/5926/51111/55693/196483
## GO:0032309 26279/8792/5320/10257/4282/6850/5027/5321/1814/522/30814/1813/3553/6754/5608/5020/1636/4843/50487/81579/186/4923/1906/5319/624/8398/22925/8600/1815/1579/5025/64600/3952
## GO:0035307 11314/10288/5788/945/78986/3326/134/5725/2475/23141/5528/51231/23645/3717/7040/54866/26051/186/5524/26012/5525/5510/5300/4659/8189/10395/65018/5580/3672/6609/5159/9863/23261
## GO:0090382 56833/11151/50617/4647/533/5027/9296/525/9114/528/23545/51606/529/523/526/7879/23208/527/55647/10981/155066/51382/9550/10312/8992/535/534/23682/10497/55686/8406/11031/80208
## GO:0099622 23630/3757/3753/4878/3741/6331/3762/9948/781/10269/1739/476/859/2316/3759/7531/6324/6640/30819/3764/287/3781/9722/9992/3760/3784/2702/10142/3752/481/2697/776/23704
## GO:0051304 991/1062/10403/23397/9787/10460/4085/81620/7272/9212/9319/891/990/5347/701/9700/1063/26271/5885/54908/7517/25906/29781/56159/201254/8379/1459/84861/7756/4342/55795/56984/7156/9400/7175/996/5518/51451/51143/55755/4292/55781/8697/472/56155/3550/5925/8452/1843/324/4926
## GO:0010458 11065/27338/9735/11331/9183/51547/6683/55844/9587/9150/7040/22933/23332/91782/6152/2059/8697/4762/27243/28984/1027/1028/23122
## GO:0070229 9212/3620/6352/3575/100/939/5588/4282/8772/3091/3558/384/26155/972/3718/8915/5896/8660/604/1942/1831/652/5304
## GO:0090344 2305/26271/4282/5933/5591/8091/10135/55532/54708/7014/7015/7471/51343/80317/1021/5728/10000/25/7291/4215/23411/604/10769
## GO:0090383 56833/50617/533/9296/525/9114/528/23545/51606/529/523/526/7879/527/55647/155066/51382/9550/10312/8992/535/534/23682
## GO:0090662 50617/10257/533/518/9296/525/9114/516/528/23545/51606/529/523/526/527/155066/537/486/10312/5023/8992/517/535
## GO:0065002 5194/613/29927/55750/5830/3309/208/51025/11231/26519/23471/55670/51079/26520/6729/5828/5192/9409/5189/9697/5195/7095/5190/5191/29928/9847/5193/6253
## GO:0070423 55765/8767/330/3654/7128/26191/83737/4792/7334/64127/5970/7311/8517/7099/6885/5608/841/6233/7316/10454/1540/329/331/7314/7189/23118/10392/55914
## GO:0070884 9454/7124/2932/375346/8445/58529/5725/5621/10523/9472/1827/2475/11261/3084/89/493/63928/5598/10519/51778/2274/2065/10725/9455/6548/29995/23261/3479
## GO:0106056 9454/7124/2932/375346/8445/58529/5725/5621/10523/9472/1827/2475/11261/3084/89/493/63928/5598/10519/51778/2274/2065/10725/9455/6548/29995/23261/3479
## GO:0009435 23475/5214/3101/26330/4860/8564/2821/8942/7167/2597/5230/2023/5223/5315/5743/3099/3607/55328/9390/2027/5211/10135/5313/229/83440/226/230/2645/5213/23057/2026/5740/3098/669/23498/54956/54981/27231/55739/5224/4837/55191
## GO:0035282 5100/2296/8557/22943/7490/1959/10683/6862/5591/10959/6422/3975/10006/8828/10371/5046/7855/10409/4617/1044/22823/2303/5362/23242/27023/3955/3516/2033/1045/657/56983/54475/23509/9968/79728/5075/4089/9573/5663/10818/4618/2294/9839/2648/7403/8854/9935/4824/7516/57669/6911/472/4762/6939/6405/1856/3199/7157/4088/4920/7474/4222/4300/8829/10512/4223/6926/652
## GO:1901570 55711/6319/6576/80142/2171/6916/239/873/9200/79071/4282/6850/246/2180/5743/551/2182/92086/64834/5321/51144/23305/201562/65985/10394/23205/241/10728/2194/972/552/3553/5730/9536/47/81616/622/5740/2639/1906/4048/5319/2687/9524/51703/4258/5538/240/79611/31/38/5322/23411/5742/3248/79966/2181/8644/27306/10464/3155/6785/7923/1907/60481/56898/84869/4056/54898/3158
## GO:0030834 6712/5341/29767/7111/119/23616/88/822/6710/1072/5962/9948/11344/7429/55604/29766/10677/2039/6708/11078/2059/6711/11034/51332/2150/118/23075/6709/2934/57731/9037/85477/51474/50853/25802
## GO:0045581 3902/1493/864/30009/3659/3549/865/23240/4192/5771/54542/8651/3558/80149/7292/972/3718/3146/2302/7001/3142/51043/50943/301/2064/3566/4092/149041/3440/3456/9655/604/6469/2737/652
## GO:0050922 10563/56833/6347/11240/2950/2841/26228/1991/7473/1652/4282/1588/5771/6091/57175/199/4851/55558/3273/26585/1845/27202/285/6259/5800/7057/7474/1843/9353/8829/727/4681/9037/4856/79148
## GO:1901068 8833/4830/55034/3251/5901/9414/55669/4354/1716/272/8573/2773/3614/9567/27304/1740/2987/4833/79631/1739/9054/23433/10201/10243/4338/4976/387/51715/29922/51292/79873/3615/4337/4832/8382
## GO:1903018 1236/5806/3600/6646/4504/25825/1839/26574/10005/6363/325/5861/3718/6366/81876/11261/2801/10565/2623/23385/5074/10267/29954/10347/6934/2218/23236/9528/63941/10585/1499/9445/596/1471/3479
## GO:0007405 259266/5080/29127/6663/8326/6496/9048/7422/23028/3091/6376/1813/6608/747/27185/58158/6660/63925/23654/9181/7040/7005/6604/5048/10818/7976/2258/429/8650/2260/1495/2263/2009/4763/7424/1499/7157/3736/54820/3400/6469/5764/2737/1524
## GO:0030433 80020/79139/10952/7415/55741/10134/7184/3309/54431/55432/55666/51009/7706/9097/7917/26232/23197/23190/51465/4189/10613/23392/4780/267/7327/11253/6048/9709/29978/7993/10869/10956/57003/6449/10273/79089/9695/6400/11160/10206/7844/7466/80267/857
## GO:0009451 54901/16/3028/60487/80324/54433/54920/23210/54517/60489/83448/55505/200316/114049/8731/79691/64118/55651/54802/4234/1787/55226/6741/96764/64783/51002/339/10930/29960/29890/26610/81605/63935/115708/8518/55178/51654/27304/51106/11062/63899/27292/83480/23070/79872/55006/51504/24140/79922/57604/55621/57570/79979/9589/115939/103/55644/29974/27037/9692/104/5073/55140/8846/10785/29063/56257/51531/54974/117246/130916/64172/79066/79828/23091/23587/56339/51093/55798/54859/81890/55623/9836/221078/79068/54502
## GO:0003407 8842/6496/6247/5146/24147/3549/86/2780/30813/6094/835/6597/3975/6121/793/58158/28996/6096/1826/7068/4760/57030/493/5663/22882/6604/54549/204851/5458/10210/23554/6662/84440/7020/51761/7070/54806/10265/490/2823/5797/7042/1735/5764/1746/7021
## GO:0010559 1236/3600/6646/4504/25825/1839/26574/10005/6363/3718/6366/11261/2801/10565/2623/23385/5074/10267/29954/10347/6934/2218/23236/9528/63941/10585/1499/9445/596/3479
## GO:0032620 3458/8877/9466/3600/4063/5588/3569/3071/3593/3558/3592/384/9971/64127/4615/5008/3606/5621/7292/6346/7099/7040/51043/50943/59067/23180/51561/26525/11334/3140
## GO:0032941 362/1535/3783/100/9474/242/1056/4883/134/10062/1314/1131/6343/6869/8673/65125/5581/4986/4762/57835/27347/6779/5029/54843/358/2697/6863/7349/79864/10551
## GO:0035329 6664/7004/4771/6789/79817/9414/836/6788/154796/55233/7529/9113/10413/7005/8994/7531/261734/4140/25937/60485/1856/7082/7003/51421/23286/55841/9231/8642/9867/79633
## GO:0044088 55353/2896/9554/5305/51100/23256/79837/4534/81876/8897/11277/302/6048/5868/29082/29978/8396/90410/950/9637/5899/22930/26471/8408/65018/200576/9638/8678/8100/57535
## GO:0045022 5604/84079/4478/5605/5594/8898/22853/6714/5962/64089/11267/8724/8411/7879/51361/29062/23011/5868/64400/5289/7430/23317/55823/55614/5595/1601/2013/9482/29911/8678
## GO:2001222 9289/9585/6376/9373/4192/1496/2796/23654/4825/9860/9181/815/2316/23060/3084/23380/816/8403/26012/6774/54986/54328/57698/5649/83482/9693/25836/1281/63923/2066
## GO:0002762 4609/10859/4830/4067/10221/5771/3623/11006/6422/3635/51208/325/7099/55294/3565/8451/171392/6988/634/1021/10766/2624/7098/9935/3624/3204/10401/4763/1499/4057/5295/5914/10272/2200/9607/9370/10234
## GO:0000188 1852/54900/1849/63904/11072/2873/11221/5518/1845/5999/5998/51562/5515/1850/200734/2874/1843/1848/857/1846
## GO:0002861 1236/2207/2840/940/7124/4049/5692/2213/3593/5682/695/2876/3586/3133/975/11315/4889/116/718/1268
## GO:0010971 983/51514/891/26271/8317/1019/7480/5889/8766/23476/80174/9525/351/6604/4204/5890/8929/5087/595/3306
## GO:0044346 4609/578/637/9262/10018/6422/9263/5294/56981/8539/51124/5290/694/57680/10428/7516/8626/7157/8452/2621
## GO:0045954 3902/259197/4068/8807/56253/5817/10125/164/3134/3593/3592/10666/11126/7409/3133/3916/59067/23705/5819/6777
## GO:0060571 3091/1956/655/25928/3239/1072/7472/4838/653/23213/2736/2263/8626/1499/7474/7482/6469/58495/367/652
## GO:0071450 2643/1719/51022/7124/655/4504/1728/2176/337/6647/4353/7001/4780/11315/23334/4846/538/9104/948/10516
## GO:0071451 2643/1719/51022/7124/655/4504/1728/2176/337/6647/4353/7001/4780/11315/23334/4846/538/9104/948/10516
## GO:1902914 6502/9111/26191/9373/7321/55611/64127/8291/26272/329/331/54765/9320/64844/51366/5071/2874/23328/2295/9810
## GO:1903649 80128/5604/4478/5605/5594/8898/8934/6714/7260/4133/5962/8724/23011/7430/23317/55823/5071/5595/1601/6653
## GO:2000178 5080/7101/3398/10653/51286/2889/7040/22933/6692/2624/1495/3611/55679/6532/4763/7157/7474/55198/7832/5764
## GO:2001026 10563/5641/7422/4851/3273/5587/4233/7114/8823/2249/25865/2260/7057/3315/3791/5025/2246/2247/9037/8817
## GO:0032768 1001/2643/1719/3458/1594/5447/7124/2208/348/3091/1956/1785/2672/4883/949/3320/10434/2185/8976/3553/7421/1269/6271/7014/2668/3845/7015/3630/859/207/11315/186/51070/4790/493/92/4846/10392/6697/9722/23576/1268/6622/23564/2717/3952/857/3357
## GO:0000266 9650/664/10059/55737/54471/80179/1723/54708/1352/10891/91137/64423/4976/79594/6773/65018/54332/56947/51024/5071/23259/3791/65084/1634/4137
## GO:0006369 6634/7884/6636/6637/11051/6628/8458/1477/4686/6635/81608/1479/1478/10898/10978/22916/25888/10914/4150/79869/23064/23283/8189/8106/51585
## GO:0010765 1482/483/2257/1785/2745/4842/3799/6331/1756/11261/5318/207/81/6324/288/1815/10768/6548/54997/482/481/1272/23171/55800/5348
## GO:0015695